frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Caroline affair – eventually influencing the development of international law

https://en.wikipedia.org/wiki/Caroline_affair
1•vinnyglennon•2m ago•0 comments

Show HN: WingNews – Htmx Hacker News Reader

https://news.wingman.actor/
1•ChaseRensberger•3m ago•0 comments

AI Doesn't Remember Yesterday. How to Design Team Memory for AI Workflows

https://github.com/htuzel/flalingo-mem-bridge
1•htuzel•3m ago•0 comments

Ask HN: Wish Linux tmpfs support compression option

1•gry_gh•3m ago•0 comments

Howard Abrams' Literate Programming with Org Mode [video]

https://www.youtube.com/watch?v=OUuz9-CtCwY
1•todsacerdoti•7m ago•0 comments

My SoC Analyst Writeup – Support by star, thanks guys

https://github.com/ogtamimi/SOC-Analyst-WriteUp-LetsDefend.io
1•ogtamimi•8m ago•0 comments

Create PDF Resume

https://createpdfresume.com/
1•tahirasadov•11m ago•0 comments

All of you doubted me, and said I was hallucinating on AI

https://ryanshamim.substack.com/p/the-inference-efficiency-paradox
1•anima-core•12m ago•1 comments

Tech titans vow to 'take back' California

https://nypost.com/2026/03/05/us-news/tech-titans-vow-to-take-back-california-from-lefties-call-o...
1•mudil•14m ago•0 comments

First Aptera Solar EV Rolls Off Validation Assembly Line

https://aptera.us/first-vehicle-off-validation-line/
1•TeaVMFan•15m ago•0 comments

Show HN: Yappy – A Python TUI to automate LinkedIn yapping

https://github.com/JienWeng/yappy
2•jienweng•32m ago•0 comments

Shut Up and Take My Money

https://lorendb.dev/posts/shut-up-and-take-my-money/
2•LorenDB•36m ago•0 comments

Spell UI

https://spell.sh/
1•handfuloflight•37m ago•0 comments

Show HN: Swarm – Program a colony of 200 ants using a custom assembly language

https://dev.moment.com/
6•armandhammer10•39m ago•2 comments

Show HN: Custom Search Engine on Safari and Spotlight (macOS)

https://knhash.in/custom-search-engine-on-safari-and-spotlight-macos/
2•knhash•39m ago•0 comments

Show HN: SafeAgent – exactly-once execution guard for AI agents

2•Lions2026•39m ago•0 comments

Enhanced brain cells clear away dementia-related proteins

https://medicalxpress.com/news/2026-03-brain-cells-dementia-proteins.html
4•WaitWaitWha•40m ago•0 comments

Google Patent: Sending Searchers to AI-Generated Pages over Your Site

https://www.seroundtable.com/google-patent-ai-generated-pages-search-41010.html
3•frays•42m ago•0 comments

System76 on Age Verification Laws

https://blog.system76.com/post/system76-on-age-verification/
2•LorenDB•42m ago•0 comments

A Technology for a Low-Trust Society

https://www.theatlantic.com/technology/2026/03/central-lie-prediction-markets/686250/
3•CaptainZapp•45m ago•0 comments

Tollund Man

https://en.wikipedia.org/wiki/Tollund_Man
1•thunderbong•50m ago•0 comments

Show HN: Steadwing – Your Autonomous On-Call Engineer

https://www.steadwing.com/
4•abejith•52m ago•0 comments

Show HN: Verak – Fake Seller Detection for Digital Marketplaces

https://www.verak.io/demo
1•Mikewillcodes•53m ago•0 comments

One Agent SDK – Embed Claude Code in Your App with Codex and Kimi

https://odysa.github.io/one-agent-sdk/
2•agentforce•53m ago•1 comments

Don't Call It 'Intelligence'

https://www.theatlantic.com/ideas/2026/03/intelligence-concept/686121/
2•petethomas•53m ago•0 comments

Parakaryon: The only species with a unknown position in the tree of life

https://en.wikipedia.org/wiki/Parakaryon
1•icwtyjj•53m ago•0 comments

Warden by Sentry

https://warden.sentry.dev/
1•handfuloflight•54m ago•0 comments

Show HN: kg Food Log: Reveal the molecules in your foods

https://kg.enzom.dev/
2•emadda•54m ago•0 comments

On the need for a censorship API for legal compliance in some regions

https://lists.debian.org/debian-legal/2026/03/msg00018.html
2•iamnothere•55m ago•1 comments

Breaking Down 50M Pins: A Smarter Way to Design 3D IC Packages

https://www.allaboutcircuits.com/industry-articles/breaking-down-50-million-pins-a-smarter-way-to...
2•WaitWaitWha•57m 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•10mo ago

Comments

uticus•10mo 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.