frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I wrote a book for engineers building production AI systems

https://productionaibook.com
1•aroussi•44s ago•0 comments

Show HN: I built a local fuzzing tool to red-team LLM agents (Python, SQLite)

1•woozyrabbit•1m ago•0 comments

Spanish court orders Meta to pay nearly half a billion euros in damages

https://apnews.com/article/meta-spain-fine-privacy-data-media-c97a7e46d923ba446c6974937e95a827
1•1vuio0pswjnm7•1m ago•0 comments

TSMC in a tight spot: demand for high-end chips exceeds capacity by factor of 3

https://www.igorslab.de/en/tsmc-in-a-tight-spot-demand-for-high-end-chips-exceeds-capacities-by-a...
1•speckx•2m ago•0 comments

Show HN: I made an AI SEO tool for people who hate writing content

https://scribepilotai.com/
1•lastFitStanding•3m ago•0 comments

Big attack on NPM – Shai-Hulud 2.0

https://about.gitlab.com/blog/gitlab-discovers-widespread-npm-supply-chain-attack/
1•thomasfl•3m ago•0 comments

Cryptology firm cancels elections after losing encryption key

https://www.bbc.com/news/articles/c62vl05rz0ko
4•tagawa•4m ago•1 comments

Show HN: A terminal based voice over IP service

https://github.com/THE-TARS-PROJECT/tars-comm
1•cooper258•5m ago•0 comments

Show HN: Open-Source Email Verifier

https://github.com/yolodex-ai/email-verifier
2•marcushyett•5m ago•0 comments

My Experience Using Tinker

https://www.rajan.sh/tinker
1•gmays•6m ago•0 comments

Show HN: A browser tool that tracks your hands in real-time

https://webinterac.vercel.app/
2•warrowarro•8m ago•0 comments

Idempotency Keys

https://www.morling.dev/blog/on-idempotency-keys/
3•furkansahin•8m ago•0 comments

OpenTransit – A MassTransit Fork

1•Nakib•9m ago•0 comments

A Software Language That Vibe Coding Kids Deserve

https://github.com/MatthiasKainer/matthiashihic
2•mat_the_k•9m ago•0 comments

Show HN: I built a "Hot or Not" for startups to get the feedback YC doesn't give

https://yci.vercel.app/vote
1•alielroby•10m ago•0 comments

A Power Grid-Aware Website

https://fershad.com/grid-aware-site/
1•vintagedave•11m ago•1 comments

A We-Free December

https://hollisrobbinsanecdotal.substack.com/p/a-we-free-december
1•HR01•11m ago•1 comments

Show HN: Product Loop – Automated AI customer interviews

https://productloop.io
1•satssehgal•12m ago•0 comments

Show HN: Tree Dangler

https://www.jasonthorsness.com/34
1•jasonthorsness•12m ago•0 comments

Show HN: Smart Bill Splitter: Split bills in browser without login, ads, cookies

https://smartbillsplitter.com
1•truetotosse•12m ago•0 comments

Getting Started with Claude Code

https://realpython.com/courses/getting-started-claude-code/
1•meysamazad•13m ago•0 comments

Browserbench.ai is launched to evaluate browser runtimes for AI Agents

https://www.browserbench.ai
2•idanraman•15m ago•1 comments

Ruthless prioritization while the dog pees on the floor

https://longform.asmartbear.com/prioritization/
2•gk1•17m ago•0 comments

Alphabet (Googl) Gains on Report Meta to Use Its AI Chips

https://www.bloomberg.com/news/articles/2025-11-25/alphabet-gains-on-report-that-meta-will-use-it...
1•mgh2•18m ago•0 comments

Ageing Populations Will Lead to Lower Living Standards, Warns Study

https://www.ft.com/content/3a675f7f-ff46-4b8d-9744-08dfed18d23a
2•skx001•18m ago•2 comments

Show HN: A seeded, deterministic chaos simulation runtime for async Rust

https://github.com/ZA1815/fracture
1•Crroak•19m ago•1 comments

The State of AI: don't share your secrets with a chatbot

https://www.ft.com/content/9cdd07b0-567e-4715-9ebd-435b1d685e4b
1•1vuio0pswjnm7•19m ago•0 comments

Questioning an Interface: From Parquet to Vortex

https://www.polarsignals.com/blog/posts/2025/11/25/interface-parquet-vortex
2•asubiotto•20m ago•0 comments

Show HN: Fractalbits – S3 compatibe store,1M iops p99~5ms,using Rust and Zig

https://github.com/fractalbits-labs/fractalbits-main
5•thomas_fa•22m ago•0 comments

Ask HN: Is There a Market for a "Phone-Only" VA Proxy?

2•ibogunov•22m ago•1 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.