frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Waymo shipped 3200 CN-built EVs to LA for its fleet despite 127.5% tariffs

https://finance.yahoo.com/technology/articles/waymo-shipped-3-200-chinese-163000266.html
1•Markoff•8m ago•1 comments

Concurrent Servers: Part 7 – Rust

https://eli.thegreenplace.net/2026/concurrent-servers-part-7-rust/
2•mfrw•11m ago•0 comments

So You Want to Build an A.I. Star?

https://www.nytimes.com/2026/08/13/arts/ai-podcasts-fashion-pop-avatars.html
2•thm•19m ago•0 comments

I made Claude port omawrite to windows

https://github.com/WhiskeyTuesday/omawrite-win
1•whiskeytuesday•24m ago•1 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
1•KiaanKothari•25m ago•0 comments

A Walkable ASCII Cyberpunk City in One HTML File

https://www.youtube.com/watch?v=3YtygAx_C6A
3•keithcarolus•25m ago•0 comments

The Orwellian Company Behind ICE's New Electric Shock Gloves

https://www.motherjones.com/politics/2026/08/ice-shock-gloves-torture-compliant-technologies-jeff...
4•cwillu•27m ago•2 comments

Understanding the HEIC Format

https://sites.google.com/view/heictools-io/home
2•suolex•29m ago•2 comments

Why Ethereum Walked Away from Poseidon

https://twitter.com/ProjectZKM/status/2088320035970330676
2•_alphageek•30m ago•1 comments

Serverless Agents

https://serverlessagent.dev
3•iacguy•41m ago•0 comments

Satellite operators emphasize launch deals in a constrained market

https://spacenews.com/satellite-operators-emphasize-launch-deals-in-a-constrained-market/
3•alainrk•41m ago•0 comments

Trillion-Parameter Sequential Transducers for Generative Recommendations (2024)

https://arxiv.org/abs/2402.17152
1•peter_d_sherman•47m ago•0 comments

Show HN: Earn 41% Commission: German Language Learning

https://languagemaster.org/affiliate/
1•not_wowinter13•54m ago•0 comments

Hayden Panetierre Dies at 36

https://abcnews.com/US/hayden-panettiere-dies-36/story?id=135698473
4•fagnerbrack•55m ago•6 comments

Idea for Expository AI

1•E-Reverance•1h ago•0 comments

Claude Code "Feature Request: Support Agents.md": Closed as Completed

https://github.com/anthropics/claude-code/issues/6235
2•deaux•1h ago•1 comments

draw.city – Daily geography game where you circle the target population [US]

https://draw.city/
2•NameError•1h ago•1 comments

how the internet makes us bad at watching stuff [video]

https://www.youtube.com/watch?v=Gqjb1DvjAnI
1•striking•1h ago•0 comments

A Structural Explanation of the Undecidability of the Halting Problem in TM

https://bfzhao.substack.com/p/a-structural-explanation-of-the-undecidability
3•bingfeng•1h ago•0 comments

Cursor earns AIUC-1 certification for agent security and reliability

https://cursor.com/blog/aiuc-1
1•dhruv3006•1h ago•0 comments

PawPause: Mac app that pauses the keyboard when your cat walks on it

https://miladsafarzadeh1.github.io/PawPause-mac/
1•LouisLazaris•1h ago•0 comments

Anthropic revenue jumps 14x to more than $11.5B in second quarter

https://www.bloomberg.com/news/articles/2026-08-14/anthropic-revenue-ahead-of-ipo-surges-over-14-...
3•ukuina•1h ago•0 comments

Ask HN: Claude Desktop Weird Behavior

1•ikeee•1h ago•0 comments

US Air Force jet engine manufacturing plagued by 'significant challenges'

https://www.militarytimes.com/industry/techwatch/2026/08/03/us-air-force-jet-engine-manufacturing...
5•toomuchtodo•1h ago•1 comments

AI Is Helping Patients Solve Medical Mysteries

https://www.wsj.com/health/ai-is-helping-patients-solve-medical-mysteries-3c2d7c25
3•toomuchtodo•1h ago•0 comments

Database-less link shortener and compressor

https://github.com/p2r3/ha.mr
2•rfarley04•1h ago•0 comments

Which countries have passed peak population?

https://ourworldindata.org/which-countries-have-already-passed-peak-population-and-when-will-the-...
6•soheilpro•1h ago•2 comments

Gmail might partially be to blame for receiving emails from other Sean Conners

https://boston.conman.org/2026/08/11.1
19•dmarto•1h ago•15 comments

A friend would not stop talking stocks; wrote stock program for engagement

https://store.amfile.org/product.php?id=prod_6a7f41d5b65770.11390317
2•pagetelegram•1h ago•1 comments

Level1Techs Can't Disprove Google's GDPR AI Studio Violation

https://forum.level1techs.com/t/google-illegally-retains-customer-data-and-i-am-taking-legal-acti...
3•Bitu79•1h ago•2 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.