Spyke

Replies

Comment on

Steam Machine launches today!

Reply in thread

If I knew then....I would have splurged for a 128GB system :(

lol - you're not alone: I've been waiting 4 years to replace my, now, 12 year old PC.

At first I was waiting for the whole crypto craze to loosen the demand on GPUs. Now, due to the AI hype, additionally memory is out of my price range.

But, hey, my aging PC isn't qualified to run Windows 11 (the mobo doesn't have TPM 2) - so, at least I have that going for me.

Comment on

Anthropic disables top-tier AI models after US order limiting foreign access

Dean Ball, a former White House official who contributed to the AI Action Plan the administration issued in the summer of 2025, said in a post on X that the order suggests all "non-Americans" would be restricted from using ⁠Anthropic's latest ​models, including those based in the U.S.

"This means you should expect to have to prove your citizenship to use Anthropic ​models," Ball said.

There is the real reason, folks.

Yet another effort to force mandatory ID checking to access a website.

Comment on

GitHub auth

Reply in thread

Take a look at ssh-agent. It's bundled with ssh-client and designed to solve this problem.

The quick usage is, create a terminal and run:

eval `ssh-agent`
ssh-add /path/to/your/encrypted/key1
#type in password
ssh-add /path/to/your/encrypted/key2
... 

# all commands in this terminal will use the keys above w/o asking you for a password 
git clone [email protected]...
git push... 
etc

So, basically you type your credentials once during the life cycle of your terminal.

If you really want to go full power-user, simple run ssh-agent (without the eval) and you'll see it just sets some env-vars, which can be imported into any terminal/shell you have open.

So, if you put some logic in your shells rc file, you can effectively share a single ash-agent between all your shells, meaning you just need to type your password for your keys once when you log into your system... and your now passwordless for any future terminals you create (this is my setup).

Also, if you're interested take a peek at the man pages for ash-agent. It has a few interesting features (ie: adding a password lock for your agent, removing keys from the agent, etc).

Comment on

Judge Allows BitTorrent Seeding Claims Against Meta, Despite Lawyers 'Lame Excuses'

While the BitTorrent angle is not new, the authors previously only included a ‘distribution’ claim based on direct copyright infringement. This claim has a higher evidence standard, as it typically requires evidence that the infringer shares a whole work with a third party.

Since BitTorrent transfers break up files into smaller chunks before they are shared, it might be difficult to prove that a whole work is shared.

If the case sides with Meta, I can see future defenses pouring in "Ya, see your honor - I'm innocent cause I only seeded 99.99% of that movie."

Comment on

Teams’ invasive Wi‑Fi tracking sparks backlash as users say Microsoft crossed a line — “There must be a team at Microsoft tasked with making Teams worse”

Having Teams remind you that, during session recordings, your video and what you say can be used by Microsoft for whatever purpose they want, including (but not limited to) training AI.

This wasn't the line that was crossed? Seeing/hearing your likeness in the next generated AI / copilot commercial, because you needed to consent in order to work. This is "fine" /s

... but having Microsoft know that you're answering Teams messages while on the toilet... yeah, that's where "the line gets crossed" (eyeroll)

We need to wake-up and drop this technological cancer.

edit: a word

Comment on

US state laws push age checks into the operating system

Reply in thread

I 100% agree. Then there will be different (mandatory) verification services. Some will be paid, but the free ones (ran by Microslop and Google) that will sell all your personal data to their 500+ closest affiliates.

Ultimately, the end game will be certain websites (like your Bank) won't trust your identity because your using some FOSS verification service and as "they take security seriously" will require you to use MS or Google.

Comment on

C++ takes decades to master

Reply in thread

C++ is useful for learning object oriented programming: Describing what really happens in constructors and destructors, the pros/cons of reference counting and how it actually works (using std::unique_ptr)

These are things that most modern languages try to hide/abstract away, but the underlying problems and limitations never go away, but with C++ you'll have a better understanding of why they happen.

However, if you go down the rabbit hole of Template Metaprogramming, I agree with the original post: it takes decades to learn and really only useful exploitable in C++.

Comment on

The world is trying to log off U.S. tech

Reply in thread

But everything was rolling, pretty goddamn great until...

I beg to disagree there. Each year Big Tech has become more and more aggressive in taking control from us, the consumer. Microsoft with the requirements of TPM in order to install windows 11. Google with they're delaying open source releases of android, preventing apps from being installed unless it's non-cfw. All tech companies shoveling AI everywhere. John Deere with their vendor lock-in hardware.

This needed to stop and these companies need to be reminded that "the consumer owns the hardware and that includes functional software (that does not change without the users consent)".

Unfortunately, the U.S. Government failed it's people in defending consumer rights and tbh, the EU hasn't really done a stellar job either. However, this is certainly the" kick in pants" the EU needs (hopefully) to start to create competition against U. S. Big Tech... and the EU certainly understands that it needs to protect these small EU start-ups as they try to find their footing.

So, I hope this results in the EU creating laws to "level the playing field". Which, I hope, actually spurs innovate and Open Standards (something Big Tech has been working hard on suppressing), which will be good for all of us (regardless, if you're in the EU, U.S., and beyond).

You'll notice there is a lot of "hope" in these sentences. I am skeptical, but I can see how this could be "a good thing".

news

Comment on

TSA worker says his family is paying the price for him working without pay

Reply in thread

They're just people doing a job that I regret is necessary...

I think this is the difference, many people believe that the TSA are not necessary nor effective.

9/11 (which was the fuel to create the TSA) happened because at that time the expected response when you (as the passenger) plane was hijacked, was to stay calm and sit and wait for the plane to land, while random demands/negotiations were made with local governments. Yes, a few people might be killed as an "example" or threat, but if you wanted patiently your government would save you.

9/11 shattered that illusion/"rules of engagement". Now, all of the sudden, if your plane is hijacked you'll find yourself as an unwilling participant in someone's suicide run and your only way to survive will be to fight as though your life depends on it (because it does).

I this respect, the complacency of 9/11 will never happen again regardless if the TSA exists or not.