Friend/foe individual writers on Hacker News
They're effectively at war and are freaking out about capital flight which poses a unique existential risk to them especially.I imagine most countries in that situation would clamp down on freedom of speech and prohibit sharing photos of missile strikes. This would include most of the ones that pay lip service to freedom of speech in peace time.Ukraine does this too.view on HN →
Strange. It’s your retarded paedophile in chief who simultaneously is begging Europe for help whilst insisting he doesn’t need Europe at all.view on HN →
I worked on deep sub-micron, full custom mixed-signal integrated circuits for more than a decade, and I can't pass the first level.> Wire an NMOS transistor so that when In is 1, the output is pulled to ground (0). When In is 0, the output should be unconnected (Z).Certainly:(a) The nMOS has 3 connections: its drain is only connected to the output (no +Vdd supply), it's source is tied to ground, it's gate is tied to the signal input(b) When the gate (input) is driven high, the nMOS transistor tuview on HN →
I ran these in LM Studio and got unrecognizable pelicans out of the 2B and 4B models and an outstanding pelican out of the 26b-a4b model - I think the best I've seen from a model that runs on my laptop.https://simonwillison.net/2026/Apr/2/gemma-4/The gemma-4-31b model is completely broken for me - it just spits out "---\n" no matter what prompt I feed it. I got a pelican out of it via the AI Studio API hosted model instead.view on HN →
My guess is Sam Altman is a better VC than CEO. Better at hype, networking, fund raising, and back room political hijinks than shipping a focused productHe seems to be trying to take almost a "venture studio" approach by throwing shit at the wall, but the problem with these things is always that the "internal startups" are "founded" by people who don't have enough incentive or control over their product to perform as well as an actual startup, and are distracted by internal politics. And franklyview on HN →
Sora was losing 15M a day and it was running at least 3 months, so that's a total 1.3 Billion. That's a pretty expensive experiment. It sounds like a company with lots of VC to burn and no discipline. Even Jensen Huang accused them of lack of discipline in business approach.view on HN →
People are much more willing to give the benefit of the doubt on things like that when the flagbearers of your industry aren't running around sucking all of the oxygen out of the system and telling people things are "solved": that your product will obsolete them in the next 6-12 months.We get it. They say that stuff to raise money, make sales and keep the party going. But don't expect too much sympathy when the strategy falters a bit.view on HN →
> The cost to serve tokens is absolutely profitableCan you explain why you know better than the analyst at Cursor cited in this article?view on HN →
You’ve said this above and have been corrected that Apple cannot single handedly veto proposals.Given the rest of your argument hinges on a misunderstanding of the process I’m not sure it holds much merit.view on HN →
Isn't this pretty much the standard across projects that make heavy use of AI code generation?Using AI to generate all your code only really makes sense if you prioritize shipping features as fast as possible over the quality, stability and efficiency of the code, because that's the only case in which the actual act of writing code is the bottleneck.view on HN →
Basically this is true for most startups in the world BUT Cursor, so here you are kinda inverting the logic of the matter. Cursor is at a size that, if they wanted to use K2.5, they could clearly state that it was K2.5 or get a license to avoid saying it.view on HN →
Developer discovers context switching taxview on HN →
I read this book last year and this application is spot on. There is a point in the narrative when the company automates a step in their manufacturing using an expensive machine and it has the effect developed here: the next step in the process is backed up further.The points specific to software where it might not even be producing in-spec is also very good.Comments that cite the solo dev/prototype case are of course not what this is getting at, but it's one good use of quick generation.I wouldview on HN →
I was not saying that humans are always right. I was assuming that humans probabilistically would make fewer obvious mistakes, which of course could be wrong and hence my questions. Speaking of QA, we would require AI to generate test cases, right? If so, do we rely on human review to ensure the quality of the test cases?view on HN →
It's close enough. If we had a build pipeline that kept prompts in source control, and ran it through an LLM and then a compiler to produce the build output, this would fall over constantly. You'd get radically different results every time. Build pipelines that store actual source code in source control, then run them through a compiler to produce the build output, are used all over the place and they generally work great.view on HN →
In the 12+ years I've been a professional developer, I can only remember two bugs that were caused by the compiler / interpreter, everything else were logic bugs, oversights, 3rd-party libraries, misunderstanding of the requirements, internal contradictions in the requirements etc.So that's maybe 0.1% of all the bugs I've touched.In that sense, code generation isn't really an interesting source of bugs for the discussion at hand.view on HN →
AI is really good when:1. you want something that's literally been done tons of times before, and it can literally just find it inside its compressed dataset2. you want something and as long as it roughly is what you wanted, it's fineIt turns out, this is not the majority of software people are paying engineers to write.And it turns out that actually writing the code is only part of what you're paying for - much smaller than most people think.You are not paying your surgeon only to cut things.Yoview on HN →
It's so much faster too! How many meters of flesh have you cut this month, and how are you working toward increasing that number?view on HN →
Actually the surgeon analogy is really good. Saying AI will replace programming is like saying an electric saw will replace surgeons because the hospital director can use it to cut into flesh.view on HN →
The blog isn't even necessarily anti-AI yet the majority of responses here are defending it like the author kicked their dog.The sentiment that developers shouldn't be writing code anymore means I cannot take you seriously. I see these tools fail on a daily basis and it is sad that everyone is willing to concede their agency.view on HN →
> I once watched a team spend six weeks building a feature based on a Slack message from a sales rep who paraphrased what a prospect maybe said on a call. Six weeks. The prospect didn't even end up buying. The feature got used by eleven people, and nine of them were internal QA. That's not a delivery problem. That's an "oh fuck, what are we even doing" problem.I have very much upset a CEO before by bursting his bubble with the fact that how fast you work is so much less important than what you aview on HN →
"Our newest model reduces your Mean Time To 'Oh, Fuck!' (MTTF) by 70%!"view on HN →
> Companies genuinely don't want good code.I might be more charitable. I'd say something like "Companies genuinely want good code but weigh the benefits of good code (future flexibility, lower maintenance costs) against the costs (delayed deployment, fewer features)."Each company gets to make the tradeoffs they feel are appropriate. It's on technical people to explain why and risks, just like lawyers do for their area of expertise.view on HN →
This user has posted the parent post nearly verbatim twice. And the exact same responses about determinism several times.view on HN →
Is this a copypasted response? I've seen the exact same bs in other AI threads on this site.view on HN →
I really hate the trying to make LLM coding sound like it's just moving up the stack and is no different from a compiler. A compiler is deterministic and has a set of rules that can be understood. I can look at the output and see patterns and know exactly what the compiler is doing and why it does and where it does it. And it will be deterministic in doing it.view on HN →
None of the comparisons make any sense. In short, these concepts are essential to understand:- determinism vs non-determinism- conceptual integrity vs "it works somewhat, don't touch it"view on HN →
This. The comparison between compilers and LLMs is so utterly incorrect, and yet I've heard it multiple times already in the span of a few weeks. The people suggesting this are probably unaware of the fact that Turing complete languages follow mathematical properties not just vibes. You can trust the output of your compiler because it was thoroughly tested to ensure it acts as a Turing machine that converts one Turing complete language (C, C++, whatever) into another Turing complete language (ASview on HN →
>Source code in a higher-level language is not really different anymoreSource code is a formal language, in a way that natural language isn't.view on HN →
> review the ASM that GCC generates (we don't)Of course we do not. Because there is no need. The process of compiling higher order language to assembly is deterministic and well-tested. There is no need to continue reviewing something that always yields the same result.> We care that it works, and is correct for what it is supposed to do.Exactly. Which is something we do not have with an output of an LLM. Because it can misunderstand or hallucinate.Therefore, we always have to review it.That isview on HN →
Sometimes being involved in the construction process allows you to discover all the (many, overlapping) ways it's the "wrong thing" sooner.In the long term, some of the most expensive wrong-things are the ones where the prototype gets a "looks good to me" from users, and it turns out what they were asking for was not what they needed or what could work, for reasons that aren't visually apparent.In other words, it's important to have many people look at it from many perspectives, and optimizing fview on HN →
> Why not? Why can't faster typing help us understand the problem faster? Can it help? Of course! But I think the question is too vague here and you're (presumably) unintentionally creating a false dichotomy. I'll clarify with the next responses > Why can't we figure out the right thing faster by building the wrong thing faster? The main problem is that solution spaces are very large. There are two general ways to narrow the solution space: directly and indirectly. Directly by things like thiview on HN →
"Why can't faster typing help us understand the problem faster?"Because typing is not the same as understanding.view on HN →
Because you're working on the implementation before you understand the problem?view on HN →
I'm reminded of the original Agile joke, "software you don't want in 30days or less." today it's "software you don't want in 5days or less."view on HN →
> Why not? Why can't faster typing help us understand the problem faster?Sometimes you need to think slow to understand something. Offloading your thinking to a black box of numbers and accepting what it emits is not thinking slow (i.e. ponder) and processing the problem at hand.On the contrary, it's entering tunnel vision and brute forcing. i.e. shotgun coding.view on HN →
>Why not? Why can't faster typing help us understand the problem faster?do you have a example (even a toy one) where typing faster would help you understand a problem faster?view on HN →
Fast prototyping helps when the prototype forces contact with the problem, like users saying "nope" or the spec collapsing under a demo. If the loop is only you typing, debugging, and polishing, you're mostly making a bigger mess in the repo and convincing yourself that the mess taught you something.Code is one way to ask a question, not proof that you asked a good one. Sometimes the best move is an annoying hour with the PM, the customer, or whoever wrote the ticket.view on HN →
Admitting the bigger problem, why should we believe any specific report that BBC puts out there? The have been shown multiple times to be heavily biased (to put it mildly) and posting fake or unconfirmed reports, data.view on HN →
An eyewitness account from the article:(The eyewitness) told us the family car had just turned left into his street, facing uphill, and had come to a complete halt before any shots were fired, contradicting the Israeli army account. I asked if he had heard any warnings given by the Israeli forces, or any warning shots fired. "No, nothing," he said. "The firing directly targeted the car. I just heard the woman in the car screaming. The little kids were crying before they were killed."view on HN →
> about an incident involving New Zealanders and MaorisReally?Aotearoan here. Our racist history is shameful. Many massacres, both sides but mostly one way traffic.Our history of "othering" indigenous people here in law was shameful too.But seriously, and with all due respect, fuck you!!We are facing up to our racist past, present and (Dog help us) future.Tikanga Māori is joining our legal system.Being openly racist to Māori is politically suicidal (some right wing politicians are giving it aview on HN →
This isn't a war, though. This is an extermination. This is an army with effectively limitless power against unarmed civilians.view on HN →
Which war? This happened in the West Bank!view on HN →
It's not collateral damage in the gaza war. This was a family in the west bank, where there is no hamas and no "war", that was gunned down in cold blood for no reason. Not even presenting a threat. I hope one day you are able to find compassion.view on HN →
> US Politics seems to get more of a pass,This goes beyond US politics. The US and Israel do not exist in a bubble. This conflict can and will have big repercussions which will impact our technical and entrepreneurial institutions.view on HN →
I see people saying this story doesn't belong on HN. genuine question, if this story were about a german national would it be considered as political? is palestinian existence inherently more political than other peoples' existence?view on HN →
The people being oppressed and exterminated belong to the same group.It's not even wrong to conflate atrocities in both regions as part of the same genocidaire campaign.view on HN →
I live in DE too, it's terrifying. I didn't realize the extent of the armaments shipped to Israel from Germany until recently.The Israeli navy ships were built in German shipyards and subsidized 30%...view on HN →
I am German. My government does not acknowledge the tragedy that has been unfolding in Gaza since the Hamas attack in October 2023. It’s absurd. Since then, Jewish people in Berlin who were demonstrating alongside Palestinians against the war in Gaza have been beaten down by the German police. In 2021, Esther Bejarano, the last survivor of the Auschwitz Girls’ Orchestra, passed away in Hamburg. Whenever she commented on the culture of remembrance, the media was eager to report on it. Wheneview on HN →
> this is war 101, every day.Except this situation has been going on like this for 60 years - with Israel, or the other western states having absolutely no plans to change anything about it (except making it even worse).view on HN →
> this is war 101The west bank isn't at war with Israel. There wasn't some conflict or event that has justified these actions.I wish people understood this better. Even if you could manage to justify what's happening in gaza as "this is war", Gaza and the west bank are separate entities with separate governments. The west bank, in particular, is more like an Indian reservation in the US, with the Israeli government effectively exercising supremacy over all aspects of the government.Theoreticaview on HN →
A certain amount of politics should/must be tolerated on HN, because you cannot compartmentalize technology, politics and morality.No-one, not even people who say they like technology but do not care about politics, should be able to live their life wihtout knowing that we live in a world where six-year old blind children are murdered with automatic assault rifles.(For the same reason that no-one should be able to live not knowing that jewish once were murdered in the millions in gas chambers.)view on HN →
For those wondering, it is verifiable story, it is covered as fact in Israeli newspapers:https://www.timesofisrael.com/israeli-forces-kill-west-bank-...https://www.ynetnews.com/article/p7mq5k5bsThe main justification floated is that the car was "going fast" and thus made the undercover Israeli soldiers feel unsafe.The New York Times describes it as such:"Ali Bani Odeh’s wife and four young boys hadn’t seen him in a month and a half when he came home to Tammun, in the West Bank, from his construcview on HN →
I wonder what the second order effects of this on the HN karma system will be. It'll create a graph of karmic supernodes perhaps. Say I green-blob someone with a big reputation here, say jacquesm; no doubt lots of other people will do the same. The friends-of-friends icon is going to appear widely but it'll all be a single edge away from Jacques' node. Is that much of a signal? I dunno. That's 30 seconds of thought about it. It's a fun idea though so I'll try it.Version two: hide foes? Come to tview on HN →
This entire piece sounds AI written (or at minimum, heavily AI edited) with its "punchy" writing style LLMs love, negative parallelisms galore (see blockquotes 2, 3, 5), invented concept labels ("your calendar is a load-bearing wall" ???), attempts at humor sprinkled in. What a joke of a post.view on HN →
These “LLM programming ain’t nothing special” posts are becoming embarrassing for the authors who - due to their anti AI dogmatism - have no idea how truly incredibly fast and powerful it’s become.Please stop making fools of yourselves and go use Claude for a month before writing that “AI coding ain’t nothing special” post.Ignorance of what Claude can actually do means your arguments have no standing at all.“I hate it so much I’ll never use it, but I sure am expert enough on it to tell you whatview on HN →
> The process of compiling higher order language to assembly is deterministic and well-tested.Here are the reported miscompilation bugs in GCC so far in 2026. The ones labeled "wrong-code".https://gcc.gnu.org/bugzilla/buglist.cgi?chfield=%5BBug%20cr...I count 121 of them.I've posted this 3 times now. Code-generation by compilers written by experts is not deterministic in the way that you think it is.view on HN →
Pretty much, the article assumes people didn't build the wrong thing before AI. Except that did happen all the time and it just happened slower, took longer to realize that it was the wrong thing and then building the right thing took longer.It's funny, because you could actually take that story and use it to market AI.> I once watched a team spend six weeks building a feature based on a Slack message from a sales rep who paraphrased what a prospect maybe said on a call. Six weeks.Except now witview on HN →
The post also smells heavily LLM-processed. I feel like I've been had by someone pumping out low effort blog posts.view on HN →
This will be flagged for being "political" but everyone here needs to be reminded that they may be complicit in this via the tech they work on and/or the companies they work for.view on HN →
I'm a hacker. I find this interesting. It belongs on HN.view on HN →
this story doesn't belong on HNview on HN →
Why is this on Hacker News? this isn't Reddit.view on HN →
Hacker News cares about Palestinians all of a sudden?view on HN →
It never fails if you share something like Israel bombing hospitals in Gaza, or murdering the Palestinian boy on the beach, the Zios will always say it's unverified, or because they were hiding missiles there, etc.Nobody ever believes it.All the low quality Zionist propaganda of late is only making people more anti-Israel.view on HN →
I would say this is the point where Hacker News is truly dead. It's become Reddit 2.0, spreading Palestine propaganda.It was good while it lasted, but the amount of Reddit-leaning political posts here is overwhelming now.Gone are the days of clinical analytical dissection of technology, this is just liberal reddit 2.0 now.view on HN →
Simon Willinson alt here, this is so cool! I wrote about it in my blog.view on HN →
Ugh why is this stuff on HackerNews, I want nerd stuff not this stuffview on HN →
To add something other than the totally predictable on this thread.- Surprising (if you didn't know any better) how light-skinned all the Palestinians are in this article. I bet the average soldier in the involved IDF unit was darker. Only relevant because the conflict is often portrayed in terms of European Colonialism or US race dynamics.- Good that Israel is investigating this, seems like it's a thing they don't want (though perhaps are less eager to prevent this sort of incident at additionaview on HN →
Collateral damage is inevitable in any war. We don't need a HN post every time an innocent person dies in one of the wars in the middle east.view on HN →
I can go to Reddit for that.view on HN →
From the guidelines:What to Submit On-Topic: Anything that good hackers would find interesting. That includes more than hacking and startups. If you had to reduce it to a sentence, the answer might be: anything that gratifies one's intellectual curiosity. Off-Topic: Most stories about politics, or crime, or sports, or celebrities, unless they're evidence of some interesting new phenomenon. If they'd cover it on TV news, it's probably off-topic.If the story was about a German national then yes, Iview on HN →
I'm saying this as someone who doesn't really care about this certain topic:Either we allow _all_ political content or nothing.The HN guidelines are incredibly grey and handwave-y>Off-Topic: Most stories about politics, or crime, or sports, or celebrities, unless they're evidence of some interesting new phenomenon. If they'd cover it on TV news, it's probably off-topic.To me HN became to big for its own good since the Covid days. It's like the reddit front page except there are no subs with modsview on HN →
Welcome to Jewish privilegiesview on HN →
I don't see anything shocking just extremely sad, this is war 101, every day. Anybody who cares to follow whats happening will find these stories from each conflict. Ie same stories could be found on Ukraine (especially first months, sometimes with video), I personally recall few heartbreaking ones. Its civilians who suffer the worst fate in every war, innocent, small, defenseless.Given the uncritical support israel is getting from the political elites, plan will go on and the plan is nothing elview on HN →
Hacker Smacker — Friend and foe writers on Hacker News