frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Noswoosh – instant macOS Space switching, no animation

https://github.com/mmathys/noswoosh
1•k5hp•11s ago•0 comments

Show HN: WorkBase – local-first project manager where a project is a tree

https://github.com/vocso-com/WorkBase
1•vocso•5m ago•0 comments

Nine Indicted by Taiwan over Illegal Export of Nvidia B300 GPUs to China

https://www.tomshardware.com/tech-industry/artificial-intelligence/nine-indicted-by-taiwan-over-i...
1•geoffbp•5m ago•0 comments

Jonathan Blow – Preventing the Collapse of Civilization (2019) [video]

https://www.youtube.com/watch?v=ZSRHeXYDLko
1•andai•6m ago•0 comments

Show HN: Maya Calendar

https://mcal.qt.ax/
1•quantum5•7m ago•0 comments

Show HN: AI for people that still browse the web

https://thisisrobin.ai/
1•nikolas1814•7m ago•0 comments

The Great Vowel Shift

https://en.wikipedia.org/wiki/Great_Vowel_Shift
1•samcgraw•8m ago•0 comments

Why the Largest Megaproject Collapsed [video]

https://www.youtube.com/watch?v=GbB3vFfiaVU
1•simonebrunozzi•11m ago•0 comments

The Teaser Period: Why the AI Boom Is Built to Break

https://www.groundbrkr.com/p/the-teaser-period-why-the-ai-boom
1•root-parent•16m ago•0 comments

Qwen 3.6 is now much easier to run locally on your Mac, thanks to JetBrains

https://www.neowin.net/news/qwen-36-is-now-much-easier-to-run-locally-on-your-mac-thanks-to-jetbr...
5•bundie•17m ago•0 comments

Gray Goo

https://en.wikipedia.org/wiki/Gray_goo
1•mkl95•17m ago•0 comments

The Government Report That Made Me Stop Trusting Our Statistical Agencies

https://econjared.substack.com/p/the-government-report-that-made-me
3•root-parent•17m ago•0 comments

Show HN: Nauma new features (financial planning)

1•alx_sukhanov•21m ago•0 comments

Greg Abbott says data centers:'basically dug their own grave'

https://www.businessinsider.com/greg-abbott-texas-data-centers-backlash-2026-8
5•root-parent•21m ago•0 comments

DDD, Hexagonal, Onion, Clean, CQRS, How I put it all together (2017)

https://herbertograca.com/2017/11/16/explicit-architecture-01-ddd-hexagonal-onion-clean-cqrs-how-...
1•gregsadetsky•25m ago•0 comments

Nvidia Jetson Orin drone kills 3 in July Russia attack on Ukraine gas station

https://www.nytimes.com/2026/08/24/world/europe/ukraine-war-nvidia-ai-autonomous-drones.html
2•ncr100•26m ago•1 comments

Harvard Is Selling a $699 Course Taught by A.I. Clones of Its Faculty

https://www.nytimes.com/2026/08/22/business/dealbook/harvard-ai-faculty.html
3•bookofjoe•28m ago•2 comments

Apple Watch Alerted Runner to Serious Heart Problem

https://www.macrumors.com/2026/08/20/apple-watch-alerted-runner-to-heart-problem/
2•speckx•28m ago•0 comments

Porsche Inks $1.5B AI Deal with India's Tata Consultancy

https://www.bloomberg.com/news/articles/2026-08-24/porsche-inks-1-5-billion-ai-deal-with-india-s-...
2•johnbarron•31m ago•0 comments

"Model Effort" Has It Backwards

https://diverging.run/checkpoints/human-effort-not-model-effort/
1•shay_ker•32m ago•0 comments

Continuous Prompt Evaluation

https://kiro.dev/blog/continuous-prompt-evaluation/
2•ruptwelve•32m ago•0 comments

I can't prove it, but I think AI is causing me brain damage

3•nyxtom•32m ago•2 comments

The John Dvorakification of the blogosphere (2006)

https://web.archive.org/web/20060322062548/http://scobleizer.wordpress.com/2006/03/05/the-john-dv...
2•tolerance•32m ago•0 comments

A Claude Code skill that recovers export-blocked Kindle highlights

https://github.com/l3a0/claude-plugins
10•l3a0•32m ago•0 comments

How to spot a stupid person with Carlo Cipolla's "golden law of stupidity"

https://bigthink.com/mini-philosophy/golden-law-of-stupidity/
4•speckx•33m ago•0 comments

Using Models to Create Models of New York City

https://petersobot.com/blog/using-models-to-create-models-of-new-york-city/
1•psobot•33m ago•0 comments

OpenOx – A Protocol for Self-Evolving Agents

https://openox.ai/
3•ziyzhu•34m ago•0 comments

On Average: The choice in maximizing expected value

https://eehh-stanford.github.io/monkeys_uncle/posts/means_to_ends/
3•anigbrowl•36m ago•0 comments

Show HN: School chaos. Zero stress. Nuet organizes it all

https://www.nuet.ai/
2•wowinter15•37m ago•0 comments

Mistral and Humain Announce Colab to Advance AI in Saudi Arabia and Regionally

https://mistral.ai/news/mistral-x-humain/
3•leumon•37m ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•1y ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•1y ago
Whenever it gets in a cycle of fucking up, I ask it to break the code down into smaller functions and write a test suite for each individually.

Tell it what language or packages to use or it might make selections that add dependencies or require installing stuff on your computer.

Tell it how you want your code written or it will be an extra chore to accommodate linting requirements.

Basically just being very explicit.

GianFabien•1y ago
I mostly write low-level code in Python and JS. When working with a new API, I would sometimes find it difficult to locate information to fix problems. With ChatGPT I simply rubber duck my problem. It usually only takes a couple of iterations to zoom into the core solution.
Flundstrom2•1y ago
Copilot in visual studio to fix compiler errors and let it type all the boilerplate code by TAB-ing. Sometimes it even manages to spit out an entire - and correct - function.

Mistral Le Chat for more advanced questions and figuring out things that copilot can't.