frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Apache Hudi Dynamic Filter: 5-Minute Code Walkthrough

https://codepointer.substack.com/p/apache-hudi-dynamic-bloom-filter
1•ykhl1itj•4m ago•0 comments

Ghost Explore

https://explore.ghost.org
1•melvinroest•4m ago•1 comments

China's plan to take over Taiwan "peacefully" [video]

https://www.youtube.com/watch?v=J9s6m8V8Eyg
1•mgh2•5m ago•0 comments

Psylo 1.1.0 Privacy focused Browser released for iPhone

https://apps.apple.com/en/app/psylo-private-browser-proxy/id6741358035
1•doener•10m ago•0 comments

I Know We're in an AI Bubble Because Nobody Wants Me

https://petewarden.com/2025/11/29/i-know-were-in-an-ai-bubble-because-nobody-wants-me-%f0%9f%98%ad/
3•iparaskev•10m ago•0 comments

Show HN: I built a browser-based Cursor alternative as a solo dev

https://playcode.io
1•ianberdin•12m ago•0 comments

Anthropic's Claude 'Soul Document' extracted from Opus 4.5 weights

https://www.lesswrong.com/posts/vpNG99GhbBoLov9og/claude-4-5-opus-soul-document
1•Richard_Weiss•12m ago•0 comments

If You Must Use Signal, Use Molly

https://xn--gckvb8fzb.com/if-you-must-use-signal-use-molly/
2•udev4096•15m ago•1 comments

Why the Dutch embrace floating homes

https://www.bbc.com/future/article/20220202-floating-homes-the-benefits-of-living-on-water
1•Brajeshwar•16m ago•0 comments

Black Friday Software Deals (Mega List)

https://www.blackfridaydeals.directory/black-friday-software-deals-2025
1•aeff•18m ago•0 comments

Show HN: ScreenTest.run – A minimal, dark-mode dead pixel tester (No ads)

https://screentest.run/
2•zhou594660747•19m ago•0 comments

Heroic Is a Free and Open Source Epic, GOG and Amazon Prime Games Launcher

https://heroicgameslauncher.com/
1•doener•20m ago•0 comments

Software Engineers Are Not Politicians

https://alexwennerberg.com/blog/2025-11-28-engineering.html
1•ptx•24m ago•0 comments

A visual guide to how the Hong Kong fire spread

https://www.bbc.co.uk/news/resources/idt-c9792622-43e7-4b04-8374-2771dce4fcd1
1•omnibrain•29m ago•0 comments

LX: A CLI tool for LaTeX notes management

1•hkamal233•30m ago•0 comments

SteamOS performs better in gaming than Windows 11 on the new Lenovo Legion Go S

https://en.movilforum.com/SteamOS-performs-better-in-gaming-than-Windows-11-on-the-new-Lenovo-Leg...
1•doener•31m ago•0 comments

Just a few self-driving cars stop traffic jams

https://www.science.org/content/article/watch-just-few-self-driving-cars-stop-traffic-jams
1•thinkingemote•34m ago•0 comments

Show HN: I built 19 AI agents because one wasn't enough to coach my workouts

https://arvo.guru
1•danielepelleri•36m ago•0 comments

Restart of two Taiwanese plants feasible, ministry says

https://www.world-nuclear-news.org/articles/restart-of-two-taiwanese-plants-feasible-ministry-says
1•mpweiher•36m ago•0 comments

Putting rigid bodies to rest: analysis and design of resting configurati

https://hbaktash.github.io/projects/putting-rigid-bodies-to-rest/
1•fanf2•37m ago•0 comments

The JetBlue A320 Mid-Air Flight Control Issue: What We Know So Far

https://theaviationbrief.com/jetblue-a320-mid-air-flight-control-issue/
2•urban_winter•37m ago•1 comments

Show HN: Ultra-fast code retrieval without RAG – works with any coding agent

https://grebmcp.com
2•YashBudhia•38m ago•0 comments

Vibe Coding and BASIC

https://www.sicpers.info/2025/11/vibe-coding-and-basic/
1•mpweiher•41m ago•0 comments

PersonaKit: An insanely simple TypeScript SDK for building AI chat apps

https://github.com/albertnahas/persona-kit
1•albertnahas•43m ago•1 comments

IT specialist shortage [in Germany] almost gone

https://www.heise.de/en/news/MINT-Autumn-Report-IT-specialist-shortage-almost-gone-11095756.html
2•slow_typist•44m ago•0 comments

Wasmtime Bactched Fuel Increments

https://wasmtime.dev/
1•aaravdayal•45m ago•1 comments

Physicist Says Consciousness Might Be Part of the Universe, Not Just the Brain

https://www.msn.com/en-in/news/world/physicist-says-consciousness-mighgt-be-part-of-the-universe-...
2•stOneskull•47m ago•0 comments

"Courage to quit" matters more for seniors

https://til.andrew-quinn.me/posts/courage-to-quit-matters-more-for-seniors-less-for-juniors/
1•hiAndrewQuinn•48m ago•0 comments

Treasure hunt golden hare sold for £82k at auction

https://www.bbc.co.uk/news/articles/c87ld115ndvo
1•rawling•52m ago•0 comments

An Ode to Org Babel

https://donaldh.wtf/2025/11/an-ode-to-org-babel/
1•JNRowe•55m ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•7mo ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•7mo 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•7mo 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•7mo 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.