frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Intel Binary Optimization: Worth it for the few?

https://www.lttlabs.com/articles/2026/04/24/intel-binary-optimization-worth-it
1•LabsLucas•47s ago•1 comments

Use of AI in Indian elections (2026)

https://www.channelnewsasia.com/asia/india-state-elections-ai-use-campaigning-6063751
1•debarshri•1m ago•0 comments

Show HN: Rook, a macOS notes app for developers

1•maryamtb•2m ago•0 comments

Plants Can Hear the Sound of Falling Rain

https://nautil.us/plants-can-hear-the-sound-of-falling-rain-1280186
1•Brajeshwar•2m ago•0 comments

As electric aspirations fade, Porsche sells its stake in Bugatti

https://arstechnica.com/cars/2026/04/as-electric-aspirations-fade-porsche-sells-its-stake-in-buga...
1•Bender•2m ago•0 comments

Styxx – text-only drift detector 0.916 AUC beats hidden-state baseline

https://github.com/fathom-lab/styxx
1•fathomlab•3m ago•0 comments

StreamComments lets you read and write comments while watching Netflix

https://chromewebstore.google.com/detail/streamcomments/bjpolkbchhpfmmiljggomjpojhigkebg
1•sandebert•9m ago•0 comments

Machine learning& gut microbiome pathway analysis in Alzheimer's risk prediction

https://alz-journals.onlinelibrary.wiley.com/doi/10.1002/dad2.70340
1•bookofjoe•10m ago•0 comments

SDL Now Supports DOS

https://github.com/libsdl-org/SDL/pull/15377
1•Jayschwa•10m ago•0 comments

Show HN: MR Links – Inline link references for Marginal Revolution blog posts

https://github.com/donchuru/mr-links
1•nanfinitum•11m ago•0 comments

Show HN: Turn speech into text anywhere via hotkey (runs on Intel NPU, no cloud)

https://github.com/anubhavgupta/whisper-npu
1•anubhav200•12m ago•0 comments

I Turned the Game Boy Color into a Watch

https://www.youtube.com/watch?v=gTUg_NePXy8
1•mehackernewsacc•12m ago•0 comments

Cloud Functions in Firebase now supports Dart as an experimental feature

https://twitter.com/Firebase/status/2047405653879070917
1•nostromoWOWWOW•12m ago•0 comments

Diatec, known for its mechanical keyboard brand FILCO, has ceased operations

https://gigazine.net/gsc_news/en/20260424-filco-diatec/
2•gslin•14m ago•0 comments

Firefox Has Integrated Brave's Adblock Engine

https://itsfoss.com/news/firefox-ships-brave-adblock-engine/
2•eaf7e281•14m ago•0 comments

ReactGhost: Four locations of an unguarded property lookup in React Flight

https://reactghost.com/
1•cybrdude•16m ago•0 comments

Beware Software Brain

https://anderegg.ca/2026/04/23/beware-software-brain
2•Brajeshwar•18m ago•0 comments

Show HN: #1 On This Day

https://onthisday-theta.vercel.app
2•starzmustdie•18m ago•1 comments

Phantom: Web Automation Without a Browser

https://saadnaveed.com/writing/phantom-web-automation-without-a-browser/
1•saadn92•22m ago•0 comments

We are our own worst enemies

https://www.ufried.com/blog/worst_enemies/
2•cdrnsf•24m ago•0 comments

TurboBird – Firebird Database Tool

https://github.com/mdadali/TurboBird
1•mariuz•24m ago•0 comments

Google Plans to Invest Up to $40B in Anthropic

https://www.bloomberg.com/news/articles/2026-04-24/google-plans-to-invest-up-to-40-billion-in-ant...
9•elffjs•26m ago•0 comments

Show HN: Kadō, an open source habit tracker app for iOS

https://github.com/scastiel/kado
3•scastiel•28m ago•0 comments

Visual-base is a second brain from your eyes

https://github.com/oilbeater/visual-base
1•recrush•29m ago•0 comments

I Cancelled Claude: Token Issues, Declining Quality, and Poor Support

https://nickyreinert.de/en/2026/2026-04-24-claude-critics/
17•y42•31m ago•2 comments

Is the Novelty Budget Dead?

https://simonshine.dk/articles/is-the-novelty-budget-dead/
1•sshine•34m ago•0 comments

PGO Build TPC-C Analysis MariaDB v11.8.6 TideSQL

https://tidesdb.com/articles/pgo-build-tpc-c-analysis-mariadb-v11-8-6-tidesql/
1•alexpadula•35m ago•0 comments

LLMs – What Experienced Practitioners See

https://dr-knz.net/llms-in-practice.html
1•knz42•36m ago•1 comments

Ask HN: How does Google crawls x.com website?

1•iaziz786•37m ago•1 comments

Games for Change

https://www.gamesforchange.org/
1•csmillie•39m 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.