frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I tried to start 182 MCP servers. 65 answered

https://mcprating.io/blog/i-tried-to-start-182-mcp-servers
1•saikousoshite•43s ago•0 comments

Ergo Framework – Erlang/OTP-style distributed systems in Go

https://github.com/ergo-services/ergo/releases/tag/v1.999.330
1•halturin•2m ago•0 comments

Reservoir sedimentation diminishes water storage and coastal delta resiliency

https://www.nature.com/articles/s41467-026-76986-3
1•toomuchtodo•4m ago•1 comments

What the CPU shortage means for software teams

https://www.katelynlesse.com/blog/cpu-shortage-software-teams
1•sylvainkalache•6m ago•0 comments

Real Business Plan Generator with AI Tool for Free

1•horitechsolutio•7m ago•0 comments

AGI Futures (2023)

https://read.roonscape.ai/p/agi-futures
1•eatitraw•7m ago•0 comments

Show HN: Copperhead – Hardware as Fast as Software

https://copperhead.sh/
1•animeshchouhan•8m ago•0 comments

Diri

https://github.com/cristicretu/diri
1•handfuloflight•8m ago•0 comments

With another infusion of cash, Stoke Space goes even bigger

https://arstechnica.com/space/2026/09/stoke-space-sets-debut-launch-target-reveals-plans-for-larg...
1•rbanffy•8m ago•1 comments

It takes at least 15 minutes get back into the "zone" after an interruption

https://contextkeeper.io/blog/the-real-cost-of-an-interruption-and-context-switching/
1•piotrkarczmarz•11m ago•0 comments

Planet Labs' Open Satellite Feed

https://tech.marksblogg.com/planet-labs-open-satellite-feed.html
1•marklit•11m ago•0 comments

Show HN: Grith – syscall-level supervision for AI agents

https://github.com/grith-ai/grith
3•edf13•12m ago•1 comments

For the Love of the Game

https://slimemoldtimemold.com/2026/08/27/for-the-love-of-the-game/
1•surprisetalk•13m ago•0 comments

The AI Capex Bubble and the Parallels to 5G

https://deadneurons.substack.com/p/the-ai-capex-bubble-and-the-parallels
1•nr378•15m ago•0 comments

Britain reboots its space strategy with £7.8B on the launchpad

https://www.theregister.com/public-sector/2026/09/08/britain-reboots-its-space-strategy-with-78b-...
1•DemiGuru•18m ago•0 comments

The extended mind was always personal

https://www.thisandthat.chat/blog/the-extended-mind-was-always-personal/
1•jreynar•18m ago•0 comments

Huawei proudly shows off an un-American chip

https://www.theregister.com/systems/2026/09/08/huawei-proudly-shows-off-an-entirely-un-american-c...
1•DemiGuru•19m ago•0 comments

Show HN: Manymux: A Terminal Session Multiplexer

https://rayfish.xyz/blog/03-introducing-manymux
1•dfish•19m ago•0 comments

The first zero-click worm to spread through WeChat calls across iOS and Android

https://calif.io/research/weworm
3•geox•22m ago•0 comments

Augment Mouthpad

1•Upset123•23m ago•0 comments

Letting AI Debug Production

https://lackofimagination.org/2026/09/letting-ai-debug-production/
1•tie-in•25m ago•1 comments

BirdCast – Bird migration forecasts in real-time

https://birdcast.org/
1•vital101•26m ago•0 comments

Causal Lineage, Session Replay, and the Missing Layer in Enterprise AI

https://medium.com/@MirArshadTalpur/causal-lineage-session-replay-and-the-missing-layer-in-enterp...
1•Arshad-Talpur•26m ago•0 comments

Terence Tao on Breakthrough in finite-time blowups for 3D incompressible Euler

https://mathstodon.xyz/@tao/117233527638291447
2•haxiomic•26m ago•0 comments

Geneticist's Y. Lu age-reversal tech could help restore sight

https://www.technologyreview.com/2026/09/08/1142074/yuancheng-ryan-lu-age-reversal-tech-restores-...
1•mdp2021•27m ago•0 comments

Implementing Adaptive Cache Replacement (Arc) Policy in Python

https://www.abhinavomprakash.com/posts/implementing-arc-cache-replacement-policy-in-python/
1•lazyfolder•27m ago•0 comments

Britain's grid operator gave Palantir contract without inviting rival bids

https://www.ft.com/content/f6a26a17-985f-4283-99c4-ba5d54e94e7f
1•robtherobber•27m ago•0 comments

Assembling context for analytics agents from existing data stacks

https://blog.getcassis.com/a-blank-beats-a-guess/
1•matthieu_bl•29m ago•0 comments

Why AI-generated slopaganda works

https://www.machinesociety.ai/p/why-ai-generated-slopaganda-works
2•mikelgan•30m ago•1 comments

Why human syntax breaks LLMs (and how to fix agentic coding)

3•aslang•30m 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.