frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A kernel run on the Navier-Stokes blowup Lean project

https://github.com/ravanova/blowup-search/blob/main/writeup/7_confirmation/BLOG_CONFIRMATION.md
1•ravanova•2m ago•0 comments

We Replaced MMAP with Io_uring in Our Rust Query Engine. It Got Slower

https://www.conviva.ai/resource/we-replaced-mmap-with-io_uring-in-our-rust-query-engine-it-got-sl...
1•rzk•6m ago•0 comments

Racing to solve maths problems now 'pointless'

https://www.abc.net.au/news/2026-09-11/racing-to-solve-maths-problems-pointless-tristan-buckmaste...
1•elahieh•9m ago•0 comments

Astra marks the Claude 3.7 moment for knowledge work

https://fundaai.substack.com/p/deepllm-gpt-6-astra-opens-new-markets
2•deepmem•12m ago•0 comments

Show HN: Interactive history of Earth and human civilization

https://earth.ethanplus.ai/
1•freakynit•16m ago•0 comments

Apple Watch can grab snippets of conversation without both speakers' consent

https://www.theregister.com/security/2026/09/10/watch-out-apple-timepiece-can-grab-snippets-of-co...
1•signa11•18m ago•0 comments

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
2•signa11•21m ago•0 comments

Ask HN: What Can We Do?

2•silexia•22m ago•1 comments

Fugu Max and Fugu Ultra v2: Orchestrating the Pareto Frontier

https://sakana.ai/fugu-max-release/
4•hardmaru•22m ago•0 comments

Show HN: Swiftime - time tracking you can talk to, with an API for AI agents

https://swiftime.ai/
1•tomazaria•28m ago•0 comments

The Branch and the Wish – On mathematics, machines and what the proof never held

https://nisheethvishnoi.substack.com/p/the-branch-and-the-wish
1•vismit2000•32m ago•0 comments

A jank percentage doesn't say where the frame went

https://github.com/timkrest/FrameHUD/blob/main/docs/article-frame-phases.md
1•timkrest•33m ago•0 comments

The Telescope NASA Launched Sunday Was Built to Look at You

https://galratner.substack.com/p/the-telescope-nasa-launched-sunday
2•blartpaul•36m ago•0 comments

The Gemini app is now available for Windows

https://blog.google/innovation-and-ai/products/gemini-app/gemini-app-now-on-windows/
3•quysala12•40m ago•1 comments

Thinking with Looped Flows

https://arxiv.org/abs/2609.11801
1•E-Reverance•42m ago•0 comments

Metamorphosis: Transformations in the Early Modern Flap Book (19th Century)

https://publicdomainreview.org/collection/metamorphosis-early-modern-flap-book/
1•benbreen•42m ago•0 comments

One company that steals accuses another company that steals [pdf]

https://www-cdn.anthropic.com/e50be2e51e7695dc4b1366a37a245a597377d3b5/Anthropic-Detecting-and-co...
2•iamsyr•43m ago•1 comments

Show HN: Hekla, an event sourcing runtime with its own language

https://hekla.tqwewe.com/
1•tqwewe•49m ago•0 comments

DeepSeek Harness

https://www.deepseek.com/harness/en/
3•dotmanish•52m ago•0 comments

It Breaks a Village: Bevy's 6th Birthday

https://blog.fallible.net/it-breaks-a-village/
2•RohanAdwankar•53m ago•1 comments

GPT Image 2.5 for Consulting Presentations: Faster Slides and Smarter Control

https://medium.com/@2315610426/gpt-image-2-5-f36976cf7632
2•chenxi030826•55m ago•0 comments

The Bayeux Tapestry: Woven by the Victors

https://www.historytoday.com/archive/out-margins/bayeux-tapestry-woven-victors
2•prismatic•56m ago•0 comments

How to Make a PwC-Style PowerPoint with AI (2): 5 More Consulting Frameworks

https://medium.com/@2315610426/how-to-make-a-pwc-style-powerpoint-with-ai-2-5-more-consulting-fra...
1•chenxi030826•56m ago•1 comments

Trial Testing Out-of-Body Experiences Produces Unexpected Twist

https://www.uvahealth.com/news/trial-testing-out-of-body-experiences-yields-unexpected-twist
1•geox•1h ago•0 comments

Dioxus Labs is joining Cognition

https://dioxuslabs.com/blog/joining-cognition/
2•antimora•1h ago•0 comments

9/11 in Realtime (synced globally for 9/11)

https://911realtime.org
2•robbiebyrd•1h ago•1 comments

Günther Anders, the Philosopher at the End of the World

https://www.compactmag.com/article/gunther-anders-the-philosopher-at-the-end-of-the-world/
2•Caiero•1h ago•0 comments

Outflow connects directly to inverters, mints solar electricity records

1•OutflowLabsInc•1h ago•1 comments

Show HN: CertArena – Free AI certification simulator (zero deps, native Node 24)

https://aicertarena.com/
1•pennylaw946•1h ago•0 comments

Reconstructing Concurrency Invariants Through Medieval East Asian Logic

https://oborona.zip/post/a-middle-period-engine-reconstructing-concurrency-invariants-through-eas...
1•gg582•1h 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.