frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The USSR in 100 Photographs

https://trinixy.ru/7039-sssr_v_fotografijakh_100_foto.html
1•decimalenough•5m ago•0 comments

Qector-Decoder-v3: Multi-Back End Software Architecture for QEC

https://zenodo.org/records/21850315
1•QECTOR•7m ago•0 comments

Japanese Police Arrest NYAA 'First Uploader,' but Not by Watching the Swarm

https://torrentfreak.com/japanese-police-arrest-nyaa-first-uploader-but-not-by-watching-the-swarm/
1•Rant423•8m ago•0 comments

A Chinese AI model stopped OpenAI's 'unprecedented' cyber attack

https://www.cnbc.com/2026/07/24/chinese-ai-model-openai-cyber-attack.html
1•makerdiety•11m ago•0 comments

Happy 808 day: The TR-808 Monograph

https://raygum.com/research/roland-tr-808-monograph
1•stuartmemo•11m ago•1 comments

Cloudflare launches Kitesurf, a browser built for AI agents

https://techcrunch.com/2026/08/07/cloudflare-launches-kitesurf-a-browser-built-for-ai-agents/
1•ashurandi•12m ago•0 comments

1.59X speedup on SQLite 3 in 8 hrs with $150 API cost

https://github.com/ksenxx/sqlite-optimized
1•ksenxx•12m ago•0 comments

I made a memory chip price tracker in five minutes

https://memoryindex.io/
2•mbloom1915•16m ago•1 comments

Amiko: A desperate virtue signalling attempt

https://ryanbigg.com/2026/08/amiko-a-desperate-virtue-signalling-attempt
1•thunderbong•21m ago•0 comments

How a liquid rocket engine is built, animated as a factory

https://laurentiugabriel.github.io/rocket-engine/
1•laurentiurad•23m ago•0 comments

Three.js gets native support for Gaussian Splatting

https://ben3d.ca/blog/gaussian-splatting-for-threejs
2•bhouston•29m ago•0 comments

Safety fears as scientists make first viruses designed by AI

https://www.theguardian.com/science/2026/aug/06/safety-fears-as-scientists-make-first-viruses-des...
1•pseudolus•30m ago•0 comments

China is gaining ground in AI. But the U.S. still has a major advantage

https://www.cnbc.com/2026/08/07/china-us-ai-race-hugging-face-models.html
1•makerdiety•32m ago•0 comments

Why AI has brought nothing more than the conceit of wisdom

https://hedgehogreview.com/web-features/thr/posts/platos-warning-has-been-vindicated
2•GeoAtreides•33m ago•0 comments

Remembering the pre-Google web, when search was an experiment

https://arstechnica.com/gadgets/2026/08/remembering-the-pre-google-web-when-search-was-an-experim...
2•pseudolus•33m ago•0 comments

The Diamond-Square Algorithm

https://diatone.net/toys/terrain
1•diatone•35m ago•1 comments

Show HN: Otaku – A Roleplay Terminal Client

https://github.com/enclavum/otaku
1•enclavum5•36m ago•0 comments

A passing star: our Sun's near miss

https://science.nasa.gov/universe/exoplanets/a-passing-star-our-suns-near-miss/
1•thunderbong•37m ago•0 comments

Auto Mode will be the default in Claude Code – because humans can't be trusted

https://thenewstack.io/claude-code-auto-mode/
2•maxloh•37m ago•0 comments

Modern Terminal File Manager

https://favflower.codeberg.page/
2•blueflowerbed•38m ago•1 comments

Google's Westinghouse Bet

https://asimovaddendum.substack.com/p/googles-westinghouse-bet
1•JohnHammersley•39m ago•0 comments

The world is full of marble. Most of it is fake [video]

https://www.youtube.com/watch?v=BLWGp8xyJEA
1•skibz•42m ago•0 comments

I couldn't have put it better myself (2016)

http://www.alexanderboot.com/i-couldnt-have-put-it-better-myself/
1•decimalenough•42m ago•0 comments

Show HN: Compactdiff – see what compaction dropped from an agent session

https://github.com/mkmkkkkk/compactdiff
3•mileskoldin•48m ago•0 comments

Show HN: Mail Attachment Lens: A Browser extension to manage Gmail attachments

https://github.com/kshk123/mail-attachment-lens
1•kshk123•50m ago•0 comments

Keeping yesterday's computers ticking takes more than nostalgia

https://www.theregister.com/offbeat/2026/08/05/keeping-yesterdays-computers-ticking-takes-more-th...
2•rbanffy•54m ago•0 comments

Ask HN: If you don't read books, what do you read?

2•kamphey•56m ago•3 comments

'I hate what AI is doing to the minds and happiness of the young'

https://www.theguardian.com/books/ng-interactive/2026/aug/08/i-hate-what-ai-is-doing-to-the-minds...
2•chrisjj•1h ago•1 comments

Show HN: Keynou Drive – Branded URL Shortener for SaaS

https://drive.keynou.com
1•not_wowinter13•1h ago•0 comments

I built AI at Amazon, then got laid off

https://www.youtube.com/watch?v=ZAom6f4-vh0
5•tcp_handshaker•1h 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.