frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open-source Zen Engine is out of beta

https://docs.gorules.io/changelog
1•jawns•1m ago•0 comments

Initial focus for our partnership with Motorola is a regular non-folding device

https://grapheneos.social/@GrapheneOS/117136278553665985
1•Cider9986•3m ago•0 comments

In 1957, Disney Built Our Friend the Atom. We Now Need Our Friend the AI

https://medium.com/@chipmunkworks/the-disney-solution-why-silicon-valley-needs-to-build-our-frien...
1•treelover•4m ago•0 comments

Lie Detection and Language Models

https://philosophybear.substack.com/p/lie-detection-and-language-models
1•paulpauper•5m ago•0 comments

Plotter Related Algorithms

https://drawingbots.com/algorithms/
1•msurguy•9m ago•1 comments

Show HN: Pricefight – a website leaderboard where everyone starts at the bottom

https://pricefight.lol/
1•adjohu•11m ago•0 comments

Wind energy offers a lifeline for this Kansas rancher

https://vitalsigns.edf.org/story/wind-energy-offers-lifeline-kansas-rancher
1•thunderbong•12m ago•1 comments

Turn any REST API into the shape of another

https://bryanhu.com/shotgun/
1•thatxliner•16m ago•0 comments

Towards Physics of Multimodal Pretraining

https://arxiv.org/abs/2608.05000
1•gmays•17m ago•0 comments

Touareg CR after missile attack [video]

https://www.youtube.com/watch?v=AmCAjVvaqKE
1•debo_•22m ago•0 comments

Fighting Bot Traffic

https://markustenghamn.com/blog/fighting-bot-traffic
1•sukram•24m ago•0 comments

Whiteboard: Claim Your Pixels

https://whiteboard.lol
1•insomnie•26m ago•0 comments

Vibe coding personal apps in mid-2026

https://www.flourish.org/2026/08/personal-apps/
2•birdculture•27m ago•0 comments

The Horse and Sparrow Economic Theory

http://the13thtribe.blogspot.com/2025/03/the-horse-and-sparrow-economic-theory.html
1•thunderbong•27m ago•0 comments

Passive Investing and the Decline of Active Mutual Fund Alpha

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6902444
1•toomuchtodo•29m ago•1 comments

Underrated Terminal App

https://apps.apple.com/fr/app/onepilot-ssh-shell-terminal/id6759485908
2•elearia•39m ago•0 comments

Show HN: Updating my wedding registry website with AI in 275 commits

https://benhoyt.com/writings/updating-gifty-with-ai/
1•benhoyt•40m ago•0 comments

5 years on, Afghan girls still barred from education under Taliban

https://apnews.com/article/afghanistan-girls-excluded-secondary-education-taliban-618c7f5c7659d43...
2•gmays•41m ago•0 comments

Our classifier scored "I have never seen a shadow figure" as a sighting

https://theanomalynetwork.com/notes/negation
2•kyleclouthier•42m ago•0 comments

MileClerk – Automatic mileage logging and IRS export (MileIQ alternative)

https://mileclerk.onepingfanventure.com/
1•huangheus•43m ago•0 comments

How to Measure Chess Position Complexity

https://chesscheaterdetector.com/blog/how-to-measure-chess-position-complexity/
1•domhudson•45m ago•0 comments

Mockup Nvidia GPUs on Linux systems

https://github.com/rnts08/Mock-nvidia-gpu-linux
3•rnts08•45m ago•1 comments

Ox Alpha Is Performing SOTA and as Well as GPT-5.6 Sol in Multi-Agent Arena

https://twitter.com/olam_labs/status/2090930116138582224
2•sensho•47m ago•1 comments

Show HN: AI driven civic dashboard for Palo Alto

https://paloaltocivic.com
1•brianhama•47m ago•0 comments

Plural Form(s) in Translation(s)

https://doc.qt.io/archives/qq/qq19-plurals.html
1•zebreus•47m ago•0 comments

Intel Hyper Threading Performance on the Xeon 678X "Granite Rapids-WS"

https://www.phoronix.com/review/intel-xeon-678x-ht
1•rbanffy•49m ago•0 comments

Show HN: EchoVault, an app that interviews you and answers as you after death

https://apps.apple.com/us/app/echovault-digital-legacy/id6762042028
1•kingbillion1•50m ago•1 comments

Apt Groups and Operations

https://docs.google.com/spreadsheets/d/1H9_xaxQHpWaa4O_Son4Gx0YOIzlcBWMsdvePFX68EKU/edit
2•gurjeet•51m ago•0 comments

Peanut Allergy? Fecal Transplant Might Be a Solution

https://www.usnews.com/news/health-news/articles/2026-08-06/peanut-allergy-fecal-transplant-might...
2•gmays•52m ago•0 comments

Linus: "A debug session from hell, enormously helped by an AI"

https://github.com/torvalds/linux/commit/818bebeb63dd6bf5f4e07e145f6cdbace520a34c
4•dnw•56m ago•1 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.