frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: ImmutableBase – Strict immutable data objects for PHP

https://github.com/ReallifeKip/ImmutableBase
1•bill402099•3m ago•0 comments

Show HN: Clickly – visual dev tool for mobile apps with real-time preview

https://clickly.app
1•roskoalexey•6m ago•0 comments

The Window Chrome of Our Discontent

https://pxlnv.com/blog/window-chrome-of-our-discontent/
1•tosh•20m ago•0 comments

"I built a spell checker for back end configuration mistakes."

https://www.npmjs.com/package/safelaunch
1•karthicedricq•20m ago•1 comments

ClaudeSmalltalk: An MCP implementation to interact with Smalltalk images

https://github.com/CorporateSmalltalkConsultingLtd/ClaudeSmalltalk
3•mpweiher•34m ago•0 comments

Show HN: Mb-CLI – CLI for Metabase. Designed for humans and AI coding agents

https://github.com/andreagrandi/mb-cli
2•andreagrandi•36m ago•0 comments

Show HN: Viral.ad – Turn any product URL into a UGC video ad in minutes

https://www.viral.ad/
2•cjdesignstudio•37m ago•1 comments

Show HN: I built a tool to manage work and personal Git repos

https://github.com/tomquirk/gitpersona
5•tomquirk•39m ago•0 comments

Show HN: Stopping OpenClaw from breaking your mails

https://github.com/HalfEmptyDrum/openclaw-gmail-draft-proxy
4•HalfEmptyDrum•43m ago•0 comments

Girl Scout Cookies

https://www.girlscouts.org/en/cookies.html
3•Tomte•44m ago•1 comments

Codex for Open Source

https://openai.com/form/codex-for-oss/
3•archb•54m ago•0 comments

China completes 3k-km green belt around Taklamakan desert (2024)

https://www.reuters.com/world/china/china-completes-3000-km-green-belt-around-its-biggest-desert-...
2•thunderbong•56m ago•0 comments

LLM Doesn't Write Correct Code. It Writes Plausible Code

https://twitter.com/katanalarp/status/2029928471632224486
3•danjc•1h ago•0 comments

Show HN: CC Usage Bar – Check Claude Code usage from your macOS menu bar

https://github.com/lionhylra/cc-usage-bar
1•root-cause•1h ago•1 comments

Nintendo DMCA takedown for several projects on GitHub

https://github.com/github/dmca/blob/master/2026/02/2026-02-12-nintendo.md
2•mtlebe•1h ago•0 comments

Show HN: Contrabass – Go and Charm Stack Implementation of OpenAI's Symphony

https://github.com/junhoyeo/contrabass
1•junhoyeo•1h ago•1 comments

Why New Zealand is seeing an exodus of over-30s

https://www.cnn.com/2026/03/06/world/new-zealand-australia-emigration-midlife-intl-hnk-dst
14•Tomte•1h ago•7 comments

Two mechanisms for dynamic type checks

https://wingolog.org/archives/2026/02/18/two-mechanisms-for-dynamic-type-checks
2•PaulHoule•1h ago•0 comments

Dupeless Reeducation

https://www.science.org/content/blog-post/dupeless-reeducation
3•Tomte•1h ago•0 comments

Show HN: RedwoodSDK (v1.0 in a Few Days)

https://rwsdk.com
2•pistoriusp•1h ago•0 comments

Show HN: SlideHTML – render HTML files as slides For AI

https://yourhrh.github.io/slidehtml/
2•creativegodong•1h ago•0 comments

Front End Rust Without Node

https://blog.urth.org/2022/02/14/frontend-rust-without-node
1•mahirsaid•1h ago•0 comments

What your phone knows could help scientists understand your health

https://news.stanford.edu/stories/2026/03/screenome-digital-habits-smartphone-mental-physical-health
3•XzetaU8•1h ago•0 comments

Scientists Transfer Longevity Gene

https://scitechdaily.com/scientists-successfully-transfer-longevity-gene-paving-the-way-for-exten...
3•thunderbong•1h ago•0 comments

AI Error May Have Contributed to Girl's School Bombing in Iran

https://thisweekinworcester.com/exclusive-ai-error-girls-school-bombing/
25•apolloartemis•1h ago•4 comments

How many options fit into a boolean?

https://herecomesthemoon.net/2025/11/how-many-options-fit-into-a-boolean/
1•luu•1h ago•0 comments

SK lays off nearly 1k workers at Georgia plant amid cooling automaker EV plan

https://apnews.com/article/georgia-electric-vehicle-battery-manufacturing-layoffs-workers-79a4ec7...
3•josephh•1h ago•0 comments

Ships in Gulf declare themselves Chinese to dodge attack

https://www.ft.com/content/eaecc3ce-ba4e-4e19-9d0a-6cf1536a5aed
7•KnuthIsGod•1h ago•0 comments

Doomscroll 14,333 cat pictures

https://cat.aadishv.dev/
4•aadishv•1h ago•4 comments

Unemployment Reasons, by Age and Education

https://flowingdata.com/2026/03/05/unemployment-reasons/
3•gslin•1h ago•2 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

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

Comments

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