HN user

Salgat

3,152 karma

www.salgat.net salgat.blogspot.net

Posts0
Comments1,198
View on HN
No posts found.

Thankfully as of now it appears they're very explicit about what content they share that is sponsored. They might be worried about the legislative backlash if they don't.

Yeah it's a real catch-22. I think you're right though, LLM tech will keep up just enough to replace that lost workforce, till some day development as we know it will no longer exist, perhaps when the code becomes too abstract and complex for normal humans to ever hope to maintain without automation, similar to what happened to most assembly developers when the compiler came along.

The difference is that you already learned how to write code. New devs that go straight to genai are missing that.

LLMs are perfectly capable of translating between programming languages at this point. The main bottleneck for them is logic, not language.

GPT-5.6 13 days ago

Kind of refreshing though that the "throw more processing at it" scaling we saw in the 90s has returned in a different way. For a while we were really bottlenecked in our advances by relatively low levels of parallelism (most software used by your average user doesn't scale cleanly with more than a few threads).

Lots of small moving parts that build up into a large architected platform, which requires careful design, otherwise you get a big ole ball of "it mostly works when we first created it but don't touch it". And yes, bad developers are susceptible to creating the same thing. That's the whole issue with vibe coding, it creates something that works, but is brittle, because there are no strict architecture requirements around the entire design besides vague suggestions like "follow best practices", and as it makes mistakes, it just patches whatever it can to make it work, instead of fixing the root problem with the design.

This is a misleading statement. The "private data" is still largely publicly produced data that has been curated through private agreements instead of scraping, such as reddit posts/comments (this is the "third-party data agreements" that companies like OpenAI mention). And yes, there is still a lot of processing done on this data, which is the norm for preparing training data.

The whole point of async/await (besides allowing synchronous style code instead of callbacks) is that it lets you yield the thread efficiently back to the executor (OS threads have a massive overhead in comparison). And if you're doing something that blocks the thread instead of yielding it, you can choose between either spawn_blocking or a thread pool.

To this day I do not get why Intel doesn't just offer massive memory options for their cards. Just charge what it costs to add the extra memory, no upcharge, and they will never be able to keep up with demand. Cheap VRAM is enough to justify a lot of open source investment into challenging CUDA.

That was the main reason for the big hype around Memristors 15 years ago. High density, high speed persistent memory to completely remove the need for hdd/ssds, potentially even removing the need for external memory altogether. So frustrating that it still seems like we're a long ways from that becoming reality. There's some renewed interest in Memristors as they can simulate neural network connections in models, so maybe the funding will return for it.

Religion relies on assumptions that cannot be proven physically, secularism just avoids those assumptions (I say this as a Christian who finds secular biblical scholarship fascinating and helpful).

You learn to know who are the lazy ones, and at that point you can politely always respond with a, "what were you able to find on this?". You can repeat this ad infinitum since at that point, they're just being lazy and disrespectful of your time. They eventually give up going to you because they know they won't get you to do their work for them.

My stomach churns when I see an e-mail obviously written by AI. It just comes off so disingenuous and disrespectful, as if they couldn't be bothered to respond to me themselves but instead had a machine do it. Even worse, it's usually very verbose, wasting my time further to have to read through all the slop.

It's funny, when we were acquired they started moving us to Github actions but it seems that maybe we should stay on our old crusty self-hosted Jenkins setup...