frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I wrote a BASIC interpreter that boots on UEFI machines and ported it to Windows

https://tarjan.itch.io/thoreaubasic
1•Gorsefound•14s ago•0 comments

I asked Codex to design its own CPU and then write a Space Invaders-style game

https://twitter.com/Angaisb_/status/2091511260265263604
1•qwertox•29s ago•0 comments

I Prompt [video]

https://www.youtube.com/watch?v=HegqGzD-kvc
1•tosh•1m ago•0 comments

Talk Like Claude Day

1•KenPainter•2m ago•0 comments

Astronautics and Aeronautics, 1991–1995: A Chronology

https://www.nasa.gov/wp-content/uploads/2023/04/1991-1995.pdf?emrc=413db2
1•joebig•2m ago•0 comments

Tabular World Model Leaderboard

https://huggingface.co/spaces/TabArena/leaderboard
1•zurfer•6m ago•0 comments

Trazor: An image vectorizer that runs in the browser

https://github.com/PhenX/Trazor
1•thunderbong•9m ago•0 comments

A Rock and China's Three-Sea Problem

https://warontherocks.com/a-rock-and-chinas-three-sea-problem/
1•crescit_eundo•11m ago•0 comments

Dutch regulator fines Uber $966M for automating driver suspensions

https://www.theguardian.com/technology/2026/aug/21/netherlands-fines-uber-automated-driver-suspen...
3•geoffbp•15m ago•0 comments

Ask HN: What Happened to dLLMs?

1•ray__•17m ago•0 comments

Show HN: Picchio caught Qwen3.8-27B spilling 28 layers into the CPU

https://github.com/logxio/picchio/releases/tag/v1.0.0
2•logickkk1•18m ago•0 comments

HQ Trivia but for Developers

https://app.rebase.tv/
1•ryanvogel•20m ago•1 comments

Run local agentic AI on the Mac using MLX [video]

https://developer.apple.com/videos/play/wwdc2026/232/
1•Austin_Conlon•21m ago•0 comments

Rune – I got tired of AI coding agents re-reading my codebase cold every session

https://github.com/thecolourfoundation/rune
1•malixp•21m ago•0 comments

Argentina Wants to Let AI Own Companies

https://www.forbes.com/sites/anishasircar/2026/06/10/ai-owned-companies-argentina/
3•andsoitis•22m ago•2 comments

We must not grant AI agents legal personhood

https://www.ft.com/content/b8cc4bf4-6d3c-4974-8428-9a091983c473
3•andsoitis•23m ago•3 comments

I replaced Calendly with agents. Here are the receipts

https://www.bulaev.net/p/i-replaced-calendly-with-agents-here
2•sbulaev•26m ago•1 comments

TMOG – task manager for macOS, Windows, and Linux

https://tmog.org/
1•gjvc•28m ago•0 comments

The Remote Work Challenge: Lessons from 5 Cities

https://www.pew.org/en/research-and-analysis/reports/2026/05/the-remote-work-challenge-lessons-fr...
2•softwaredoug•32m ago•0 comments

Yuval Harari: AIs will control civilisation and what it would mean to be human

https://www.economist.com/insider/the-insider/an-interview-with-yuval-noah-harari
2•andsoitis•32m ago•0 comments

Verifiable Domains Will Eat the World

https://twitter.com/jon_stokes/status/2091383885569405025
1•barry-cotter•33m ago•0 comments

Building an AI Agent for PCB Design

https://luvsheth.com/p/building-an-ai-agent-for-pcb-design
1•Reviving1514•35m ago•1 comments

Experimental compound helps burn fat without muscle loss

https://www.sciencedaily.com/releases/2026/08/260823014953.htm
1•toomuchtodo•36m ago•0 comments

DefCon 34 – Stalking the Wily Hacker: 40 years later [video]

https://www.youtube.com/watch?v=656058JxTM0
2•AJRF•40m ago•1 comments

FCC pulls HoverAir Versa certification three days after launch

https://www.tomshardware.com/tech-industry/drones/fcc-pulls-hoverair-versa-certification-three-da...
1•sbulaev•41m ago•0 comments

Erik Brynjolfsson says an AI "job apocalypse" is unlikely

https://wpintelligence.washingtonpost.com/topics/ai-tech/2026/08/19/wpi-conversation-why-an-ai-jo...
2•gumby•41m ago•0 comments

Basic iPhone Tricks I Built with iOS 27's Revamped Shortcuts App

https://www.wired.com/story/7-basic-iphone-tricks-i-built-with-ios-27s-revamped-shortcuts-app/
1•joozio•47m ago•0 comments

20 years after Pluto was made a dwarf planet, some still can't let go

https://www.nbcnews.com/science/space/pluto-dwarf-planet-20-years-rcna593156
2•croes•48m ago•1 comments

Only Apple Can Abolish the Job Application

https://loitery.substack.com/p/only-apple-can-abolish-the-job-application
3•mchannon•50m ago•3 comments

Isometric Plotter

https://notion-images.laravel.cloud/
2•lopespm•51m ago•0 comments
Open in hackernews

Against SQL (2021)

https://www.scattered-thoughts.net/writing/against-sql/
4•yladiz•1y ago

Comments

rawgabbit•1y ago
Sorry. These criticisms don’t make much sense.

The author says SQL is the language for manipulating relational data. And then proceeds to complain SQL sucks at manipulating JSON.

Hmm. JSON is not relational. SQL expects data to be in third normal form.

If you are primarily working with JSON, please use something else.

The other two criticisms about SQL verboseness and reluctance to employ functions and other memory manipulations is the author’s confusion of the intended purpose of SQL. SQL treats data as the first class citizen. Think of data as the noun. SQL DML and SQL functions are modifiers. This is why SQL appears verbose. It is dragging all these data structures around. If you want to reduce SQL’s verbosity then you need to take an axe to the raw tables themselves and make them all cookie cutter. But then you have a completely different problem.