frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

FIFA lifts Balogun's World Cup suspension after Trump calls Infantino

https://www.france24.com/en/sport/20260705-fifa-lifts-balogun-world-cup-suspension-trump-call
1•Tomte•9m ago•0 comments

Learn Faster with Your Personal AI Teacher

https://aischoolbuilder.com/school/school-1786
1•bokeke1•12m ago•0 comments

The final voyage of USS Nimitz

https://news.usni.org/2026/07/03/uss-nimitz-an-aircraft-carriers-final-journey
3•Gaishan•19m ago•0 comments

4D-printing method creates lighter, faster-spinning wind turbine blades

https://www.concordia.ca/cunews/encs/2026/07/02/research-new-4d-printing-method-creates-lighter-f...
1•geox•25m ago•0 comments

How AI Poisons Creativity [video]

https://www.youtube.com/watch?v=WeCSzEtZcUw
3•g-andrade•29m ago•0 comments

Cewsco – a multimodal AI assistant powered by Dravik

https://cewsco.com/
1•kalkalka•33m ago•0 comments

Stop Patching the Dammed IoT Kernel – Native Immunity Is the Only Way Out

https://twitter.com/i/status/2073850360771612865
1•xxBoson•39m ago•0 comments

Fable 5 Used to Port Command and Conquer: Generals Zero Hour to iOS

https://twitter.com/ammaar/status/2073501877753323772
1•beatthatflight•42m ago•0 comments

Oatmeal Spice: Interesting Procedurally Generated Output

https://www.boristhebrave.com/2026/07/05/oatmeal-spice/
1•lispybanana•44m ago•0 comments

Hideo Kojima on PlayStation killing discs, 'frightened' for future of ownership

https://www.videogameschronicle.com/news/hideo-kojima-really-sad-about-playstation-killing-discs-...
2•thunderbong•47m ago•0 comments

Bad to worse at NSF? (June 2026 edition)

http://nanoscale.blogspot.com/2026/06/bad-to-worse-at-nsf-june-2026-edition.html
1•osnium123•52m ago•0 comments

Apple sells me a MacBook to deliver $1700; cancels 5 days later quoting $2000?

4•aerodog•52m ago•0 comments

US Car Payments Hit a Record $777 a Month as Down Payments Drop

https://www.bloomberg.com/news/articles/2026-07-01/us-car-payments-hit-a-record-777-a-month-as-do...
3•mattas•54m ago•1 comments

Mondegreen

https://en.wikipedia.org/wiki/Mondegreen
3•JKCalhoun•55m ago•0 comments

YouTube urges creators to fight proposed UK algorithm changes

https://www.dexerto.com/entertainment/youtube-urges-creators-to-fight-proposed-uk-algorithm-chang...
1•thesmtsolver2•1h ago•0 comments

What should a personal website be?

https://ratfactor.com/cards/personal-website
2•vinhnx•1h ago•1 comments

A Novel Look at Error Handling in Rust

https://jtjlehi.github.io/2026/06/25/novel-rust-error-handling.html
2•vinhnx•1h ago•0 comments

Whyline – company memory engine (SQLite, BM25, MCP for Cursor)

https://github.com/Sunradiance/whyline
1•sunradiance•1h ago•0 comments

ABI vs. API (2004)

https://lists.debian.org/debian-user/2004/02/msg00648.html
1•vinhnx•1h ago•0 comments

The White House Campaign to Overturn a World Cup Red Card

https://www.wsj.com/sports/soccer/white-house-fifa-balogun-red-card-world-cup-46276fc8
19•JumpCrisscross•1h ago•2 comments

Designing GPU-Accelerated Query Engines with NVIDIA GQE

https://developer.nvidia.com/blog/designing-gpu-accelerated-query-engines-with-nvidia-gqe/
1•c_lutz•1h ago•0 comments

TaskLoco Is the Sticky Note To-Do App for Visual Thinkers

https://www.taskloco.com/
1•taskloco_nyc•1h ago•0 comments

Nobel Laureate in Chemistry Omar M. Yaghi joins Tsinghua University full-time

https://www.tsinghua.edu.cn/en/info/1244/14984.htm?trk=feed_main-feed-card_feed-article-content
4•osnium123•1h ago•1 comments

Americans of all ages are spending less time socializing

https://www.axios.com/2026/07/05/americans-socializing-decline
1•toomuchtodo•1h ago•0 comments

A Point Of View: How China sees a multicultural world (2012)

https://www.bbc.com/news/magazine-20083309
2•keepamovin•1h ago•1 comments

Android's Earthquake Alerts Saved My Life in Venezuela

https://www.howtogeek.com/androids-earthquake-alerts-saved-my-life-in-venezuela/
3•olgs•1h ago•1 comments

Technical Report on the Pangram AI-Generated Text Classifier (2024)

https://arxiv.org/abs/2402.14873
1•imustachyou•1h ago•0 comments

Can you run every line of code in Super Mario Bros.? [video]

https://www.youtube.com/watch?v=o0gOALTvkcc
2•medbar•1h ago•0 comments

Shrimple – A Simpler, Nicer Markdown

https://qount25.dev/Shrimple/
3•usrbinenv•1h ago•0 comments

McKinsey: Catalyzing competitiveness – Where investment happens and why

https://www.mckinsey.com/mgi/our-research/catalyzing-competitiveness-where-investment-happens-and...
1•TMWNN•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.