frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Measuring the Wrong Thing: Internal Harmfulness Scores Anti-Rank Successful

https://arxiv.org/abs/2608.09624
1•sbulaev•44s ago•0 comments

I built a PII pdf parser for your agent

https://www.pdfagent.net/
1•mattmerrick•2m ago•0 comments

Male redback spider's dramatic death somersault during sex coded in its DNA

https://www.abc.net.au/news/science/2026-08-12/redback-spiders-backflip-katipo-sex/107022976
1•Gaishan•2m ago•0 comments

Move 37 Is the Moment AI Changes Everything. It's Suddenly Happening Everywhere

https://www.wsj.com/tech/ai/move-37-ai-demis-hassabis-google-deepmind-alphago-ec832a41
1•RyanShook•2m ago•0 comments

Dogs can tell when you're happy, sad or frustrated

https://www.washingtonpost.com/lifestyle/2026/08/11/dogs-can-tell-when-you-happy-scared-or-sad-ne...
1•wslh•3m ago•1 comments

Crew, a multiplayer workspace for humans and AI agents to work together

https://github.com/JamelHammoud/crew
2•alihammoud21•7m ago•0 comments

The 7T AI Gamble Is Failing. Big Tech Is Trapped

https://www.youtube.com/watch?v=OunJtLnyPT4
2•cable2600•10m ago•0 comments

The StubHub Customers Who Battled for Tickets–and Battle Harder for a Refund

https://www.wsj.com/business/stubhub-tickets-resell-refund-de5ef8c3
1•fortran77•11m ago•1 comments

Talk to ELIZA

https://findingeliza.org/try.html
1•droidjj•19m ago•0 comments

Statin use vs. death rate from cardiovascular diseases (2019)

https://ourworldindata.org/grapher/statin-use-cardiovascular-disease-death-rate
1•js2•19m ago•0 comments

We found a bug in FFmpeg with a vibecoded fuzzer

https://code.ffmpeg.org/FFmpeg/FFmpeg/issues/23945
3•dclavijo•24m ago•0 comments

What job postings say about AI at work – Live report

https://corvi.careers/reports/ai-job-trends/
1•sp1982•28m ago•0 comments

Ask HN: Could DNA be represented as "an embedding" in an AI model?

3•greenmoonx•29m ago•1 comments

Electric is joining team Neon at Databricks

https://neon.com/blog/electric-joins-neon
2•thunderbong•31m ago•0 comments

Show HN: Copero Game: Free Football Career Simulator

https://coperogame.com/en
1•light001•33m ago•0 comments

A carbon nanotube network combines fracture resistance with extreme hardness

https://www.ibtimes.sg/china-scientists-create-unbreakable-crystal-stronger-diamond-how-it-works-...
1•yogthos•37m ago•0 comments

What happens when the AI bubble pops?

https://thehustle.co/originals/what-happens-when-the-ai-bubble-pops
2•paulpauper•40m ago•0 comments

Shopping Is Impossible

https://www.theatlantic.com/technology/2026/08/online-shopping-inescapable/688254/
2•paulpauper•40m ago•0 comments

We selected the next vector database at Booking.com

https://booking.ai/how-we-selected-the-next-vector-database-at-booking-com-1e738a5e3bb0
3•bobvanluijt•43m ago•0 comments

The Artificially Intelligent Dog

https://arnoldkling.substack.com/p/the-artificially-intelligent-dog
1•paulpauper•44m ago•0 comments

Two LLM calls beat one: 67% cheaper and 100% vs. 72% extraction accuracy

https://github.com/tauansloboda/semantic-thermodynamics
2•tauanvinicius•45m ago•0 comments

The Human Is the Loop

https://brentfitzgerald.com/posts/the-human-is-the-loop/
2•burnto•52m ago•0 comments

MiniMax H3: An Open Model Breaking the Boundaries Between Tasks and Modalities

https://twitter.com/MiniMax_AI/status/2083008095488516262
2•gmays•53m ago•0 comments

Review of Studies on the Level of Cannabis Use and Risk of Psychosis

https://pmc.ncbi.nlm.nih.gov/articles/PMC4988731/
2•thisislife2•54m ago•0 comments

Company Offering '100% Human-Written, Never AI' Medical Research Is 100% AI

https://www.404media.co/company-offering-100-human-written-never-ai-peer-review-is-entirely-ai/
8•Anon84•1h ago•1 comments

SignalCaster

https://signalcaster.app/
2•abdoghamlouch•1h ago•0 comments

Linux desktop use surged to 22% on one workday, Cloudflare data shows

https://www.zdnet.com/article/linux-desktop-use-surged-on-one-workday-cloudflare-data-shows/
6•speckx•1h ago•0 comments

Numbat by Perplexity: Endpoint visibility into AI agent activity

https://github.com/perplexityai/numbat
2•handfuloflight•1h ago•0 comments

SWE-Bench ProMax: Benchmarking Agents on Large-Scale Code Refactoring

https://arxiv.org/abs/2608.09802
1•williamjinq•1h ago•0 comments

4Chan Chuds Used AI to Clothe Her. She Fought Back (2024)

https://www.rollingstone.com/culture/culture-news/dignifai-4chan-shame-women-1234961851/
7•TMWNN•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.