Forgot your password?
typodupeerror

Comment Exactly (Score 1) 47

What I'm hearing is "But, I'm a highly-compensated professional! Not like all the plebes we spy on constantly to compensate me."

I do agree that they should stand up for themselves, and they have my support, once I'm done supporting causes I consider more important, like toe lint eradication.

Facebook headhunters used to bug me constantly. I put up an autoresponder telling them what I thought of their business model, leadership and general behavior, and that I would wash dishes for a living before working for a degrading, anti-human shithole like FB. Eventually they got the message.

I ended up in a fairly heated argument with some FB employees several years back when I mentioned that. It was obvious they felt stung by someone rejecting the choices they made and kept leaning in to, "but I make more money than you". Which was I was happy to concede, it was true. Suggesting that my self-esteem costs more than theirs didn't seem to be what they wanted to hear..

I wonder if those folks are still there, protesting about their workplace privacy.

Comment Re:And are permanent? (Score 1) 88

Do you really mean that if your git repo were corrupted, restoring a snapshot of the repo from backups wouldn't work? If that's true, then it sounds like your backup system is broken. The hashes after restoring ought to be identical to what they were before the backup.

If git used the files' iNode numbers for its hashes, then I could understand how a filesystem-based backup/restore might not really work; you'd have to backup at the block level instead. But git doesn't use the iNode numbers.

git isn't magical. It only knows files. It doesn't know if you moved the repo, copied the the repo, or restored the repo from a ten year old backup. I have moved git repos around plenty of times, `cp -a`ed directories with repos, tared and un-tared directories that contain repos, and the copies have always Just Worked without any hash mismatches.

mkdir ~/test. cd ~/test. git init, touch test.txt, git add test.txt and git commit. cp -a ~/test ~/test2. cd ~/test2 and check out the backup repo. The backup is valid. Then simulate a disaster with rm -rf ~/test. Then recover from the disaster with cp -a ~/test2 ~/test and you've just restored a repo from filesystem-level backup. The resulting repo works perfectly and its hashes aren't off. git has no idea you deleted and restored under its nose. Try it yourself.

What am I missing? I'm not surprised to be called idiotic, and the shoe often fits. But I'm surprised to be called that over this.

Comment I don't ask FCC to "allow" me anything (Score 3) 74

My router's hardware's parts were made in China. Its software was made as a worldwide effort but the team seems to be officially based in the Netherlands. And I'm not asking my government's permission for updating either one. Trumptards and their micromanaging far-left centralized-economic-planners can go fuck themselves. Keep your damn dirty ape hands off my computers, comrade.

Comment Re:So? (Score 2) 46

When CUDA started taking off we had ATI hardware, to support their open source pledge, and looked into ROCm.

Just getting the drivers to build on EL-anything was an extreme effort, and it wasn't my first rodeo.

Without betraying confidences, I was told second-hand that there were only ten people on the GPU driver team across all platforms and that they were doing their best and not sleeping enough as it was, with Compute way behind gaming bugs on the priority list.

I couldn't independently verify of course but the theory fit the data.

I immediately empathized with the suffering of the devs and went out and bought nVidia cards, annoying binary drivers and all.

Since then I've felt like that some bean counter at AMD wrote nVidia a trillion dollar check.

If you're not a tiny company *overstaff* your engineering departments so you don't miss new opportunities as they arise. The opportunity costs exceed the opex costs.

Comment Re:Somebody is trying to get investors (Score 1) 29

The headline may as well be "Rose maintains transactional relationships with tech media after all these years".

At this point I think if a good idea walked up and smacked him on the head, the name alone might doom it. It has been an also-ran in a confusing number of categories, so depending on your age you may remember it as a very different kind of failure than I do. Sort of the converse of trademark dilution - it is clear what the name is and who owns it, what's muddy is what the service is supposed to be.

Comment Re:alternatively (Score 1) 91

Same here but this lack of support will matter much less than dropping i486.

There are still embedded systems sold today that only meet i486 specs. I don't use them but some industries do.

Sure a $12 ESP32 can handle those tasks but it's a revalidation thing.

Not that anybody from those vendors stepped forward to maintain a tree.

Comment Re:On Star Phone Home (Score 1) 41

In my younger and more foolish days I had a Pontiac and I opted out with wire cutters to the Surveillance module's power cables.

At the time I was actually more concerned with remote unlock hijacking than tracking but still I didn't trust GM.

All together now: WE TOLD YOU SO.

If I had to guess 20 years later doing that would disable the ECU.

Slashdot Top Deals

"Ask not what A Group of Employees can do for you. But ask what can All Employees do for A Group of Employees." -- Mike Dennison

Working...