frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The New Internet Era

https://blogs.newardassociates.com/blog/2026/titit-llms-and-internet.html
1•damowangcy•1m ago•0 comments

At the Autograph Show

https://oldster.substack.com/p/at-the-autograph-show
1•NaOH•1m ago•0 comments

Tab Tender – Split the bar tab in seconds

https://tabtender.app
1•MitchelRut•2m ago•1 comments

From Silos to Service Topology: Why Netflix Built a Real-Time Service Map

https://netflixtechblog.com/from-silos-to-service-topology-why-netflix-built-a-real-time-service-...
1•mazinz•3m ago•0 comments

Intel Is Struggling to Supply Laptop Chips Built Around Its New 18A Node

https://www.culpium.com/p/intel-is-struggling-to-supply-laptop
1•osnium123•3m ago•0 comments

Microsoft Is Bricking the Perpetual Version of Office 2019 for Mac

https://support.microsoft.com/en-us/office/update-microsoft-365-or-office-on-your-macos-or-ios-de...
1•tech234a•4m ago•0 comments

Agentic Mfw

https://agenticmotherfucking.website
2•elmerland•4m ago•1 comments

I left the Alan Turing Institute to join 'game-changer' AI lab

https://www.thetimes.com/business/technology/article/alan-turing-institute-new-ai-lab-nskdppnjb
1•petethomas•6m ago•0 comments

Running an AI-native engineering org – Claude

https://claude.com/blog/running-an-ai-native-engineering-org
1•ddl•9m ago•0 comments

I made Bipolar-Tracker.com to track my manic episodes better

https://bipolar-tracker.com/
1•nataliebeaumont•14m ago•1 comments

Ask HN: Feedback on an AI-driven "Life RPG" for real-world skill building?

1•MixasETH•18m ago•0 comments

Pakistan's lost city of 40k people

https://www.bbc.com/travel/article/20221114-pakistans-lost-city-of-40000-people
2•mooreds•19m ago•1 comments

Indus Script (2015)

https://www.worldhistory.org/Indus_Script/
3•mooreds•19m ago•0 comments

Summer Is Prime Time for Account Takeover

https://securityboulevard.com/2026/06/summer-is-prime-time-for-account-takeover/
1•mooreds•20m ago•0 comments

I built a CLI that orients you in an unfamiliar repo: feedback wanted

https://github.com/mansoor-mamnoon/codeglance
1•mansoor-mamnoon•24m ago•0 comments

Look Who Just Crashed OpenAI and SoftBank's IPO Party

https://www.bloomberg.com/opinion/articles/2026-06-02/ipo-race-look-who-just-crashed-open-ai-and-...
2•petethomas•24m ago•0 comments

Free daily AI brief from your Garmin data (Gemini and GitHub Actions)

https://github.com/deep0410/garmin-ai-notifier
2•deep0410xd•25m ago•0 comments

NLAB: The worlds smallest electronics lab

https://getnlab.com/
2•doctoboggan•28m ago•0 comments

Can A.I. Produce Writing That We Want to Read?

https://www.newyorker.com/news/fault-lines/can-ai-produce-writing-that-we-actually-want-to-read
3•fortran77•29m ago•1 comments

Real-time ceiling projection of planes flying overhead

https://old.reddit.com/r/aviation/comments/1tvabpy/i_live_in_the_take_off_path_of_sfo_and_built_a/
2•CarbonBasedUnit•29m ago•1 comments

Where Google's Head of AGI Safety Thinks the 'Doomers' Are Wrong – Rohin Shah [video]

https://www.youtube.com/watch?v=Tv3mGA3wqh8
1•emrehan•29m ago•0 comments

FUTO – 2 Years Later

https://immich.app/blog/futo-two-years-later
1•sathyabhat•33m ago•0 comments

Bad universal priors and notions of optimality (2015) [pdf]

https://jan.leike.name/publications/Bad%20Universal%20Priors%20and%20Notions%20of%20Optimality%20...
1•measurablefunc•33m ago•0 comments

The Hare Programming Language

https://harelang.org/
2•gurjeet•34m ago•0 comments

Capstone – multi-platform, multi-architecture disassembly framework

https://www.capstone-engine.org/
2•gregsadetsky•37m ago•0 comments

How to delete your ChatGPT account

https://proton.me/blog/how-to-delete-chatgpt-account
4•devonnull•39m ago•0 comments

Ask HN: A Brief History of LLMs

2•menomatter•39m ago•0 comments

Adding Features That Help Get Users

https://fastbusinessapi.com/article/adding-features-that-help-get-users/
1•ApiFB-Dev•40m ago•0 comments

My Theory by Albert Einstein(1919)

https://todayinsci.com/E/Einstein_Albert/EinsteinAlbert-MyTheory.htm
2•o4c•40m ago•0 comments

Videos show people entering NYC sewers at night; residents,investigators baffled

https://apnews.com/article/nyc-sewer-explorers-manhole-investigation-a229be36b3daa74223ad0a43bfdc...
3•petethomas•40m 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.