frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Chimpanzees Are Natural Scientists

https://www.science.org/doi/10.1126/science.aeb7565
1•amichail•59s ago•0 comments

Ask HN: How to go about finding an admin co-founder of GoodWikiRead.org .com?

1•gitprolinux•1m ago•0 comments

Amazon.com Announces Q3 2025 Results

https://ir.aboutamazon.com/news-release/news-release-details/2025/Amazon-com-Announces-Third-Quar...
2•mfiguiere•4m ago•0 comments

I hate my consulting job so I made an API to automate it

https://blinkslides.com
1•corbkise•5m ago•0 comments

Zip-Bombs vs. Aggressive AI Crawlers: Defensive Tactics for Sites

https://jsdev.space/zip-bombs/
1•javatuts•6m ago•0 comments

Rock comminution as a source of hydrogen for subglacial ecosystems

https://www.nature.com/articles/ngeo2533
1•akshatjiwan•7m ago•0 comments

Scientists on 'urgent' quest to explain consciousness as AI gathers pace

https://erc.europa.eu/news-events/news/scientists-urgent-quest-explain-consciousness-ai-gathers-pace
1•geox•9m ago•0 comments

Show HN: Visualize branch relationships between open PRs in a GitHub repo

https://github.com/hnarayanan/pr-graph-generator
1•hnarayanan•10m ago•0 comments

Esp-hal 1.0.0 release announcement

https://developer.espressif.com/blog/2025/10/esp-hal-1/
2•mort96•12m ago•0 comments

Shift in Drinking Habits Wipes $830B Off Alcohol Stocks

https://www.bloomberg.com/news/articles/2025-10-30/shift-in-drinking-habits-wipes-830-billion-off...
3•toomuchtodo•13m ago•1 comments

Prince Andrew to Be Stripped of His Royal Title

https://www.nytimes.com/2025/10/30/world/europe/uk-prince-andrew-title.html
2•thelastgallon•18m ago•0 comments

.NET 10 Is Coming: What's New, and Why It Matters

https://www.endpointdev.com/blog/2025/09/dotnet-10-is-coming/
2•jpventoso•18m ago•0 comments

Autumn Lisp Game Jam 2025

https://itch.io/jam/autumn-lisp-game-jam-2025
1•NeutralForest•19m ago•0 comments

Ask HN: Did the best tab change on HN?

2•etrvic•19m ago•0 comments

iPhone fans always want this year's model, but what about everyone else?

https://sixcolors.com/post/2025/10/iphone-fans-always-want-this-years-model-but-what-about-everyo...
2•tosh•19m ago•0 comments

Tennet to grant grid access to 6 GW of Dutch battery projects

https://www.pv-magazine.com/2025/10/27/dutch-tennet-to-grant-grid-access-to-6-gw-of-battery-proje...
1•DamonHD•19m ago•0 comments

Charting the Course of the M5 Processor

https://sixcolors.com/post/2025/10/charting-the-course-of-the-m5-processor/
1•tosh•19m ago•0 comments

Multi-Domain Rubrics Requiring Professional Knowledge to Answer and Judge

https://arxiv.org/abs/2510.18941
1•PaulHoule•20m ago•0 comments

Fluoroquinolone Toxicity Study

https://fq100.org/
1•lcnmrn•22m ago•0 comments

Not your run of the mill Chromium based browser

https://openai.com/index/building-chatgpt-atlas/
2•darinf•22m ago•1 comments

A hitchhiker's guide to CUDA programming

https://www.seanzhang.me/posts/hitchhiker_cuda/
2•jxmorris12•22m ago•0 comments

Anthropic scientists hacked Claude's brain – and it noticed

https://venturebeat.com/ai/anthropic-scientists-hacked-claudes-brain-and-it-noticed-heres-why-thats
2•gradus_ad•23m ago•0 comments

Internal Guidelines Shed Light on Amazon's Plan to Cut Managers

https://www.businessinsider.com/amazon-plan-cut-managers-aws-internal-guidelines-2025-1
1•rbanffy•23m ago•0 comments

Generative AI, Simplicity, and Easiness

https://gioleppe.github.io/posts/genai-simple-easy/
1•locmot•24m ago•0 comments

X Box prototype mod build

https://www.youtube.com/watch?v=0OMP8JvGWNY
1•brian_herman•24m ago•0 comments

Prince Andrew stripped of title and evicted from royal lodge

https://www.abc.net.au/news/2025-10-31/prince-andrew-to-leave-royal-lodge-lose-title/105955534
4•asdefghyk•27m ago•3 comments

Can you still bootstrap a unicorn in 2025?

2•moneymanskurt•28m ago•0 comments

The Curious Case of Zoomable User Interfaces and AI [video]

https://www.youtube.com/watch?v=OESXpxUH_jI
1•beshrkayali•29m ago•0 comments

Phyllis Latour

https://en.wikipedia.org/wiki/Phyllis_Latour
1•vinnyglennon•32m ago•0 comments

Form's first 100-hour batteries are hitting the grid

https://www.latitudemedia.com/news/forms-first-100-hour-batteries-are-hitting-the-grid/
2•DamonHD•32m ago•0 comments
Open in hackernews

The real problem with AI coding

https://www.cubic.dev/blog/the-real-problem-with-ai-coding
3•pomarie•3h ago

Comments

taylodl•3h ago
The real problem is the Ready, Fire, Aim! approach to developing that starts with writing code first. As the article states, successful teams begin with architecture: define the components of the solution and how they interact, along with identifying data flows and data management. You can use AI to assist in that effort - and capture the result in an architecture diagram: preferably using a standardized modeling language such as ArchiMate that we can feed back into an AI in the future.

The same process can be applied to design. Again, designs can be captured in a modeling language such as UML that we can feed back into an AI in the future.

With those models in hand comprehending the code is relatively easy - and it doesn't matter whether the code was written by a person, an AI, or a combination of the two. But when you just jump straight to coding? That's problematic even without an AI.

pomarie•1h ago
That's a really fair point. Architecture-first is definitely the ideal, and teams that can invest that time upfront tend to avoid a lot of downstream pain.