frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pine64 hits pause on Linux devices due to RAM and eMMC shortage and high prices

https://www.cnx-software.com/2026/08/19/pine64-hits-pause-on-linux-devices-due-to-ram-and-emmc-sh...
1•mdp2021•1m ago•0 comments

How the brain learns to read is an evolutionary mystery–a new study offers clues

https://www.scientificamerican.com/article/how-the-brain-learns-to-read-is-an-evolutionary-myster...
1•sohkamyung•2m ago•0 comments

Show HN: InferCrane – One stable endpoint for self-hosted AI inference

https://infercrane.com
1•yasintoy•2m ago•0 comments

zai-Org/GLM-5.3

https://huggingface.co/zai-org/GLM-5.3
1•Philpax•2m ago•0 comments

Autistici/Inventati's main .org domain goes dark after US terrorism designation

https://mastodon.bida.im/@cavallette/117172989300228024
1•subvol•3m ago•0 comments

Claude Helped Us Solve a Fluid Mechanics and Electrokinetics Problem

https://ankurg90.github.io/blog/electrophoresis-shape/
1•nilen•3m ago•0 comments

Show HN: Argus, open-source AI agents for testing web apps

https://github.com/argus-testing/argus
1•semioz•3m ago•0 comments

There are four types of AI sandboxes, maybe?

https://edera.dev/stories/the-four-sandbox-markets-a-2x2-hypothesis
1•jspeed-meyers•5m ago•0 comments

Inside Meta's Push to Put Robots to Work in Data Centers

https://www.wired.com/story/inside-metas-experiments-with-data-center-robots/
1•Brajeshwar•5m ago•0 comments

Verschlimmbesserung: The Word Your Software Updates Need

https://geekyschmidt.com/post/2026-08-25-verschlimmbesserung/
2•speckx•6m ago•0 comments

Does Computer Science Need Computers?

https://www.quantamagazine.org/does-computer-science-need-computers-20260828/
2•Tomte•6m ago•0 comments

Free intelligence is getting better

https://notes.npilk.com/free-intelligence
1•npilk•8m ago•0 comments

BPF Token Delegation

https://naveensrinivasan.com/posts/2026-08-27-bpf-token-delegation/
3•snaveen•8m ago•1 comments

NASA's Roman telescope will see 100 times more sky than Hubble

https://www.sciencedaily.com/releases/2026/08/260828082333.htm
3•Aboutplants•8m ago•0 comments

Interview- Hobbit Designer Veronika Megler on Storytelling by Luke C. Jackson

https://ourdigitalheritage.org/hostedArchives/playitagain/interview-with-hobbit-designer-veronika...
1•yubblegum•9m ago•0 comments

An API for wine/spirits/beer data that admits when it doesn't know something

https://api.pinpointed.dev/
1•pinpointed•9m ago•0 comments

Sweetener used in chewing gum and jam linked to strokes and heart attacks

https://www.theguardian.com/society/2026/aug/28/sweetener-xylitol-used-in-chewing-gum-and-jam-lin...
2•samizdis•10m ago•0 comments

Can a harness have a true deterministic scheduler and task orchestrator?

https://github.com/openai/codex/blob/main/codex-rs/core/src/agent/builtins/awaiter.toml
1•hmokiguess•11m ago•1 comments

Kubernetes 1.37 breaking changes: what to check before you upgrade

https://radarhq.io/blog/kubernetes-1-37-breaking-changes
1•nadaverell•12m ago•0 comments

Best workflow engine is a programming language

https://vercel.com/blog/the-best-workflow-engine-is-a-programming-language
1•marcle•12m ago•0 comments

I published an MCP server; 224 bots read its tool list, 4 used a tool

https://thefomite.com/report
1•bryaninbangkok•13m ago•0 comments

Debugging my new network, when 10 Gigabit Ethernet Runs at 300 Megabits

https://www.hanselman.com/blog/debugging-my-new-network-when-10-gigabit-ethernet-runs-at-300-mega...
1•speckx•13m ago•0 comments

ShowHN: X402 trinity the the best payment engine for the agent machine economy

https://github.com/devmster/x402-trinity
1•x402trinity•13m ago•1 comments

Show HN

https://topfloor.company/
1•sankalpdomore•15m ago•0 comments

Schlep Blindness (2012)

https://www.paulgraham.com/schlep.html
1•poly2it•15m ago•0 comments

My retrieval can't tell a question it can answer from one it can't

https://github.com/asanabrial/leteo/blob/main/docs/nothing-worth-tuning.md
1•asanabrial•17m ago•0 comments

God's Eye View

https://github.com/bilawalsidhu/gods-eye-view
2•pelagicAustral•18m ago•0 comments

FDA Failed to Protect Consumers Again. Here's the Latest Proof

https://efoodalert.com/2026/08/27/fda-failed-to-protect-consumers-again-heres-the-latest-proof/
1•speckx•19m ago•0 comments

The Linux Kernel Is Approaching 2k CVEs per Release

https://www.phoronix.com/news/Linux-Kernel-CVEs-Nearly-2000
3•aniviacat•20m ago•0 comments

In Africa, a Growing Underground Solar Boom

https://e360.yale.edu/digest/africa-solar-2026
2•Brajeshwar•20m 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.