frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Accelerating scientific discovery with ChatGPT for Academic Researchers

https://openai.com/index/chatgpt-for-academic-researchers/
1•mks_shuffle•1m ago•0 comments

The Skills AI Stopped Teaching Junior Developers

https://menelaos.vergis.net/posts/The-Skills-AI-Stopped-Teaching-Junior-Developers
1•melenaos•1m ago•0 comments

Adversarial Code Obfuscation for Defending Against LLM-Based Analysis

https://arxiv.org/abs/2606.11755
1•dirkc•1m ago•0 comments

Building an EU-resident family finance app on GCP (schema-per-tenant, KMS)

https://ivmanto.com/blog/eu-resident-family-finance-on-gcp
1•nikolaytonev•2m ago•0 comments

Refusal as Instruction: Equipping Patrons to Resist AI, Data Brokers, Big Tech

https://ital.corejournals.org/index.php/ital/article/view/17653/11960
1•wallflower•5m ago•0 comments

Meta shares tumble as Mark Zuckerberg tries to sell his vision for AI 'agents

https://www.ft.com/content/06d941ed-8136-46a4-a2ec-44bea1b35c3b
3•1vuio0pswjnm7•6m ago•1 comments

Show HN: XQL, a query language for screening market data

https://xcreener.com/xql-playground
1•guzzul•7m ago•0 comments

ABSL – 100% Integer-Only Neural Network Training in Rust

https://github.com/Mojo0869/ABSL
1•Mojo_0869•8m ago•0 comments

AI Scammers Are Better at Building Trust Than Humans

https://www.wired.com/story/ai-scammers-are-better-at-building-trust-than-humans/
2•justworks•9m ago•0 comments

Docker Hub – Tags pushed on July 29th may not be visible in Hub

https://www.dockerstatus.com/
1•opsdisk•10m ago•0 comments

Elena, a library for building Progressive Web Components

https://elenajs.com/
1•brianzelip•10m ago•0 comments

Convert any website to React/Next.js

https://tiny-door.com
1•systemerror•10m ago•0 comments

Great Barrier Reef at risk of 'collapse', scientists warn

https://japantoday.com/category/features/environment/great-barrier-reef-at-risk-of-%27collapse%27...
2•speckx•11m ago•0 comments

Launch HN: Prized (YC S26) – Let non-engineer staff build secure internal tools

https://prized.dev
2•marinoseliades•13m ago•0 comments

Show HN: Skytrace – Self-hosted 3D ADS-B viewer with receiver coverage domes

https://sky.luftaquila.io
1•luftaquila•14m ago•0 comments

Headteacher had the most guessable username-password combo you could imagine

https://www.theregister.com/security/2026/07/30/headteacher-had-the-most-guessable-username-passw...
2•geekinchief•14m ago•1 comments

Why Tokyo's New Shorts Policy Is Sparking Debate in Japan

https://www.nytimes.com/2026/07/19/world/asia/japan-cool-biz-tokyo-shorts-heat.html
1•Markoff•16m ago•1 comments

To Know What Your Customers Think, Just Ask Their A.I. Twins

https://www.nytimes.com/2026/07/30/business/dealbook/simile-ai-agents-funding.html
1•pteetor•16m ago•1 comments

Show HN: Local text, image, video, music and 3D from one CLI, no Python

https://github.com/sawfwair/mere-run
1•sawfwair•17m ago•0 comments

Percent of Leaders Regret AI Layoffs–and a Major Hiring Reversal Has Begun

https://www.inc.com/bruce-crumley/55-percent-of-leaders-regret-ai-layoffs-and-a-major-hiring-reve...
1•speckx•18m ago•0 comments

Navigating Source Code (especially on large projects)

1•thekey•18m ago•0 comments

UK police to arrest people for showing support for Palestine Action

https://twitter.com/metpoliceuk/status/2082527338735005811
8•slowin•19m ago•1 comments

First Contact: The most important question in AI

https://evolutionairy.ai/first-contact/
1•adevalois•20m ago•1 comments

The AI Aesthetic

https://blog.jim-nielsen.com/2026/ai-aesthetic/
1•meetpateltech•20m ago•0 comments

Upper stage impacting the moon on 2026 August 5

https://www.projectpluto.com/25010d.htm
2•ryannevius•21m ago•0 comments

Experimental Drone Hits 699 Km/H in Push Toward High-Speed Interceptors

https://thedefensepost.com/2026/07/09/german-experimental-drone-interceptors/
2•geox•22m ago•0 comments

Show HN: A focused, fullscreen, side-by-side terminal-based Git review tool

https://slobodan.me/hawkshaw/
2•slobodan_•23m ago•0 comments

Back from China: Two Cosmologies, Two AIs, and One Social Soil

https://ottoscharmer.substack.com/p/back-from-china-two-cosmologies-two
1•ColinEberhardt•23m ago•0 comments

Amazon's Zoox wins first US approval for paid robotaxis with no human controls

https://www.reuters.com/world/amazons-zoox-wins-first-us-approval-paid-robotaxis-with-no-human-co...
5•mortenjorck•24m ago•0 comments

Show HN: A self-hostable, distributed, S3-compatible object store on the BEAM

https://github.com/wizenink/aethers3
1•wizenink•24m 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.