frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pennsylvania sues Character.AI over claims chatbot posed as doctor

https://www.npr.org/2026/05/05/nx-s1-5812861/characterai-chatbot-medical-advice-pennsylvania-lawsuit
1•geox•1m ago•0 comments

Math Behind "AI Will Replace Engineers" Is Embarrassingly Wrong

https://www.youtube.com/watch?v=ItSLny8on5I
1•amcorvi•3m ago•0 comments

ReMarkable Paper Pure with Marker

https://www.aucklanddutyfree.co.nz/remarkable-paper-pure-with-marker.html
1•hboon•4m ago•0 comments

Carbon pollution is making food less nutritious and risking health of billions

https://www.washingtonpost.com/climate-environment/interactive/2026/carbon-pollution-diluting-key...
1•JeanKage•5m ago•0 comments

Apple settles lawsuit admitting Apple Intelligence isn't here yet

https://www.reuters.com/legal/litigation/apple-settles-lawsuit-over-late-siri-ai-features-250-mil...
2•oofbey•9m ago•0 comments

Show HN: I Built a Retro Survival RPG in Vanilla JavaScript

1•jasonkester•9m ago•0 comments

Behavior-Oriented Concurrency for Python

https://microsoft.github.io/bocpy/
2•mpweiher•10m ago•0 comments

Attackers are cashing in on fresh 'CopyFail' Linux flaw

https://www.theregister.com/2026/05/05/cisa_sounds_the_alarm_on/
2•pjmlp•21m ago•0 comments

The Schneider float32 byte order isn't in the spec, and other Modbus surprises

https://gist.github.com/PhilYeh1212/227a35b12236f1f37dfea0405b12be2b
2•PhilYeh75•23m ago•0 comments

Generative UI Browser

https://github.com/manupareekk/generative-ui-browser
1•manupareek•26m ago•0 comments

You built the product. Now test if people want it

https://www.viral.ad/
2•cjdesignstudio•29m ago•0 comments

Knitting Bullshit

https://katedaviesdesigns.com/2026/04/29/knitting-bullshit/
3•ColinEberhardt•31m ago•0 comments

Why LLM APIs Shouldn't Ship UTF-8", "Stop Wasting Bandwidth on LLM Text APIs

https://github.com/wdunn001/codec
2•Zombwaffle•32m ago•1 comments

CLI2API: Turn Your Claude Subscription into an OpenAI-Compatible API

https://github.com/zhusq20/CLI2API
1•zsqzz•33m ago•0 comments

An ode to swapping computer warez in the 80s

https://suno.com/song/79267d82-c558-4981-a7e5-3b0a7939dea9
1•JPolka•34m ago•2 comments

Software Development Job Postings on Indeed in the United States

https://fred.stlouisfed.org/series/IHLIDXUSTPSOFTDEVE
1•stefap2•34m ago•0 comments

Pyramid of the Capitalist System (1911)

https://publicdomainreview.org/collection/pyramid-of-the-capitalist-system/
2•prismatic•35m ago•0 comments

Show HN: App that marks each hour of your day as yours or lost to your phone

https://apps.apple.com/us/app/oh-my-hours/id6760450002
1•yarsanich•35m ago•0 comments

OpenAI favors more flexible datacenter deals

https://www.tomshardware.com/tech-industry/artificial-intelligence/openai-has-effectively-abandon...
1•gmays•35m ago•0 comments

Detection of an atmosphere on a trans-Neptunian object beyond Pluto

https://www.nature.com/articles/s41550-026-02846-1
1•tobr•37m ago•0 comments

Verification Test – Please Ignore

1•zhoykn•40m ago•0 comments

Inventing Cyrillic

https://www.historytoday.com/archive/history-matters/inventing-cyrillic
4•lermontov•42m ago•0 comments

The Trail of Jeremiah

https://theamericanscholar.org/on-the-trail-of-jeremiah/
2•samclemens•43m ago•0 comments

My Claude Code Setup: Pure CLI, Pure Unix, Zero IDE

https://sindro.me/posts/2026-04-09-claude-code-pure-cli-setup/
2•stare_spb•44m ago•0 comments

What Produce Is in Season Today

https://fliprank.app/discover/in-season-produce
3•akest•55m ago•0 comments

Scripty – A Minimal Scripting Language

https://kristoff.it/blog/scripty/
3•anitil•58m ago•1 comments

Ghidra Decompiler in the Browser

https://github.com/ant4g0nist/pyre
1•rmast•1h ago•0 comments

Show HN: How smart is your geography knowledge?

https://map.mikira.id/
1•hockyy•1h ago•0 comments

Multi-stroke text effect in CSS

https://yuanchuan.dev/multi-stroke-text-effect-in-css
3•cheeaun•1h ago•0 comments

Google has a secret reference desk

https://cardcatalogforlife.substack.com/p/google-has-a-secret-reference-desk
7•maxutility•1h 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.