frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Seat Allocation and Seat Bias Under the Jefferson–D'Hondt Method (2018)

https://arxiv.org/abs/1805.08291
1•wolfi1•1m ago•0 comments

Unmasking Romance Scams with Osint – Mishaal Khan [video]

https://www.youtube.com/watch?v=5dXXrUqpwec
2•Fudgel•2m ago•0 comments

Claude Agent SDK: Build Your Own AI Terminal in 10 Minutes

https://www.mager.co/blog/2026-03-14-claude-agent-sdk-tui/
2•ankitg12•3m ago•0 comments

Accountability Throughput

2•shudv•5m ago•0 comments

Show HN: A Reverse Captcha for Clankers

https://clanker-captcha.jeromem.workers.dev/
2•rydgel•7m ago•0 comments

How to Destroy a Literary Reputation in One Move

https://www.honest-broker.com/p/how-to-destroy-a-literary-reputation
2•Michelangelo11•7m ago•0 comments

Diffusion over Networks

https://camerongordon0.substack.com/p/diffusion-over-networks
2•iciac•8m ago•0 comments

My wife tried to log 1k phone-free hours but quit. So I vibe-coded an app

https://play.google.com/store/apps/details?id=com.greendot.phonebreaks&hl=en_US
1•GreenDotstudios•14m ago•0 comments

Show HN: Cordium: FOSS sandbox platform that eliminates credential injection

https://github.com/octelium/cordium
2•geoctl•15m ago•0 comments

The first support engineer agent for dev tools companies

https://reproly.com
2•Sidi-jeddou•19m ago•1 comments

The Hallmarks of Aging (2013)

https://pmc.ncbi.nlm.nih.gov/articles/PMC3836174/
2•downbad_•20m ago•0 comments

Show HN: Overslash – an auth gateway for AI Agents

https://www.overslash.com/
2•arturogoosnargh•22m ago•1 comments

Russia Revives WWI Dazzle Camouflage to Evade Ukrainian AI Drones–Does It Work?

https://united24media.com/war-in-ukraine/russia-revives-wwi-dazzle-camouflage-to-evade-ukrainian-...
1•Symbiote•22m ago•1 comments

How to Think About AI in Your Product

https://abgoyal.com/posts/how-to-think-about-ai-in-your-product/
1•ghoul2•28m ago•0 comments

Squillions – two books about money-laundering

https://www.lrb.co.uk/the-paper/v48/n09/john-lanchester/squillions
1•rwmj•29m ago•0 comments

2D Internet? So 1995. Building a '90s VRML-verse with SGI [video]

https://www.youtube.com/watch?v=9X_NKRbuPf4
3•6581•29m ago•0 comments

Show HN: Agent Deck: Native Mac app for managing AI coding agents| powered by PI

https://agentdeck.site/
2•streetcoder•32m ago•0 comments

Claude Code plugin that shows what's happening

https://github.com/jarrodwatts/claude-hud
2•ankitg12•34m ago•0 comments

Show HN: 1B rows (14B cells) in the browser with DuckDB and Glide Data Grid

https://analytics-grid.com/
1•engraver•45m ago•2 comments

My Accessibility Stack and the Future on Wayland

https://nocoffei.com/?p=451
3•birdculture•46m ago•1 comments

'Your devices could be at risk': how McAfee antivirus scams trade on fear

https://www.theguardian.com/money/2026/may/31/virus-software-scam-trade-fear-urgent-renewal
7•billybuckwheat•47m ago•0 comments

The ambiguous intelligence of coding agents

https://blog.viewfromtheweb.com/the-ambiguous-intelligence-of-coding-agents-9a2d96f5/
1•rickdg•49m ago•0 comments

Under the River

https://shopify.engineering/under-the-river
2•shahargl•1h ago•0 comments

Show HN: Egress WAF to limit AI agents and NPM malware based on mitmproxy

https://github.com/esamattis/mitmwall
1•esamatti•1h ago•0 comments

The Hardest Fork

https://www.chainguard.dev/unchained/the-hardest-fork
2•insomniacity•1h ago•0 comments

Show HN: I reverse-engineered the world maps of Test Drive III (1990 DOS game)

https://github.com/s-macke/Test-Drive-3-Maps
2•s-macke•1h ago•0 comments

Show HN: seed. – self-modifying webpage, on-device LLM, site in the URL

https://oxedom.github.io/seed/
2•oxedom•1h ago•1 comments

Local privacy-first period tracker

https://syncmateapp.com/
2•computersuck•1h ago•0 comments

Nvidia: We're adopting the Linux Foundation's OpenMDW framework

https://twitter.com/NVIDIAAI/status/2060035668655677804
5•tosh•1h ago•0 comments

Palindromes by Eric Harshbarger

http://www.ericharshbarger.org/cgi-bin/palindrome_viewer.cgi
1•jruohonen•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.