frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open-source prototype template for building and reviewing products

https://github.com/weidsfsdwgf/ai-prototype-demo
1•Nina_antalpha•2m ago•0 comments

Show HN: VoxHearth is a small privacy-focused Mac TTS app

https://github.com/stephansturges/voxhearth-mac
1•stephanst•2m ago•0 comments

AI coding got faster. Why didn't engineering?

https://thenewstack.io/ai-productivity-measurement-gap/
1•TrailMaker•2m ago•0 comments

I'm leaving OpenAI to build Jurassic Park

https://taylor.town/leaving-openai
1•surprisetalk•3m ago•0 comments

Claude Code now lets sessions talk to each other on macOS

https://9to5mac.com/2026/08/07/claude-code-now-lets-sessions-talk-to-each-other-on-macos/
1•jonbaer•6m ago•0 comments

Evolving Plans – Looking Back on the First Half of 2026

https://heltweg.org/posts/evolving-plans-looking-back-on-the-first-half-of-2026/
1•rhazn•6m ago•0 comments

Show HN: Taalas-style on-chip LLM weights on a $250 AMD FPGA (60k tok/s)

https://www.mikeayles.com/blog/on-chip-llm-kv260/
2•mikeayles•9m ago•0 comments

Show HN: Untagged – Find the cloud spend missing required allocation tags

https://untagged.pages.dev/
1•normanbrigg•11m ago•0 comments

Steam Machine and Steam Controller Customers in Europe Hit by Cyber Attack

https://www.digitalfoundry.net/news/2026/08/psa-steam-machine-and-steam-controller-customers-in-e...
1•blitzar•14m ago•0 comments

Beijing is forcing a mass breakup with AI lovers

https://restofworld.org/2026/china-ai-boyfriend-ban-bytedance-doubao/
1•cdrnsf•15m ago•0 comments

AI model captures how humans read, paving the way to personalised text

https://www.aalto.fi/en/news/ai-model-captures-how-humans-read-paving-the-way-to-personalised-tex...
1•geox•15m ago•0 comments

The $0 Personalized News Roundup That Lands in Your Podcast App Every Week

https://www.gadgetboy.org/the-0-personalized-news-roundup-that-lands-in-your-podcast-app-every-week/
1•gadgetboy•17m ago•1 comments

The Future Is for Everyone

https://about.fb.com/news/2026/08/the-future-is-for-everyone/
1•sebastian_z•18m ago•0 comments

Our Last, Best Chance to Cool the Earth – Bill McKibben – Ted [video]

https://www.youtube.com/watch?v=9LTGzEzDat0
1•thelastgallon•22m ago•0 comments

Australia has enough houses. So why can't anyone afford one? Economist explains [video]

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

Endless Execution

https://world.hey.com/dhh/endless-execution-4157e065
1•tosh•24m ago•0 comments

Tail-call optimization in C is relatively recent

https://lwn.net/Articles/1034703/
6•prakashqwerty•27m ago•0 comments

London Beer Flood

https://en.wikipedia.org/wiki/London_Beer_Flood
1•jxub•27m ago•0 comments

When longing for something becomes hate

https://burnoutdv.bearblog.dev/longing/
3•burnoutdv•28m ago•0 comments

How do you sell a CPU design when the instruction set is free?

https://www.siliconimist.com/p/credibility-is-the-barrier-to-entry
1•johncole•28m ago•0 comments

The "Privacy-Preserving" Angle (High Risk, High Reward)

https://kylesinvestigation.com/
1•mkyle71•29m ago•0 comments

PrintingFilms.com

https://printingfilms.com
1•lyall•29m ago•0 comments

The Consciousness Library: psychedelic and dream research

https://consciousnesslibrary.org/
1•Anon84•32m ago•0 comments

Because It's Not Fun Enough: why languages fail

https://bytecode.news/posts/2026/08/because-it-s-not-fun-enough
6•jottinger•33m ago•0 comments

OpenAI tightens controls on its new model over cybersecurity risks

https://www.cnbc.com/2026/08/10/openai-astra-cybersecurity-risks.html
1•cramer4next•36m ago•0 comments

Minimum wages in Europe: Purchasing power versus pay in 2026

https://www.euronews.com/business/2026/08/04/minimum-wages-in-europe-purchasing-power-versus-pay-...
1•Markoff•37m ago•0 comments

A 'bananas' order for 5000 obscure book titles fuels suspicion

https://www.irishtimes.com/world/europe/2026/08/10/a-mysterious-buying-spree-is-unsettling-europe...
5•ohaodha•39m ago•0 comments

Rich Text Editing Innovations in Bike

https://www.hogbaysoftware.com/posts/bike-rich-text/
1•summarity•40m ago•0 comments

Prepare yourself tonight and do not miss the eclipse

https://sunsetatlas.ch/?lat=50.84674&lng=4.35249&date=08-12&lang=fr&mode=eclipse
1•damienmeur•43m ago•1 comments

Making More NPM Packages Work with JsDelivr ESM Mode

https://www.jsdelivr.com/blog/making-more-npm-packages-work-with-jsdelivr-esm/
1•jimaek•44m 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.