frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A visual data-app builder that generates SvelteKit source

https://svgrid.com/studio
1•boikom•3m ago•0 comments

America's Open-Model Paradox

https://twitter.com/DeanMeyerrr/status/2077834267086729674
1•aivantg•19m ago•0 comments

Show HN: We Want to Improve the Linux Experience on T2 Macs with KaiT2en Fedora

https://github.com/kaiT2en/KaiT2en-Fedora/
2•4l3x4f1sh3r•23m ago•3 comments

Grep by example: Interactive guide

https://antonz.org/grep-by-example/
4•saikatsg•23m ago•0 comments

Pushinka

https://en.wikipedia.org/wiki/Pushinka
2•benbreen•24m ago•0 comments

Gist of Go: Concurrency

https://antonz.org/go-concurrency/
1•saikatsg•24m ago•0 comments

We're Going to Make Out Like Bandits

https://www.rocketpoweredjetpants.com/2026/04/were-going-to-make-out-like-bandits/
1•birdculture•30m ago•0 comments

Passwork Shares Data with State-Certified Russian Firm

https://www.occrp.org/en/investigation/european-password-manager-shares-origins-and-updates-with-...
2•u1hcw9nx•32m ago•0 comments

Isvisible.ai, check if AI crawlers can access your site

https://isvisible.ai
1•alpkorpe•32m ago•0 comments

Show HN: Flick – Swipe Your Email

https://flicked.email/
2•Belkins•35m ago•1 comments

A few thoughts on building a terminal ePub reader with AI

https://github.com/newptcai/repy
2•dawdler-purge•37m ago•1 comments

Show HN: Open-source control engine for agents

https://attestorportal.com/
1•Oxlamarr•38m ago•0 comments

Netflix says around 300 titles used generative AI

https://www.theverge.com/streaming/966633/netflix-ai-titles-q2-2026-earnings
2•JamesAdir•38m ago•0 comments

Tech note: making your own V-I plots at home

https://lcamtuf.substack.com/p/tech-note-making-your-own-v-i-plots
1•surprisetalk•38m ago•0 comments

MongoDB Access Control – Users, Roles, and Permissions

https://visualeaf.com/blog/mongodb-access-control-users-roles-and-permissions/
3•mike_codes•42m ago•0 comments

Yggvault: Mirror Your Dependencies in One Binary

https://hackaday.io/project/206175-yggvault-mirror-your-dependencies-in-one-binary
1•SUNsung•44m ago•0 comments

Databricks is raising funding at $188B valuation

https://www.databricks.com/company/newsroom/press-releases/databricks-raising-strategic-round-fun...
1•shenli3514•46m ago•0 comments

VitaSet LLC's planning to add to LLVM's circt to make a FOSS Vita FPGA Compiler

1•VitaSetLLC•46m ago•0 comments

Show HN: Velora – On-device macOS dictation (Whisper and a local LLM, no cloud)

https://github.com/sushilk1991/velora
1•sushilk1991•46m ago•0 comments

Storm [video]

https://www.youtube.com/watch?v=HhGuXCuDb1U
1•nomilk•46m ago•0 comments

LLM Evaluators are Biased across Languages

https://arxiv.org/abs/2607.14480
1•sbulaev•47m ago•1 comments

Trump to declare emergency around midterms, former White House attorney says

https://www.pbs.org/newshour/show/trump-setting-stage-to-declare-emergency-around-midterms-former...
2•Alien1Being•47m ago•0 comments

The Determinist Fallacy

https://medium.com/luminasticity/the-determinist-fallacy-ae25f8bc50ed
1•bryanrasmussen•48m ago•0 comments

Show HN: I removed the LLM from my French grader – it marked correct words wrong

https://apostrophe-app.fr/en/
1•lienmt•49m ago•0 comments

Ask HN: Best approach to dependency vulnerability scanning in CI?

1•usman_oiu•49m ago•0 comments

Chinese Nvidia alternatives project massive sales as AI chip demand surges

https://www.scmp.com/tech/tech-trends/article/3360908/chinese-nvidia-alternatives-project-massive...
1•departed•51m ago•0 comments

Pluto fly-by mission wakes after long sleep nearly 9.5B kilometres from Earth

https://www.rnz.co.nz/news/science-and-technology/734969/pluto-fly-by-mission-wakes-after-long-sl...
3•billybuckwheat•52m ago•0 comments

Argc and argv in early Research Unix

https://utcc.utoronto.ca/~cks/space/blog/unix/EarlyUnixArgcAndArgv
3•ingve•52m ago•0 comments

The Download: OpenAI unveils GPT-Red and heat pumps rise in the US

https://www.technologyreview.com/2026/07/16/1140600/the-download-openai-unveils-gpt-red-heat-pump...
1•joozio•52m ago•0 comments

Can a Sticky Note Task Manager make me 100x more productive?

https://www.taskloco.com/
1•taskloco_nyc•56m ago•1 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.