HN user

jgilias

4,179 karma
Posts35
Comments845
View on HN
www.reuters.com 1mo ago

Zuckerberg says Meta made 'mistakes' in AI workforce shift

jgilias
2pts0
www.reuters.com 1mo ago

US Military personnel are being targeted using location data

jgilias
14pts4
www.cia.gov 1y ago

Simple Sabotage Field Manual (1944) [pdf]

jgilias
1pts0
variety.com 1y ago

First time a Blender-made production has won the Golden Globe

jgilias
296pts49
github.com 2y ago

Gitstr: Send and receive Git patches over Nostr

jgilias
90pts59
venturebeat.com 2y ago

AI poisoning tool Nightshade received 250k downloads in the first 5 days

jgilias
4pts7
www.nature.com 2y ago

Present and future Köppen-Geiger climate classification maps (2018)

jgilias
1pts0
www.thedailybeast.com 2y ago

Stop telling me trust find kids are financial wizards

jgilias
29pts3
gren-lang.org 3y ago

Gren – an Elm fork

jgilias
197pts122
lichess.org 4y ago

Lichess end of year update 2021

jgilias
1pts0
www.bbc.com 4y ago

How pop star Zara Larsson made a seven-figure sum on Roblox

jgilias
3pts2
secret.club 4y ago

Windows 11: TPMs and digital sovereignty

jgilias
33pts2
news.ycombinator.com 4y ago

Ask HN: Real-world Tailscale business use case

jgilias
11pts6
news.ycombinator.com 4y ago

Ask HN: How do you use zero-trust mesh networks in a business setting?

jgilias
3pts0
www.theguardian.com 4y ago

Smoke alarms go off on ISS

jgilias
1pts0
theecologist.org 5y ago

Without its rainforest, the Amazon will turn to desert (2015)

jgilias
57pts30
www.france24.com 5y ago

Russian law: Champagne made in France must be called 'sparkling wine' in Russia

jgilias
16pts1
www.bbc.com 5y ago

China allows couples to have three children

jgilias
217pts322
datagubbe.se 5y ago

Is software abstraction killing civilization?

jgilias
3pts1
www.netgate.com 5y ago

Netgate's Take on the WireGuard Debacle

jgilias
4pts1
www.economist.com 5y ago

Face masks may boost the immune system

jgilias
4pts0
www.ncbi.nlm.nih.gov 5y ago

Modern Grand Solar Minimum will lead to terrestrial cooling

jgilias
69pts44
dotnet.microsoft.com 5y ago

Blazor: C# WebAssembly front end framework

jgilias
1pts0
foreignpolicy.com 5y ago

Story of Sweden's botched coronavirus response

jgilias
10pts0
www.wsj.com 5y ago

Trump's YouTube Account Suspended

jgilias
15pts30
pubmed.ncbi.nlm.nih.gov 5y ago

The role of endogenous retroviruses on longevity and aging [2010]

jgilias
1pts0
www.bbc.com 5y ago

Swedish King Carl XVI Gustaf says coronavirus approach 'has failed'

jgilias
44pts78
github.com 5y ago

Emacs Helm Is Back

jgilias
2pts0
en.wikipedia.org 5y ago

The Living Systems Theory

jgilias
1pts0
t.me 5y ago

A revolution is unfolding in Belarus at the moment. (Needs Telegram app)

jgilias
4pts1

I get what you’re saying and agree with the last sentence. Just wanted to touch on the “why” part.

In the world of exclusively human written software the existence of the artefact itself (code, documentation) served as the proof that there’s someone with half a brain behind it. Now that’s not the case anymore.

The conclusion stays though - it’s OSS, authors/maintainers have no obligation to anyone to do anything. Like it, use it, don’t like it, don’t use it.

As for me, I’ve found that the community and activity proxies are still good.

Even if you get the right molecule, it might be the wrong way around or just clump up into a useless mess.

Sounds a lot like vibe coding lol

Cool. But.

Most of the “impressive” stuff is not “the model” but “the harness”. Spinning up the subagents and teams of lower models, letting them explore, do adversarial coding. It’s all in the harness. Granted, Mythos might be better at that orchestration, but it’s still the harness.

Second is the prompting. The author is an expert in what they’re doing and prompts the system in a way that yields useful results. I see too many people believing that if an expert can achieve those results in a domain they’re familiar with, then them as non-experts will be able to as well. And that’s a fallacy that Mythos doesn’t change.

One could argue that scalability matters more when software is expensive to make, as you need to reuse it to make the cost worthwhile.

So, for context, two data points I have that make me want to argue for the opposite side.

First, some time ago I worked for a startup that had a B2B offering that in most cases involved integration costs to align with whatever the client was already using. We tried to eat this as much as possible, but we still had to have some “integration price” we asked. More than once we had a potential client who just couldn’t lift it. They needed the software but just didn’t have the cash buffer for the initial cost (us neither). With how things are now, we’d have onboarded all of them. And much faster than it normally took. And yes, they still would have bought our solution instead of rolling their own (see the next point).

The next point that kind of ties into the previous one if you squint. I’m in a position now where I see non-technical people building stuff with AI. _Most_ can’t. As an example, the AI says they need a database. But they don’t really know what that is, and deploying one sounds scary, so they ask the AI if they can build it without a database. And the AI happily complies and makes a “CRUD” API that “persists” data in RAM. And the AI is not being dumb here. The best, most perfect model is still an LLM at the end of the day, so it completes the context window. Sure, you could make a mod that “sticks to its guns” more, but that comes across as the model being “non-compliant” and “difficult”. Now, I’ve also seen non-technical people who have succeeded. But then they have the kind of a mindset that they could’ve been engineers in the first place in different circumstances. But also, even they build fragile monstrosities that they don’t understand.

So, going back to the first point. Our clients were deeply nontechnical for the most part. Most of them wouldn’t even have attempted to build their own. But also, getting the system up and working involved more than just code - relationships with suppliers, some legal stuff, etc.

So, I can totally see how the amount of software produced might grow exponentially leading to “pre-AI” engineers being worth their weight in gold due to that. That doesn’t exclude a painful transition though.

Sometimes writing a lengthy answer is absolutely necessary to convey stuff correctly and precisely. But if a human is writing it, every sentence has a meaning, and it might just be worth reading. Because a human is unlikely to waste their time drafting it unless they think it’s actually necessary.

But it does. A whole class of runtime errors you can trivially produce in safe Go — null pointer dereferences, unchecked type assertions, missed enum cases — are unrepresentable in safe Rust. Also, the type system is a lot more expressive, so more invariants can be encoded in it, leading to more business logic bugs being caught at compile time rather than in production.