frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I've built an iOS app to spoof location, no PC needed

1•alienshello•2m ago•0 comments

Skill for generating cheatsheet PDF optimized for the reMarkable eink

https://github.com/Deca/remarkable-cheatsheet
1•Decag•3m ago•0 comments

How much compute does the world need?

https://www.ft.com/content/a5475746-510b-4b3f-8039-3fea1fb7c207
1•1vuio0pswjnm7•3m ago•0 comments

US strikes Iran in response to drone strike on commercial ship

https://www.aljazeera.com/news/2026/6/26/us-strikes-iran-in-response-to-drone-strike-on-commercia...
1•thisislife2•4m ago•0 comments

OpenTag: An open-source alternative to Claude in Slack

https://github.com/CopilotKit/OpenTag/
2•davidmckayv•5m ago•0 comments

Anthropic Moves Toward Deal with US to Lift Curbs on AI Models

https://www.bloomberg.com/news/articles/2026-06-26/anthropic-moves-toward-deal-with-us-to-lift-cu...
1•mfiguiere•14m ago•0 comments

The action is off-balance sheet

https://marginpoints.substack.com/p/the-action-is-off-balance-sheet
1•historian1066•16m ago•0 comments

The Long-Term Threat to the Memory Chip Boom Is Innovation

https://www.wsj.com/finance/the-long-term-threat-to-the-memory-chip-boom-is-innovation-bb289488
2•bookofjoe•18m ago•1 comments

The open source DOCX editor submitted to HN a few weeks ago has been deleted

1•gcanyon•19m ago•1 comments

AI audio translator with speech-to-text, LLM translation, and text-to-speech

https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-content-translator-python
2•sona-coffee11•23m ago•0 comments

Show HN: RevealSafe: Buyer and seller privately submit price; reveal together

https://www.revealsafe.com/
1•wenbin•29m ago•0 comments

Show HN: I made a minimalist travel planner that uses wikvoyage data

https://triptip.cat
2•belforn•32m ago•1 comments

Don't Make Gates Optional, Make Them Flexible

https://wakamoleguy.com/p/flexible-gates
1•wakamoleguy•34m ago•0 comments

Trump Threatens 100% Tariffs over Digital Services Tax on U.S. Firms

https://www.cnbc.com/2026/06/26/trump-tariff-trade-tech-tax.html
5•billybuckwheat•34m ago•0 comments

The AI-Run Business Index: measuring execution, not AI adoption

https://www.leapd.ai/resources/state-of-ai-run-businesses-2026
2•Cyrus2050•35m ago•2 comments

Show HN: Even, the terminal-first desktop workspace

https://eventerm.com/
1•todience•35m ago•0 comments

Font-Family Recommendations

https://chrismorgan.info/font-family
2•birdculture•36m ago•0 comments

The Thing We All Obviously Want

https://kmicinski.com/thing-we-all-want
1•matt_d•36m ago•0 comments

Ask HN: Can distributed data centers in individual households provide UBI?

1•SuboptimalEng•39m ago•5 comments

Ask HN: If we could remake Linux in 2026, what would you change?

1•alonsovm44•39m ago•2 comments

Pystd, similar-ish functionality with a fraction of the compile time

https://nibblestew.blogspot.com/2026/06/pystd-standard-library-similar-ish.html
5•ibobev•40m ago•0 comments

The Dottie Number

https://lawrencecpaulson.github.io//2026/06/26/Dottie_Number.html
1•ibobev•45m ago•0 comments

Show HN: Forensic stock analysis from SEC filings, no LLM guessing (free)

https://stockonomy.net/proof
1•SEC_Lense•47m ago•0 comments

Show HN: Deskmate Live – AI Desktop Pet Companions

https://deskmatelive.com/
1•valisvalis•47m ago•0 comments

The Nationwide Backlash Against Cameras Watching Your Car

https://www.wsj.com/us-news/the-nationwide-backlash-against-cameras-watching-your-car-401a656a
6•JumpCrisscross•50m ago•1 comments

SpaceX bonds sell off days after AI and rocket group's $25B debt deal

https://www.ft.com/content/04f98e21-4ce7-43d2-8651-44557e12c31c
3•JumpCrisscross•52m ago•0 comments

President warns of 100% tariff on countries implementing digital services tax

https://www.ft.com/content/5d886d47-c509-44a4-9077-bcd25158b61e
7•JumpCrisscross•54m ago•1 comments

AgentKits – 60 production-ready AI agent blueprints with guardrails

https://www.agent-kits.com
2•stoicstoic•54m ago•0 comments

The National Parks Were Reportedly Told to Stay Silent on Deaths

https://www.outsideonline.com/outdoor-adventure/environment/nps-internal-memo-deaths/?link_source...
20•LostMyLogin•54m ago•2 comments

A C++ implementation of a fast hash map and hash set using hopscotch hashing

https://github.com/Tessil/hopscotch-map
19•gjvc•55m ago•1 comments
Open in hackernews

Literate Programming in the Age of LLMs

https://github.com/benatfroemming/explicode
2•ben77777•1h ago

Comments

ben77777•1h ago
Donald Knuth introduced literate programming in 1984 with a simple argument: software should be written primarily as a human-readable narrative, not just a set of machine instructions. Despite many attempts, the idea never fully stuck.

LLMs introduce a third audience: the coding agent. From experience, lack of documentation causes agents to hallucinate and make wrong assumptions. This got me thinking, how do you optimize code for all three readers at once?

This led me to build Explicode, an open-source modern take on literate programming focused on simplicity and flexibility. The core idea: enable Markdown inside code comment blocks. Comments are ignored at runtime, so the machine is unaffected. They live next to the code and version with Git, so agents always have full context. And they can be rendered into clean, rich documents for humans, including links, images, diagrams, and math. Currently, Explicode comes as a VS Code extension to preview docs live as you write in your IDE, no config required, and 15+ programming languages are supported. It also ships with an agent skill file to teach tools like Claude and Cursor to write Explicode-style comments automatically.

What do you think, is optimizing for agents a strong enough reason for literate programming to finally catch on? If you have time to check out the project, any feedback or contributions are hugely appreciated.