frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Hacked into the Worst E-Bike and Fixed It

https://www.youtube.com/watch?v=hPrtVGimBYs
1•tantalor•2m ago•0 comments

Ask HN: Would you switch to a systems language with trivial hot reloading?

1•alonsovm44•3m ago•1 comments

Texas is America Inc's new centre of gravity

https://economist.com/business/2026/05/31/texas-is-america-incs-new-centre-of-gravity
1•andsoitis•4m ago•0 comments

Deaths Projected to Outnumber Births in UK Every Year from 2026

https://www.theguardian.com/world/2026/apr/28/deaths-projected-to-outnumber-births-in-uk-every-ye...
1•karakoram•6m ago•0 comments

Ladybug: DuckDB of Graph Databases

https://ladybugdb.com/
1•prabhurswamy•7m ago•0 comments

You Need to Bring People Along

https://shanemcgraw.substack.com/p/you-need-to-bring-people-along
1•samcgraw•8m ago•0 comments

What Is Geo and Why It Matters for B2B Companies in Latam

https://expansionamericas.com/what-is-geo-and-why-it-matters-for-b2b-companies-in-latam
1•joserparamo•8m ago•0 comments

Solving the Bottom Turtle [pdf]

https://spiffe.io/pdf/Solving-the-bottom-turtle-SPIFFE-SPIRE-Book.pdf
1•mooreds•8m ago•0 comments

Nobody understood my tool, so I launched it as 15s Netflix-style mini-episodes

https://grok-wiki.com/episodes
1•sashimikun•10m ago•0 comments

Sudo Report – a Drudge Report for builder/startup/AI news

https://www.sudoreport.com
1•ataturkle•20m ago•2 comments

IDF troops fire at vehicle killing Palestinian baby and wounding his parents

https://www.timesofisrael.com/liveblog-june-05-2026/
8•root-parent•20m ago•0 comments

Fake Gears, Real Fun: A Pro Driver Makes the Case for EV Gimmicks

https://www.thedrive.com/news/fake-gears-real-fun-a-pro-driver-makes-the-case-for-ev-gimmicks
1•PaulHoule•25m ago•0 comments

The birthday paradox explains why there's too much to do

https://maximumreverie.substack.com/p/why-theres-too-much-to-do
2•kadavy•28m ago•0 comments

Shortcat: Universal command palette for your Mac

https://shortcat.app/
1•gurjeet•29m ago•0 comments

Mysterious Next-Gen Aircraft Allegedly Spotted Near Area 51

https://theaviationist.com/2026/06/04/mysterious-next-gen-aircraft-allegedly-spotted-near-area-51/
6•jawiggins•29m ago•0 comments

One attribute to rule them all

https://www.mapbox.com/blog/one-attribute-to-rule-them-all
1•onesvenus•32m ago•0 comments

Trying to fill up "that one (lonely) moment"

https://mindfuse.io
1•Joeribon•32m ago•0 comments

Connecting the Pieces: AI, Data Centers, and the Environment

https://hitikadalwadi.substack.com/p/connecting-the-pieces-ai-data-centers
1•HitikaDalwadi•34m ago•0 comments

Economic efficiency often undermines sociopolitical autonomy

https://www.mindthefuture.info/p/economic-efficiency-often-undermines
2•paulpauper•34m ago•0 comments

A proposal for an experiment on Scott Alexander's book review contest

https://philosophybear.substack.com/p/what-if-self-promotion-didnt-matter
1•paulpauper•35m ago•0 comments

Choose Book Review Finalists 2026

https://www.astralcodexten.com/p/choose-book-review-finalists-2026
1•paulpauper•36m ago•0 comments

Microsoft Compromised Again. Shuts Down Azure Function GitHub Actions

https://opensourcemalware.com/blog/miasma-reaches-azure
3•6mile•37m ago•1 comments

FeckBills – Find the money you're leaking in the cloud

https://feckbills.com/
1•SteveChurch•37m ago•0 comments

KubeTable – your Kubernetes databases, one click away

https://github.com/kubetable/kubetable
1•emmaera•49m ago•1 comments

AI is fueling Reddit's spam problem

https://mashable.com/tech/ai-fueling-reddit-spam-problem
6•mmarian•52m ago•0 comments

Tribute to Jiro Yamada, Automotive Artist (1960-2025) [video]

https://www.youtube.com/watch?v=rJ2gQ5Md60U
3•NaOH•52m ago•0 comments

Before You Add an MCP Server to Your IDE, Read the Config

https://medium.com/open-ai/before-you-add-an-mcp-server-to-your-ide-read-the-config-like-it-can-e...
2•sukhpinder0804•55m ago•0 comments

Donald Trump says US may take equity stakes in AI companies

https://www.ft.com/content/b1ab6106-77e6-4218-9eb4-e44bd56ca400
16•root-parent•1h ago•5 comments

AI Agents Now Generate More Web Traffic Than Humans

https://www.cnet.com/tech/services-and-software/its-official-agentic-bots-surf-the-web-more-than-...
3•Fake4d•1h ago•1 comments

OpenAI wrote a guide on how to use /goal mode. I made that guide into a skill

https://github.com/Infinite-Labs-OS/infinite-skills
1•RiverXR•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.