frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Genesis Mission: AI and Quantum Computing for Scientific Discovery

https://github.com/donutloop/donutloop-genesis/blob/main/README.md
1•donutloop•55s ago•0 comments

Show HN: Made a social media scheduler that doesnt require a subscription

https://www.trypia.app/
1•DevEric•1m ago•0 comments

Ternus to potentially squeeze more out of App Store

https://daringfireball.net/linked/2026/09/06/gurman-schiller-app-store
1•AndrewSwift•4m ago•1 comments

OpenLara ported to ESP32-P4 (No GPU, 30fps software rendering)

https://github.com/alexkid77/openlara_esp32p4
1•alexkid777•4m ago•1 comments

The Dataflow Model Revisited

https://www.vldb.org/pvldb/volumes/19/paper/The%20Dataflow%20Model%20Revisited
1•scott_s•4m ago•0 comments

A2-Full on an ESP32-S3 Shouldn't Fit

https://playtaurus.com/blog/running-nam-a2-full-natively-on-an-esp32-s3
1•arbayi•5m ago•0 comments

The Liberouter Project

https://www.liberouter.org/
1•Bluestein•5m ago•0 comments

Tesla's Cybercab has been deployed, and it's under investigation

https://www.wired.com/story/tesla-cybercab-officially-launches-today-its-already-under-investigat...
1•rbanffy•5m ago•0 comments

Ask HN: What are you working on? (September 2026)

1•meerita•10m ago•0 comments

Science of the Gaps

https://lukesmith.xyz/articles/science-of-the-gaps/
1•airhangerf15•12m ago•0 comments

Valve Handbook [pdf]

https://cdn.fastly.steamstatic.com/apps/valve/Valve_NewEmployeeHandbook.pdf
3•skogstokig•14m ago•0 comments

A State-Driven Flow System for Hash, PRNG and XOF

https://github.com/Ligatum/Lustro
1•Ligatum•14m ago•0 comments

Coffee with capsicum? How data is changing the food on your plate

https://indianexpress.com/article/long-reads/how-ai-data-computational-gastronomy-redefining-flav...
1•thunderbong•15m ago•0 comments

Choosing a Framework Desktop for Local AI: 32GB, 64GB, and 128GB

https://frame.work/pl/en/blog/choosing-a-framwork-desktop-for-local-ai
2•rdslw•18m ago•0 comments

Measuring benchmark optimization in speech recognition

https://huggingface.co/blog/asr-benchmark-optimization
2•gmays•19m ago•0 comments

Kiyosaki, Rich-Dad-Poor-Dad author, is 1.2B in debt

https://www.vanityfair.com/story/the-wild-origins-of-rich-dad-poor-dad
3•KellyCriterion•20m ago•0 comments

Show HN: YouAskTube: Type Ask in URL for Anon YT Chat

https://youasktube.com/
1•BitVibeLabs•22m ago•0 comments

I Wrote My First Book Like a Puzzle

1•JRCrest•23m ago•0 comments

Following legal advice, the Nitter project will continue

https://github.com/zedeus/nitter
28•Cider9986•24m ago•2 comments

Nitter is unarchived and will continue

https://github.com/zedeus/nitter/commit/1428b4c2b4246f92a7e5b2673438e5fb39fcc4a3
5•zImPatrick•25m ago•0 comments

I threw a ton of various logic puzzles at Astra and it solved of them

https://twitter.com/fakepsyho/status/2096588951251243219
1•stared•26m ago•0 comments

Scunthorpe Problem

https://en.wikipedia.org/wiki/Scunthorpe_problem
1•chistev•28m ago•0 comments

Scott Galloway issues grim SpaceX stock price forecast

https://www.thestreet.com/investing/stocks/spcx-scott-galloway-spacex-stock-price-target-forecast
1•yogthos•28m ago•0 comments

Designing physics experiments with artificial intelligence

https://www.nature.com/articles/s41586-026-10898-6
1•bookofjoe•29m ago•0 comments

AAIF Ecosystem Landscape Map

https://aaif.github.io/ws-taxonomy-landscape/landscape/
1•mooreds•32m ago•0 comments

Liquid Types. (2008) [pdf]

https://patrickrondon.com/research/papers/liquid-types-pldi08.pdf
1•fanf2•33m ago•0 comments

The Cone of Plausibility

https://substack.com/@drexdsgn/note/c-326376193
1•hakkikonu•34m ago•0 comments

Forte UI – React components whose palette derives from one CSS variable

https://forte-ui.com/
1•arsenghazaryan•34m ago•0 comments

Is Education for Industry or for Thinking?

https://candost.blog/journal/education-for-industry/
1•mooreds•35m ago•0 comments

Bigger Is Not Better

https://huntersoftwareconsulting.com/posts/2026-09-06-bigger-is-not-better/
1•mooreds•36m 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.