frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Implementing Standard.site on a Nonstandard Site

https://www.coryd.dev/posts/2026/implementing-standardsite-on-a-nonstandard-site
1•cdrnsf•4m ago•0 comments

JPMorgan, BofA and Others Explore Buying Card Network to Raise Debit-Card Fees

https://www.wsj.com/finance/banking/jpmorgan-bank-of-america-and-other-banks-explore-a-deal-to-sh...
4•JumpCrisscross•6m ago•0 comments

AI tool got me 12,000 new clicks from Google

https://twitter.com/fba/status/2074541708218351872
1•fba0•8m ago•0 comments

SpaceX Shares Stumble in Nasdaq-100 Debut

https://www.wsj.com/finance/stocks/spacex-shares-stumble-in-nasdaq-100-debut-9ec10565
3•JumpCrisscross•10m ago•0 comments

More Americans Are Moving Away from Flood Risk Than Toward It

https://www.bloomberg.com/news/articles/2026-06-24/flood-prone-us-counties-lose-residents-as-risk...
3•petethomas•12m ago•0 comments

The Case for Service-to-Service GraphQL

https://blog.larah.me/service-to-service-graphql/
2•markl42•13m ago•0 comments

Yggdrasil Agent: general purpose, parallel and adaptive reasoning depth

https://yggdrasilagent.com/
2•grasant•16m ago•0 comments

Show HN: OCR Buddy: local browser OCR for code, formulas (LaTeX) and tables

https://github.com/Fanfulla/OCR-buddy
2•Fanfulla•16m ago•0 comments

ASRock Rack Had One of the First Arm AGI Servers at Computex 2026 – ServeTheHome

https://www.servethehome.com/asrock-rack-had-one-of-the-first-arm-agi-servers-at-computex-2026/
4•rbanffy•20m ago•0 comments

Chinese AI models are gaining ground with U.S. companies as costs surge

https://www.cnbc.com/2026/07/07/chinese-ai-models-costs-us-openai-anthropic.html
3•herbertl•22m ago•0 comments

Show HN: Workflowy but Open Source

https://twitter.com/CameronPak/status/2074262605779124317
2•campak•24m ago•1 comments

Meta accused of discriminating against non-Chinese workers in latest layoff

https://old.reddit.com/r/cscareerquestions/comments/1uq4a92/meta_accused_of_discriminating_agains...
4•PieUser•25m ago•1 comments

IBM Expands Z17 and LinuxONE 5 Mainframe Lineups with Single Frame and Rackmount

https://www.servethehome.com/ibm-expands-z17-and-linuxone-5-mainframe-lineups-with-single-frame-a...
2•rbanffy•29m ago•0 comments

Choosing a Claude model and effort level in Claude Code

https://claude.com/blog/claude-model-and-effort-level-in-claude-code
4•geoffbp•30m ago•0 comments

Rumik: Voice AI

https://rumik.ai/
2•handfuloflight•30m ago•1 comments

On-call Engineer 2026 by Kai Lentit [YouTube]

https://www.youtube.com/watch?v=sY1UqUuBqQQ
2•thinkmassive•31m ago•0 comments

Chinese memory and storage firm expected to more than 60k% jump in profits

https://www.tomshardware.com/tech-industry/chinese-memory-and-storage-firm-expected-to-post-more-...
3•rbanffy•32m ago•0 comments

I coded a shoot 'em up alone at 18 after learning Lua in a single week

2•DamixLord•34m ago•1 comments

Show HN: Backlog – tasks and contexts manager for AI coding agents

https://github.com/mazen160/backlog
3•mazen160•40m ago•0 comments

Show HN: Instant GraphRAG over any Postgres database

https://polygres.com
3•daleverett•42m ago•2 comments

Agent Name Service: The universal AI Agents identity system

https://opensourcewatch.beehiiv.com/p/agent-name-service-the-universal-ai-agents-identity-system
3•CrankyBear•45m ago•0 comments

The End of Compute Scarcity? Not So Fast

https://cloudedjudgement.substack.com/p/clouded-judgement-7326-the-end-of
3•gmays•46m ago•0 comments

Omnibaas, a provider-agnostic Infrastructure-as-Code compiler for BaaS services

https://github.com/davidecampora/Omnibaas
3•davidecampora•46m ago•2 comments

Waymo reports teen riders for bad behavior and delivers them to the police

https://www.latimes.com/business/story/2026-07-07/waymo-reports-teen-riders-for-bad-behavior-deli...
16•pilingual•47m ago•2 comments

Fable 5 wrote a Windows kernel in 38 minutes

https://tolmo.com/blog/when-the-model-writes-the-kernel/
4•adolfoabegg•48m ago•2 comments

An agent in 100 lines of Lisp

https://thebeach.dev/posts/lisp-agent/
4•jamiebeach•49m ago•0 comments

Acceleration without fuel: superconducting thruster uses Earth's magnetic field

https://www.space.com/technology/acceleration-without-fuel-revolutionary-superconducting-thruster...
2•svggrfgovgf•50m ago•1 comments

Rejected Emoji Proposals

https://charlottebuff.com/unicode/misc/rejected-emoji-proposals/
3•gaws•50m ago•1 comments

Get recommended a cheaper model with this skill

https://www.rightmodeler.com
2•piyussh•51m ago•0 comments

Private Messaging App Isn't WhatsApp or Signal, It's Delta Chat

https://lifehacker.com/tech/delta-chat-messaging-app-privacy
4•aslandb•52m 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.