HackerTrans
TopNewTrendsCommentsPastAskShowJobs

freeplay

no profile record

comments

freeplay
·23 วันที่ผ่านมา·discuss
Elysium is playing out right before our eyes
freeplay
·29 วันที่ผ่านมา·discuss
1. Social media accounts with lots of engagement and high follower counts are worth big money these days. However, it takes a ton of effort to build that up organically. It's not difficult to see possible motives for something like this.

2. Leveraging their private APIs will get you banned even quicker than OPs method.
freeplay
·3 เดือนที่ผ่านมา·discuss
Some spaces just can't be "disrupted."
freeplay
·3 เดือนที่ผ่านมา·discuss
This was my first thought when I saw "travelers going between countries."

You're going to have a problem getting carriers to sign up because they are assuming all of the risk. Unfortunately, "oh you don't understand - I got paid $27 by CarrierPigeon™ to bring this unmarked, brick shaped package into the country" just isn't going to fly with customs/feds.
freeplay
·4 เดือนที่ผ่านมา·discuss
Genuinely curious what the [morally] good use cases for Sora would be.
freeplay
·4 เดือนที่ผ่านมา·discuss
From a technical standpoint, this is pretty cool. From a human standpoint, this feels so unbelievably dystopian.
freeplay
·4 เดือนที่ผ่านมา·discuss
Thanks! Just grabbed one.
freeplay
·4 เดือนที่ผ่านมา·discuss
By time I got signed in, I missed the early adopter spots. Any chance you could open up a couple more?
freeplay
·4 เดือนที่ผ่านมา·discuss
I think the evil part is putting it in the hands of the general public. The ability to create propaganda and deep fakes gives everyone a powerful tool for manipulation. The rich and powerful are going to do whatever the want, anyway. Everyone having access to that same tool doesn't make it any less dangerous.

There's nothing inherently evil about a knife. Standing outside of a high school and handing a knife to every kid walking in is pretty evil though.
freeplay
·4 เดือนที่ผ่านมา·discuss
You can set that globally but override at the individual entry.
freeplay
·4 เดือนที่ผ่านมา·discuss
It's been able to run on A series chips for a while. I don't think that's what's preventing MacOS on iPad. It's that the OS is not optimized for touch in any way. Too many small things to click. It's just not the kind of half-baked experience Apple would put their name behind. Likely the same reason why you haven't seen a touchscreen on a Mac.
freeplay
·5 เดือนที่ผ่านมา·discuss
The commercial was essentially announcing their partnership with Flock
freeplay
·5 เดือนที่ผ่านมา·discuss
Don't forget about the facial recognition any time you go through a toll booth
freeplay
·5 เดือนที่ผ่านมา·discuss
Mass unemployment would/will be the catalyst to mass uprising. All of the fuel is in place (ICE, Epstein, rising costs of everything, unaffordable housing, general lack of hope and faith in the government, etc.) High unemployment numbers will be the spark that sets it all ablaze.
freeplay
·5 เดือนที่ผ่านมา·discuss
If you could write drivers in javascript, it probably would have done just fine /s
freeplay
·6 เดือนที่ผ่านมา·discuss
I'm a senior engineer and have no degree. I never get offended by people making comments like this. If we're both in similar roles, making quality contributions, and are progressing in our careers, the only difference between us is, I didn't spending 50k-100k on a degree.

Sounds more like a knock on the person making the comment than it is on me.
freeplay
·6 เดือนที่ผ่านมา·discuss
Seems like everything is a hot button topic these days. Even things like movies get connected to a hot button in one way or another.
freeplay
·6 เดือนที่ผ่านมา·discuss
Couldn't agree more. Squash merges to main ONLY.

That way, I don't care if your branch contains 100 commits or 1 commit. I don't need to worry about commit messages like:

- fix 1

- fix 2

- dfljfdlkfdj

- does it work now?

Do whatever you want with your commits on your feature branch. Just make sure the title of your PR is clean and follows our formatting. Git history is always well formatted and linear.

It's the ideal solution.
freeplay
·6 เดือนที่ผ่านมา·discuss
Captcha is only effective at annoying legitimate users. If there is any incentive to do so, bots have no problem bypassing/solving them.
freeplay
·6 เดือนที่ผ่านมา·discuss
Memorizing CLI commands and typing/editing them over and over can be very time consuming.

Use k9s for example. Let's say you want to determine where the value of an environment variable is coming from.

1. 'kubectl get deploy -n example' (find the name of the deployment in question)

2. 'kubectl describe deploy example-app -n example' (determine where the value for the env var is coming from)

3. 'kubectl get cm example-app-config -n example -o yaml' (check the value of the referenced key in the config map)

This is a very basic example but you can see where it lead to slow debugging that is made even slower by its propensity to typos and the need to look up command syntax. Once you get comfy in a well designed TUI, you can fly through this process in 10 seconds.