frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I am experiencing a technical issue while uploading my video for the application

1•xlikewater•32s ago•0 comments

Trump announces 2028 presidential bid

https://www.smh.com.au/world/donald-trump-jokes-about-2028-re-election-bid-20260725-p60iho.html
1•testing22321•34s ago•0 comments

Sharden Mine (no competition) Alchemy free-tier ~65k rounds Snapdragon870 termux

https://github.com/babakkarimib/sharden-miner
1•Sharden•2m ago•0 comments

Things I would like to tell my 10 year old self

https://winnielim.org/journal/things-i-would-like-to-tell-my-10-year-old-self/
1•speckx•4m ago•0 comments

Parents 'driven to suicide' by wrong orders to pay child maintenance

https://www.thetimes.com/money/family-finances/article/parents-suicide-wrong-orders-child-mainten...
1•bbg2401•6m ago•1 comments

Why China is giving away its best AI models

https://www.theverge.com/ai-artificial-intelligence/971444/how-chinese-open-weight-ai-models-impa...
1•saikatsg•7m ago•0 comments

Why budding birders are flocking to Shazam-like apps to identify avians

https://www.bbc.com/news/articles/cr59m5nmemno
1•saikatsg•9m ago•0 comments

Sheepview360 (2016)

https://visitfaroeislands.com/en/about-vfi/marketing-development-campaigns/sheepview360
1•KomoD•10m ago•0 comments

If You're over 40, You're Ready to Use A.I

https://www.nytimes.com/2026/07/27/opinion/teaching-kabbalah-ai.html
2•apparent•11m ago•0 comments

The Rosenberg Boys

https://www.theatlantic.com/magazine/2026/08/ethel-julius-rosenberg-boys/687631/
1•gmays•12m ago•0 comments

Devastating European wildfires in maps – and how they're being tackled

https://www.bbc.com/news/articles/cj638jx0l53o
1•saikatsg•12m ago•0 comments

OpenTakeoff – Open-source browser engine for construction takeoff

https://github.com/Kentucky-ai/opentakeoff](https://github.com/Kentucky-ai/opentakeoff
1•kentucky-ai•12m ago•0 comments

We achieved 94.7% in Longmemeval built in a hackathon, everything open sourced

https://github.com/kunal12203/swafra
1•krishnakantk876•12m ago•0 comments

Naturally Occurring Abstract Art of New York City

https://www.mojmali.com/article/naturally-occurring-abstract-art-nyc
1•Mojmalik•13m ago•0 comments

Our company runs out of a folder

https://www.insideainative.com/p/our-company-runs-out-of-a-folder
2•mmayernick•14m ago•0 comments

XLights Is a Sequencer for Lights

https://github.com/xLightsSequencer/xLights
1•gregsadetsky•14m ago•0 comments

Brube2000, a Spotify Client for Haiku

https://forum.desktoponfire.com/d/39-brube2000-a-spotify-client-for-haiku
1•carlosjobim•15m ago•0 comments

Self-contained highly-portable Python distributions

https://gregoryszorc.com/docs/python-build-standalone/main/
8•jcbhmr•16m ago•0 comments

Improvements to Web for AI Should Benefit All Users

https://cloudfour.com/thinks/improvements-to-web-for-ai-should-benefit-all-users/
1•herbertl•17m ago•0 comments

BMWs shows in-car ads for Spiderman

1•bigmattystyles•17m ago•0 comments

Agent Mesh: let Claude Code, Codex, Grok and other agents talk to each other

https://github.com/mubashir1osmani/agent-mesh
1•mubashir1osmani•17m ago•0 comments

AI in the Linux Kernel

https://drewdevault.com/blog/AI-in-Linux/
3•lr0•18m ago•1 comments

Work-Stealing vs. Executor-per-Thread: Evaluating Different HTTP Server Workload

https://c410-f3r.github.io/thoughts/work-stealing-vs-executor-per-thread-evaluating-different-htt...
1•CaioFer•18m ago•0 comments

Show HN: Yap – OSS on-device voice dictation for macOS with no model to download

https://github.com/FrigadeHQ/yap
1•pancomplex•23m ago•0 comments

The Motivation

https://randsinrepose.com/archives/the-motivation/
1•herbertl•24m ago•0 comments

Open Secure AI Alliance aims to open-source AI security defences

https://www.developer-tech.com/news/open-secure-ai-alliance-open-source-ai-security-defences/
1•speckx•25m ago•0 comments

Art Can and Should Be Measured

https://outlookzen.com/2026/07/27/art-can-and-should-be-measured/
2•whack•26m ago•1 comments

Could the Saudi-US cooperation result in a nuclear Aramco?

https://www.arabnews.com/node/2652088/saudi-arabia
2•thisislife2•27m ago•0 comments

The Artist Who Colored Ghibli

https://animationobsessive.substack.com/p/the-artist-who-colored-ghibli
4•herbertl•27m ago•0 comments

The Pull Request is not the product

https://medium.com/@rakeshmenon13/the-pull-request-is-not-the-product-c29da073a6a8
2•rakeshmenon•28m 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.