frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic's Claude Desktop App Installs Undisclosed Native Messaging Bridge

https://letsdatascience.com/news/claude-desktop-installs-preauthorized-browser-extension-mani-406...
2•CGMthrowaway•2m ago•0 comments

Show HN: I blind-tested 14 LLMs on a WP plugin task. Surprising Findings

https://github.com/guilamu/llms-wordpress-plugin-benchmark/blob/main/README.md
1•guilamu•4m ago•0 comments

Ask HN: Does HN kinda hate America?

1•howmayiannoyyou•5m ago•1 comments

No raw data, no science: another possible source of the reproducibility crisis

https://link.springer.com/article/10.1186/s13041-020-0552-2
2•sebg•6m ago•0 comments

Same AWS plan, same continent – different behavior under load

https://webbynode.com/articles/aws-eu-region-performance-differences
2•gsgreen•6m ago•0 comments

Greenhouse gases from data center boom could outpace nations

https://www.wired.com/story/new-gas-powered-data-centers-could-emit-more-greenhouse-gases-than-en...
1•pier25•8m ago•0 comments

Programming in 2026: excitement, dread, and the coming wave

https://amontalenti.com/2026/04/23/excitement-and-dread
2•speckx•8m ago•0 comments

Anthropic has surged to a trillion-dollar valuation, overtaking OpenAI

https://www.businessinsider.com/anthropic-trillion-dollar-valuation-on-secondary-markets-2026
1•m-hodges•8m ago•0 comments

9950X3D2 Benchmarks: The Best Desktop Performance for Linux Developers, Creators

https://www.phoronix.com/review/amd-ryzen-9950x3d2-linux
1•EnPissant•10m ago•0 comments

Do People Sincerely Believe Conspiracy Theories That They Endorse?

https://online.ucpress.edu/collabra/article/12/1/159253/217850/Do-People-Sincerely-Believe-Conspi...
2•Ariarule•11m ago•0 comments

The Long Reply

https://ironicsans.ghost.io/the-long-reply/
1•NaOH•12m ago•0 comments

An Existential Crisis in the Crossword Community

https://www.vulture.com/article/new-york-times-crossword-error-reactions.html
1•chrisdroukas•13m ago•0 comments

Show HN: Récif – Open-source control tower for AI agents on Kubernetes

https://recif-platform.github.io
1•sciences44•13m ago•0 comments

CC-Markup: Measure Opus 4.7's tokenizer price hike on your past sessions

https://github.com/tejpalv/cc-markup
1•tejpalv•14m ago•0 comments

Preliminary Report on the LaGuardia Crash

https://www.nytimes.com/interactive/2026/04/23/nyregion/laguardia-crash-NTSB-report.html
2•akashshah87•15m ago•1 comments

GitHub Is Unreachable in Kazakhstan

https://tengrinews.kz/curious/github-cherez-vpn-kazahstantsyi-jaluyutsya-problemyi-597680/
2•campuscodi•16m ago•0 comments

HTML5 games dev assets and templates

https://edukidsshop.com/Html5-Games-Marketplace/
1•21stcenturydude•16m ago•0 comments

Billion-dollar losses after 'short squeeze' at car rental group Avis Budget

https://www.ft.com/content/646a7b97-c150-44d6-a2c7-0f75aef9611c
2•paulpauper•18m ago•0 comments

Let Bad Writers Use AI to Compose Text

https://www.richardhanania.com/p/bring-on-the-ai-writers
1•paulpauper•18m ago•0 comments

Shade Raises $14M to Build the System of Record for Creatives

https://shade.inc/blog/shade-raises-14m-to-build-the-intelligent-file-system-for-creative-teams
1•brandonfan1256•18m ago•0 comments

Trajectory shapes are work habits

https://blog.nilenso.com/blog/2026/04/20/trajectory-shapes/
3•sriharis•19m ago•0 comments

Why Rome never industrialized [video]

https://www.youtube.com/watch?v=uR8-AF6NJcc
1•paulpauper•20m ago•0 comments

A background removal API 40x cheaper than remove.bg

https://github.com/useknockout/api
1•tlorents•21m ago•0 comments

Show HN: Visage, privacy-friendly web analytics for self-hosters

https://www.butterhost.ing/visage
1•jessym•24m ago•1 comments

ElephantShadow: Use PHP for SSR of Webcomponents in declarative shadow DOM

https://github.com/ulrischa/ElephantShadow
1•ulrischa•24m ago•0 comments

Windows 10 Is Finally Dead. Don't Fall for Microsoft's Next Trap

https://michael-dev-tech.github.io/Website/windows-10-eol-linux.html
2•f0r3st•25m ago•0 comments

Meta to Lay Off 10% of Employees in May

https://www.wsj.com/tech/meta-will-lay-off-8-000-employees-in-may-memo-ce8b97f0
2•JumpCrisscross•26m ago•0 comments

Telemetry and intent analytics for AI products using natural language

1•peoplenotbots•27m ago•0 comments

The $5 Drone Killer

https://www.techradar.com/pro/the-usd5-drone-killer-the-navys-new-20kw-locust-laser-just-proved-i...
6•devonnull•29m ago•2 comments

A New Chapter for Ruby Central

https://rubycentral.org/news/a-new-chapter-for-ruby-central/
2•allknowingfrog•30m ago•1 comments
Open in hackernews

Against SQL (2021)

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

Comments

rawgabbit•12mo 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.