frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Impacts of Unauthorized Immigration on U.S. Labor and Housing Markets

https://www.dallasfed.org/research/papers/2026/wp2607
1•nradov•9m ago•0 comments

Enterprise AI customers pulling back from OpenAI and Anthropic as costs mount

https://qz.com/enterprise-ai-spending-openai-anthropic-roi-pullback-062626
1•toomuchtodo•13m ago•2 comments

Compiler Education Deserves a Revolution

https://thunderseethe.dev/posts/compiler-education-deserves-a-revoluation/
1•azhenley•14m ago•0 comments

I Co-Founded Wikipedia. Now I'm Banned for Life

https://www.thefp.com/p/larry-sanger-wikipedia-co-founder-banned
3•bko•14m ago•2 comments

Show HN: Tested – AI Tools Scored by a Panel of LLMs (Claude, GPT, Gemini, Grok)

https://trytested.com
1•pro_methe5•16m ago•0 comments

What's the value of the Biblical half shekel?

https://www.chabad.org/library/article_cdo/aid/673063/jewish/Whats-the-value-of-the-biblical-half...
1•teleforce•17m ago•0 comments

Show HN: GetBlocked – a local-only Chrome extension for blocking web trackers

https://github.com/alex-w-developer/GetBlocked/
6•sudo_cowsay•22m ago•3 comments

Indus civilisation reveals its volumetric system

https://www.thehindu.com/news/national/Indus-civilisation-reveals-its-volumetric-system/article16...
1•teleforce•24m ago•0 comments

Evolving the Node.js Release Schedule

https://nodejs.org/en/blog/announcements/evolving-the-nodejs-release-schedule
1•thunderbong•24m ago•0 comments

Greatgramps: A static site generator for GRAMPS family trees

https://bennuttall.com/blog/2026/06/greatgramps/
1•benn_88•26m ago•0 comments

Join .agent – Pre-Register Your Domain Free

https://agentcommunity.org/join
2•Anon84•33m ago•0 comments

The State of the AI Economy

https://intelligence.exponentialview.co/
2•marc__1•33m ago•0 comments

How a Star Wars Lego Dispute Triggered an Armed Police Raid in Utah

https://www.wsj.com/us-news/how-a-star-wars-lego-dispute-triggered-an-armed-police-raid-in-utah-c...
1•fortran77•34m ago•1 comments

Building While Becoming

https://pushapaula.substack.com/
2•paulawp•35m ago•0 comments

The Supreme Court's Era of Meaningless Rights

https://www.theatlantic.com/ideas/2026/06/supreme-court-decisions-unenforceable-rights/687713/
1•paulpauper•37m ago•0 comments

Show HN: I scanned 87 MCP servers for agent-authority hygiene – leaderboard

https://capframe.ai/leaderboard
1•euan21•38m ago•1 comments

Show HN: Hacker News on a Train Station Style Flip Board

https://popflame.quickish.space/hn-flipboard/
1•PaybackTony•39m ago•1 comments

The Duck Is Growing

https://gemenergyanalytics.substack.com/p/the-duck-is-growing
1•paulpauper•41m ago•1 comments

The State of the AI Economy

https://www.exponentialview.co/p/the-state-of-the-ai-economy
1•paulpauper•41m ago•0 comments

The formation of human populations in South and Central Asia

https://www.science.org/doi/10.1126/science.aat7487
1•teleforce•47m ago•0 comments

Show HN: Hatchr – Share Claude Designs with a public link

https://www.hatchr.link/
1•othmanosx•47m ago•0 comments

Show HN: Noise Lang, JIT stochastic programming language in Rust

https://noiselang.com/
1•manucorporat•49m ago•0 comments

PrismLib – semantic LLM cache and cluster mesh that cuts token spend

https://github.com/insightitsGit/prismlib
2•insightits•49m ago•0 comments

Economists have pushed for prediction markets. They're not what they'd hoped for

https://www.cnn.com/2026/06/21/business/prediction-markets-economists
1•JumpinJack_Cash•50m ago•1 comments

Routing for serverless servers with Pingora, Envoy, and Spanner

https://modal.com/blog/serverless-servers
2•birdculture•51m ago•0 comments

EU Trade Explorer

https://tradedashboard.eu/
1•abracadabrapouf•52m ago•1 comments

Utility for Multi-GPU Node Configuration

https://github.com/rghosh08/nvidia-nvswitch-setup/releases/tag/v0.1.0
2•rghosh8•57m ago•0 comments

Chief Mouser to the Cabinet Office

https://en.wikipedia.org/wiki/Chief_Mouser_to_the_Cabinet_Office
2•modzu•1h ago•0 comments

Build, Don't Posture

https://entertainmentindustry.ai/
3•DavidFrangiosa•1h ago•1 comments

We are capitalist, not socialist

https://www.thepromisetoamerica.com
5•donsupreme•1h ago•8 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.