frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mapping CVEs to Mitre ATT&CK Techniques

https://arxiv.org/abs/2607.25572
2•adulau•9m ago•1 comments

Folding Paper Globes

https://foldingglobes.com/globes
2•dango2506•10m ago•0 comments

U of T mathematician Jacob Tsimerman awarded prestigious Fields Medal

https://www.utoronto.ca/news/nobel-prize-mathematics-u-t-mathematician-jacob-tsimerman-awarded-pr...
1•gregsadetsky•11m ago•0 comments

Chemical recycling plants closing in EU and US

https://www.chemistryworld.com/news/chemical-recycling-plants-closing-in-eu-and-us/4023904.article
2•latexr•17m ago•0 comments

Preempting the Prefill

https://inmyhead.is/blog/preempting-the-prefill-part-1/
3•adityau19•17m ago•0 comments

Claude Chat Container

https://claude.ai/share/24074801-092c-4a9c-970f-e533f58e88cd
3•_continuation•20m ago•1 comments

Security Determination on the Threat Posed by Foreign-Produced Power Inverters [pdf]

https://www.fcc.gov/sites/default/files/power-inverter-fcc-determination.pdf
1•Stevvo•27m ago•0 comments

Google rivals line up seeking damages after record $1B EU fine

https://www.reuters.com/legal/litigation/google-rivals-line-up-seeking-damages-after-record-1-bil...
3•1vuio0pswjnm7•29m ago•0 comments

Why Christopher Nolan shot "The Odyssey" on IMAX film [video]

https://www.youtube.com/watch?v=1GEqDZ3hQSo
1•handfuloflight•30m ago•0 comments

eBay pays $46M to journalists it targeted in harassment campaign

https://arstechnica.com/tech-policy/2026/07/ebay-former-execs-pay-56m-to-settle-bloody-pig-mask-h...
4•robin_reala•31m ago•1 comments

Dreams Drain Energy: The REM Sleep Paradox

https://www.tohoku.ac.jp/en/press/dreams_drain_energy_the_rem_sleep_paradox.html
2•giuliomagnifico•31m ago•0 comments

Raw Data, Wrong Answers

https://www.theclimatebrink.com/p/raw-data-wrong-answers
1•adrianN•31m ago•0 comments

Web Rendering in Iced: What Works

https://gofranz.com/blog/web-rendering-in-iced-what-actually-works/
1•chironjit•33m ago•0 comments

Kids who own phones have poorer reading comprehension scores than those who dont

https://newsroom.ucla.edu/releases/owning-a-cell-phone-associated-with-poorer-reading-comprehensi...
2•JeanKage•34m ago•0 comments

Paseo: Open-source desktop and mobile app for TUI coding agents (Codex, CC)

https://paseo.sh/
1•maxloh•34m ago•0 comments

Towards Automating Eval Engineering

https://twitter.com/Vtrivedy10/status/2079976006644072796
1•gmays•35m ago•0 comments

Show HN: FOSS sandbox platform for zero trust remote access without secrets

https://github.com/octelium/cordium
1•geoctl•36m ago•0 comments

Google reported its first negative quarter since going public

https://finance.yahoo.com/technology/ai/articles/google-spent-490-million-day-163000234.html
4•mgh2•41m ago•1 comments

Grammar.lol: open-source Grammarly using existing ChatGPT or Grok Subscription

https://grammar.lol
2•KitN•42m ago•1 comments

WhatsApp Opening:Threema Rejects Integration Not Just Because of Data Protection

https://www.heise.de/en/news/WhatsApp-Opening-Threema-Rejects-Integration-Not-Just-Because-of-Dat...
1•Markoff•43m ago•1 comments

New airliner sets record flying 24 hrs nonstop from Australia to France

https://arstechnica.com/gadgets/2026/07/new-airliner-sets-record-flying-24-hrs-nonstop-from-austr...
8•divbzero•58m ago•1 comments

Show HN: PR review time decreased by N3MO:impact analyzer (15 days free trial)

https://n3mo.vercel.app
2•RajX_dev•59m ago•1 comments

PJM board proposes backstop capacity auction, data center curtailment plans

https://finance.yahoo.com/energy/articles/pjm-board-proposes-backstop-capacity-100932204.html
2•measurablefunc•1h ago•0 comments

China tests largest superconducting fusion magnets ever built

https://theprint.in/india/breakthrough-china-artificial-sun-project-6-5-tesla-magnet/2999321/
6•soniman•1h ago•0 comments

More Tailscale tricks for your jailbroken Kindle

https://tailscale.com/blog/jailbroken-kindle-proxy-tun-modes
52•Error6571•1h ago•3 comments

Show HN: Firemaps Spain – Live wildfire map with wind flow for ES and PT

https://firemapsspain.online/
2•kalamarico•1h ago•0 comments

Manganin: Tools Matter

https://blog.manganin.dev/blog/tools-matter/
2•ai2027•1h ago•0 comments

Israel Is Paying Millions to Train AI Chatbots How to Talk About Gaza

https://www.dropsitenews.com/p/israel-brad-parscale-ai-chatbots-gaza
16•jaykru•1h ago•2 comments

Cross-platform Shadow AI: Find, score, and report unmanaged AI

https://www.npmjs.com/package/@guardion/shadow-ai
2•rflsandroni•1h ago•0 comments

Show HN: Wordknots

https://wordknots.barapa.dev/
2•barapa•1h 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.