frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

We do not think Anthropic should be designated as a supply chain risk

https://twitter.com/OpenAI/status/2027846016423321831
247•golfer•4h ago•105 comments

The Windows 95 user interface: A case study in usability engineering (1996)

https://dl.acm.org/doi/fullHtml/10.1145/238386.238611
136•ksec•3h ago•76 comments

Obsidian Sync now has a headless client

https://help.obsidian.md/sync/headless
390•adilmoujahid•9h ago•139 comments

The happiest I've ever been

https://ben-mini.com/2026/the-happiest-ive-ever-been
329•bewal416•2d ago•147 comments

Microgpt

http://karpathy.github.io/2026/02/12/microgpt/
9•tambourine_man•38m ago•2 comments

Show HN: Xmloxide – an agent made rust replacement for libxml2

https://github.com/jonwiggins/xmloxide
23•jawiggins•2h ago•14 comments

Block the “Upgrade to Tahoe” Alerts

https://robservatory.com/block-the-upgrade-to-tahoe-alerts-and-system-settings-indicator/
139•todsacerdoti•7h ago•60 comments

H-Bomb: A Frank Lloyd Wright Typographic Mystery

https://www.inconspicuous.info/p/h-bomb-a-frank-lloyd-wright-typographic
7•mrngm•2d ago•3 comments

Addressing Antigravity Bans and Reinstating Access

https://github.com/google-gemini/gemini-cli/discussions/20632
201•RyanShook•12h ago•171 comments

Building a Minimal Transformer for 10-digit Addition

https://alexlitzenberger.com/blog/post.html?post=/building_a_minimal_transformer_for_10_digit_add...
36•kelseyfrog•4h ago•6 comments

Woxi: Wolfram Mathematica Reimplementation in Rust

https://github.com/ad-si/Woxi
249•adamnemecek•3d ago•104 comments

Verified Spec-Driven Development (VSDD)

https://gist.github.com/dollspace-gay/d8d3bc3ecf4188df049d7a4726bb2a00
145•todsacerdoti•9h ago•70 comments

Qwen3.5 122B and 35B models offer Sonnet 4.5 performance on local computers

https://venturebeat.com/technology/alibabas-new-open-source-qwen3-5-medium-models-offer-sonnet-4-...
222•lostmsu•5h ago•142 comments

Deterministic Programming with LLMs

https://www.mcherm.com/deterministic-programming-with-llms.html
18•todsacerdoti•3d ago•8 comments

Werner Herzog Between Fact and Fiction

https://www.thenation.com/article/culture/werner-herzog-future-truth/
65•Hooke•1d ago•14 comments

Show HN: Now I Get It – Translate scientific papers into interactive webpages

https://nowigetit.us
186•jbdamask•12h ago•99 comments

New evidence that Cantor plagiarized Dedekind?

https://www.quantamagazine.org/the-man-who-stole-infinity-20260225/
109•rbanffy•3d ago•69 comments

The whole thing was a scam

https://garymarcus.substack.com/p/the-whole-thing-was-scam
613•guilamu•9h ago•166 comments

MCP server that reduces Claude Code context consumption by 98%

https://mksg.lu/blog/context-mode
234•mksglu•16h ago•56 comments

747s and Coding Agents

https://carlkolon.com/2026/02/27/engineering-747-coding-agents/
128•cckolon•1d ago•58 comments

The archivist preserving decaying floppy disks

https://www.popsci.com/technology/floppy-disk-archivist-project/
46•Brajeshwar•3d ago•4 comments

Just two days of oatmeal cut bad cholesterol by 10%

https://www.sciencedaily.com/releases/2026/02/260225081217.htm
9•gradus_ad•33m ago•2 comments

Running a One Trillion-Parameter LLM Locally on AMD Ryzen AI Max+ Cluster

https://www.amd.com/en/developer/resources/technical-articles/2026/how-to-run-a-one-trillion-para...
10•mindcrime•52m ago•2 comments

Our Agreement with the Department of War

https://openai.com/index/our-agreement-with-the-department-of-war
217•surprisetalk•5h ago•193 comments

Ghosts'n Goblins – “Worse danger is ahead”

https://superchartisland.com/ghostsn-goblins/
64•elvis70•3d ago•24 comments

From Noise to Image – interactive guide to diffusion

https://lighthousesoftware.co.uk/projects/from-noise-to-image/
106•simedw•2d ago•15 comments

The Eternal Promise: A History of Attempts to Eliminate Programmers

https://www.ivanturkovic.com/2026/01/22/history-software-simplification-cobol-ai-hype/
234•dinvlad•3d ago•165 comments

Unsloth Dynamic 2.0 GGUFs

https://unsloth.ai/docs/basics/unsloth-dynamic-2.0-ggufs
198•tosh•17h ago•53 comments

What I learned while trying to build a production-ready nearest neighbor system

https://github.com/thatipamula-jashwanth/smart-knn
18•Jashwanth01•3d ago•10 comments

The United States and Israel have launched a major attack on Iran

https://www.cnn.com/2026/02/28/middleeast/israel-attack-iran-intl-hnk
1051•lavp•19h ago•2286 comments
Open in hackernews

Poll: Code with AI or Not?

26•bitbasher•2h ago

Comments

lkbm•2h ago
Yes, just also be sure to spend some time writing "by hand".
lolsowrong•2h ago
I agree with this, but I’m also curious: what would have to change before that advice is as sound as “write a little bit of assembly by hand” or the even more ridiculous “just write the raw bytes for the program in a hex editor?”
recursive•2h ago
A compiler is a reliable layer of abstraction using documented structured languages. For me it would need to be that.
sarchertech•2h ago
When I can look at a prompt and predict what the code it outputs will look like to some high degree of accuracy.

I mostly don’t think that is possible though because there’s too much ambiguity in natural language. So the answer is probably when AI is close enough to AGI that I can treat it like an actual trusted senior engineer that I’m delegating to.

lolsowrong•32m ago
Can you look at code today and predict what assembly a compiler will output to some high degree of accuracy? Do you avoid certain classes of compiler optimization so you can more accurately predict compiler output? I recall a time where many compilers would remove a bzero() operation in situations where you’re trying to zero out a buffer that had sensitive data in it - it’s why we have APIs like https://github.com/MicrosoftDocs/win32/blob/docs/desktop-src.... I ran into a huge performance regression because I didn’t have all the edges of named return value optimization in mind when I refactored some code.

There’s ambiguity in the x86 specification, such that you can execute a single instruction and get different results in intel vs amd. See the rcpss instruction, for example.

I get that LLMs are categorically different, and they’re absolutely not as reliable as compilers are, but compilers are also not as reliable as compilers seem. And even less predictable IMO.

bjt•57m ago
Even with LLMs, we need a way to translate between the imprecise plain English description of a program and the completely-unambiguous level of code. You need the ability to see when the LLM has resolved ambiguities in the wrong direction and steer it back. If you can't speak code, that's going to be a very error-prone process.
tobr•2h ago
Are you asking what I do or are you asking for advice on what you should do?
re-thc•2h ago
Sounds like neither. More like throw a dice and press the up button.
NamlchakKhandro•2h ago
Yes
bossyTeacher•2h ago
This has to be the first poll I have ever seen on this website
marcosdumay•2h ago
They use to be more common, but polls have low odds of being productive.
fdgg•2h ago
I hope this thread/poll sparks productive and effective discussion on the subject.
throwaway2037•2h ago
For me, I used it find libraries to solve a problem that I didn't know about. Or to debug confusing error messages when library/language docs are insufficient.
7777332215•2h ago
Only use chatting to get answers for various things, often cross referenced with Google results, dedicated forums, and reddit. For programming/software work I use it to try to find problems with my architectural/design decisions, find new libraries, and best practices. I do not use it for code gen, instead I leverage high level deterministic (non ai) tools to do more with less code.
mpalmer•2h ago
It's not going to tell us much because we don't know the standard of code quality that respondents hold themselves to.
fdgg•2h ago
True, but easier to see consensus than reading through a thread that is filled with a variety of posts in terms of usefulness.
bitbasher•1h ago
Yes-- this is what I wanted. I wanted to get an idea of where most people fall.
Rodeoclash•2h ago
My flow is the AI writes most of the code, I closely review, question and tweak everything that comes out. My commits are about the same size as they were. Don't vibe code or one shot features.
pan69•2h ago
I'd consider myself a very experienced (~30 years), but mediocre dev, and this AI thing has completely transformed my capabilities as a software developer. People compare AI to a "smart junior" or something like it. To me, it's more the mentor I never had. When I have AI review code that I wrote, I will point out things I would either have never thought of, or would have taken me weeks or months of going back and forth to figure out. There are lots of things in software development that I hate doing, such as CSS/HTML, AI is now filling the gap that used to be an obstacle for me. With AI this now has become fun as it feels like I am not alone working on this thing. What it produces, I can understand and I review its work as well as vica-verca. I mostly use it in assistant mode. I do not have an army of agents running (yet).
TRiG_Ireland•2h ago
I was made redundant (from a web dev job) a couple of years ago, and have been looking for a new job. But the thought of coding with an LLM gives me the heebie jeebies. The very idea makes my skin crawl. I think I need to find a new industry. I don't yet know what.
Shitty-kitty•1h ago
There is a category missing between "as much as you can" and "chatting".

Yes, as a better autocomplete.

jezek2•1h ago
I don't think it's wise to use it for anything. Even when chatting with an LLM you would have to check everything yourself which nobody would truly do. The generated code can't be really trusted (and nobody will review everything, quite the opposite). It can also have copyright issues.

People are allergic to articles and documentation generated/processed by LLM.

You're switching from an active role to a passive one, meaning your skill will suffer over the time. There is a huge difference between doing the things and thinking you know what it's doing. It's harder to review bad generated code because how polished it looks, compared to code made by humans where the difference is much more obvious.

Code assistants seem to work great when dealing with boilerplate, but wouldn't be better to get rid of the need for the boilerplate in the first place?