frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Lotus: Optimized Agentic and LLM Bulk Processing

https://github.com/lotus-data/lotus
1•handfuloflight•1m ago•0 comments

The end of paper retirement processing at the Office of Personnel Management

https://twitter.com/spikebrehm/status/2072422555101561154
2•MrBuddyCasino•7m ago•0 comments

Hackers On Planet Earth is back in Manhattan next month

https://www.hope.net/
1•fashiontechguru•10m ago•1 comments

GPT-5.5-Cyber built a zlib fuzzing lab in a day

https://blog.trailofbits.com/2026/07/02/field-reports-from-patch-the-planet/
1•wslh•12m ago•0 comments

Don't Train the Model, Evolve the Harness

https://huggingface.co/spaces/joelniklaus/harness-optimization
1•emersonmacro•13m ago•0 comments

Automated Accounting, Financial Reporting and Tax Management

https://maxint.com/blog/maxint-2-24-release
1•pcvetkovski•18m ago•0 comments

Trump's Windfall Has Few Known Global Precedents

https://www.nytimes.com/2026/07/02/world/europe/trump-world-leaders-corruption-wealth.html
2•Alien1Being•19m ago•0 comments

Ask HN: Once you make your money from vibe coding innumerable products, then?

1•keepamovin•25m ago•0 comments

Private Credit Keeps $14B Trapped in Bid to Outlast Storm

https://www.bloomberg.com/news/articles/2026-07-02/private-credit-keeps-14-billion-trapped-in-bid...
1•petethomas•25m ago•0 comments

Ask HN: How do you get your open-source product good traction?

1•akarshhegde18•25m ago•1 comments

Blue Owl hit by $4.7B of redemption requests as investor exodus persists

https://www.ft.com/content/b302a86d-f6eb-4d47-b90b-523c1c19b3fa
1•petethomas•26m ago•0 comments

'Humanity is a privilege': Umar Khalid on his six years in a jail without trial

https://www.theguardian.com/world/2026/jun/30/umar-khalid-interview-six-years-indian-jail-without...
2•thunderbong•27m ago•0 comments

Using precision editing to study human embryo development shows master gene

https://www.cam.ac.uk/research/news/first-use-of-precision-editing-to-study-human-embryo-developm...
2•gmays•33m ago•0 comments

Open letter to Anthropic: keep Claude Fable 5 in existing paid plans

https://keepfable.org
2•SpitSalute•35m ago•1 comments

FlickerScope – are your LEDs giving you a headache? stop guessing

https://github.com/snokamedia/flickerscope
1•snoka•40m ago•0 comments

Wikipedia Is Up (2001)

https://web.archive.org/web/20010506042824/www.nupedia.com/pipermail/nupedia-l/2001-January/00068...
2•downbad_•41m ago•0 comments

A few thought about snarky answers on StackOverflow (2019)

https://www.cargocultcode.com/solving-the-zalgo-regex/
1•downbad_•42m ago•0 comments

Tradeoffs in Complexity, Abstraction, and Generality

https://www.lesswrong.com/s/EL2YvcrPNHrGgzPnZ/p/HNJwteaxpRYfLaQt7
1•parksb•42m ago•0 comments

Google's exponential path to climate-wrecking digital bloat

https://ketanjoshi.co/2026/07/01/googles-exponential-path-to-climate-wrecking-digital-bloat/
2•colinprince•44m ago•1 comments

Why AI Is Collapsing: How China Is Winning. [video]

https://www.youtube.com/watch?v=JXJf7vL8k94
1•Bender•45m ago•1 comments

Thanks but No Thanks

https://twitter.com/xopzuey/status/2072838561275969717
1•znort_•47m ago•2 comments

How Many People Have Ever Lived in the United States?

https://danielfetz.io/p/how-many-people-have-ever-lived-in-the-united-states
1•paulpauper•52m ago•0 comments

AI is 'not smart' so what's next in artificial intelligence?

https://www.bbc.com/news/articles/cj6gr0xkyr3o
3•1vuio0pswjnm7•54m ago•0 comments

Core dump epidemiology: fixing an 18-year-old bug

https://openai.com/index/core-dump-epidemiology-data-infrastructure-bug/
2•stopachka•55m ago•0 comments

I vibe coded a programming language, but I'd rather learn C the old way

1•alonsovm44•56m ago•0 comments

Some Basic LLM Etiquette

https://steenbok.space/blog/ai-etiquette/
1•sporkl_l•57m ago•0 comments

How AI Became More Expensive Than the Workers It Replaced [video]

https://www.youtube.com/watch?v=cfaZZPjA3g0
1•Bender•58m ago•0 comments

The Safari MCP server for web developers

https://webkit.org/blog/18136/introducing-the-safari-mcp-server-for-web-developers/
2•coloneltcb•59m ago•0 comments

Ask HN: Best Local LLM Setup for a 128GB M4 Max Mac Studio?

2•linzhangrun•1h ago•0 comments

Seeing and Being Seen

https://www.sambish.com/essays/seeing/
2•sambishop•1h ago•0 comments
Open in hackernews

Programming from the Ground Up [pdf] (2003)

https://download-mirror.savannah.gnu.org/releases/pgubook/ProgrammingGroundUp-1-0-booksize.pdf
4•ibobev•1y ago

Comments

uticus•1y ago
> At the end of them you can still ask "how does the computer really work?" and not have a good answer. They tend to pass over topics that are difficult even though they are important. I will take you through the difficult issues because that is the only way to move on to masterful programming

> This book teaches assembly language for x86 processors and the GNU/Linux operating system. Therefore we will be giving all of the examples using the GNU/Linux standard GCC tool set.

interesting, close to the machine to teach how the machine works while also pulling in programming concepts.

> Thus, programming is not as much about communicating to a computer as it is communicating to those who come after you.

100% - unfortunately the content is light or non-existent on concepts i would say are essential to this part of programming, like:

- how to set up code to be easily maintained

- how to navigate code from others, especially those who don't think like you

- how to collaborate with others to create a program as a team

- etc

...would be interesting to see how the author would pair these concepts with x86 assembler examples.