HackerTrans
トップ新着トレンドコメント過去質問紹介求人

nanidin

no profile record

コメント

nanidin
·2 年前·議論
At the moment this is #1 on the frontpage.
nanidin
·3 年前·議論
In my state municipalities are required to spend 25% of their budget on police. So effectively 20% of the tax base of the municipality is being used to police Walmart. Walmart isn’t the only business in town, there are lots of businesses, convenience stores, restaurants, you name it - they share what’s left after Walmart, and it doesn’t seem fair.
nanidin
·3 年前·議論
There is a Walmart in my metro area that is responsible for like 80% of all police calls within their municipality. This is the same Walmart that leeches off society in other ways like paying sub-living wages so that employees need to rely on social safety nets to survive. I'm not sure if they have to hire private security, but this is a prime example of a business that should be securing itself or changing location.
nanidin
·4 年前·議論
I wonder how algorithms like Stable Diffusion will impact CSAM detection policies.
nanidin
·4 年前·議論
You’re joking but smart TV screens already do this to identify and report content back to the mothership.
nanidin
·5 年前·議論
I don’t use gmail, but I have also been getting some obvious spam through my filters as well - usually nothing makes it to my actual inbox, but lately there have been 5-6 per day.

I use a Bayesian filter trained on old spam (I haven’t retrained it in years) combined with Spamhaus blocklists. My guess is that spammers found a clever way to fool the Bayesian filter, or they found new hosts to send email from in order to bypass blacklists.
nanidin
·5 年前·議論
I’ve been suffering the same thing over the last few months. A helpful technique for me has been to swap out my smart watch for a dumb watch, and to put my phone in a drawer unless I intend to use it.

I also heavily limited the types of things Facebook will send push notifications for. It used to be that if I got a notification, it was because one of my friends actually interacted with me in some way. Now I get a bunch of junk notifications that I feel are designed to pull me into the app and not really inform me of anything, to get me back to scrolling a feed. Like I’ll get a notification that someone I don’t know made a post in a group I’ve been in for years without ever getting a similar notification in the previous years. So I basically turned off everything that doesn't involve my actual friends doing something relevant to me.
nanidin
·5 年前·議論
You might be surprised by what is possible when you set goals and live below your means. You might also be surprised by how little money it costs to take off a year mid-career.

When I finished university, I had a few weeks between graduation and my start date at a well known Midwestern embedded electronics company. I had a $7k signing bonus and I found a $500 round trip ticket to Rome, so I went to Rome. While I was there, I learned about the world of backpacking and hostels. I ended up spending 6 weeks in Europe before returning home. During that time I decided that travel was something I wanted to pursue in my life.

The salary at my entry level SWE job was $58k, which was pretty modest. I didn’t buy a new car. I didn’t buy a new house. I cooked most meals at home and I brought lunch to work. I tracked my expenses and budget using Mint, and set a goal to save $30k so I could leave and travel in SE Asia where I calculated the daily burn rate should be around $30/day. After three years I hit my savings goal and bought a one way ticket to Hawaii, then from Hawaii to Thailand. I ended up spending over a year outside of the country and returned home with a $10k cushion to get back on my feet.

The biggest leg up I had was graduating with $2000 in student loan debt, but that was made possible mostly through merit based scholarships. No trust fund.

I inspired a friend to do the same thing, except with a destination of Australia on a working holiday visa. Also no trust fund, just living below his means and saving over time.

My advice to you is to find a way to do the things you want to do instead of limiting yourself with beliefs that only the ultra-rich can take time off from work to pursue personal passions.
nanidin
·5 年前·議論
Why wait until one is old to have fun? Why assume one will even live to enjoy retirement? Can one even pick up windsurfing at a typical retirement age?

I took off 3 years in my 20’s. 34 now, and back on track to retire in my early 40’s. Saving for retirement and enjoying life today are not mutually exclusive.
nanidin
·5 年前·議論
I also came to chime in with this. I have been running a "personal git server" this way for almost a decade.

On the server:

    cd ~
    mkdir directoryname.git
    cd directoryname.git
    git init --bare
On the client(s):

    git clone username@server:directoryname.git
That's all there is to it!