frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Art of the Problem Launches $99 AI bot

https://artoftheproblem.com/pages/growbot-preview
1•britcruise•1m ago•0 comments

Have a Question? Ask Jev

https://askjev.net/
1•notrob•1m ago•0 comments

Ax: Google's Open Agentic Orchestrator

https://github.com/google/ax
1•thebeardisred•4m ago•0 comments

The Cultural Leadership Fund (2018)

https://a16z.com/introducing-the-cultural-leadership-fund/
1•alex-hall•8m ago•0 comments

Farhud memories: Baghdad's 1941 slaughter of the Jews

https://www.bbc.com/news/world-middle-east-13610702
1•marysminefnuf•9m ago•0 comments

Farhud

https://en.wikipedia.org/wiki/Farhud
2•marysminefnuf•9m ago•0 comments

Meta launches fresh legal challenge over UK's Online Safety Act

https://www.ft.com/content/c1ba743f-7330-4419-bc8d-a8b5ce4420a0
3•bram98•10m ago•0 comments

'Ask for what you want' is a key skill for the 21st century

https://www.robinsloan.com/lab/ask-for-what-you-want/
3•bobbiechen•11m ago•0 comments

A Brief History of Light

https://sites.psu.edu/gopalan/curiosity-corner/light/
3•suopspaces•13m ago•0 comments

What Is Coastline Index and Why Focus Only on Confirmed GTA VI Facts?

3•kydfeng•14m ago•0 comments

World model companies are keeping a lot of secrets

https://techcrunch.com/2026/09/20/world-model-companies-are-keeping-a-lot-of-secrets/
1•ent101•20m ago•0 comments

AI is breaking the academic sorting machine

https://lemire.me/blog/2026/09/20/ai-is-breaking-the-academic-sorting-machine/
1•chmaynard•21m ago•0 comments

A Fresh Start: My Minimalist Blog Redesign After 14 Years

https://bcastell.com/posts/a-fresh-start/
1•Breakthrough•21m ago•0 comments

Reviving Deserts with Syntropic Agroforestry

https://wikifarmer.com/library/en/article/reviving-deserts-with-syntropic-agroforestry
1•lawrenceyan•21m ago•0 comments

Delta (zed.dev) – Help understanding ToS

https://zed.dev/terms#41-zeds-use-of-customer-data
2•maxpicklez•23m ago•1 comments

Can I Let My AI Agent Run on Shabbat?

https://www.chabad.org/library/article_cdo/aid/7288064/jewish/Can-I-Let-My-AI-Agent-Run-on-Shabba...
7•some-guy•24m ago•0 comments

Deterministic grounding checks for LLM agents, no LLM in the hot path

https://github.com/polarisbuiltinc-wq/ora-grounding
1•tjsandhu•25m ago•0 comments

When Intelligence Becomes Abundant, Architecture Becomes the Constraint

https://henrymurphy832344.substack.com/p/when-intelligence-becomes-abundant
2•hmurphy100•26m ago•0 comments

Deterministic Core, Non-Deterministic Shell

https://outdata.net/blog/260803
1•brandon_bot•27m ago•1 comments

Fluid Simulation in One Tweet

https://davidar.io/post/fluid
1•E-Reverance•27m ago•0 comments

Why Bother with Lint Rules If AI Writes the Code?

https://allstead.dev/blog/why-lint-when-ai-writes-the-code
1•willio58•33m ago•4 comments

The Great Gatsby

https://calmscroll.com/the-great-gatsby-f-scott-fitzgerald
2•amadeuspagel•36m ago•0 comments

Canada and France to Develop Space Systems

https://www.bloomberg.com/news/articles/2026-09-20/canada-france-to-develop-shared-space-launch-i...
2•Teever•40m ago•0 comments

Open Radar Code Architecture

https://orca.radioglaciology.com/
2•toomuchtodo•49m ago•1 comments

Applesauce: Transparent Compression for Apple File System Compression (AFSC)

https://github.com/Dr-Emann/applesauce
1•colechristensen•53m ago•0 comments

Jev – System-1 Agent Architecture Radar (open-source)

https://github.com/logicrw/awesome-jev-projects
2•noobplus•53m ago•0 comments

Nobel economists throw support behind California billionaire tax

https://www.ft.com/content/94ec0fee-53ab-4d7e-9b17-6b05608ad974
6•paulpauper•54m ago•0 comments

UK productivity grew twice as fast as thought after 2008 financial crisis

https://www.ft.com/content/560fc2ad-5c7e-4878-ae9b-a3183004c394
1•paulpauper•54m ago•1 comments

Jevcache

https://jevcache.sh/
2•handfuloflight•54m ago•0 comments

Victor Hugo Helped Save the Notre-Dame

https://news.artnet.com/art-world/art-bites-victor-hugo-notre-dame-2802365
2•ohjeez•55m ago•1 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.