frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hang on to Your Firefox

https://www.newsonaut.com/articles/hang-on-to-your-firefox
678•speckx•6h ago•358 comments

Claude Fable 5.1 and Claude Mythos 5.1

https://www.anthropic.com/claude-fable-and-mythos-5-1
976•denysvitali•9h ago•913 comments

How accurate have Ed Zitron's AI skeptic predictions been?

https://danluu.com/zitron/
473•jatins•8h ago•552 comments

The efficient frontier of LLM inference

https://www.baseten.co/blog/the-efficient-frontier-of-llm-inference/
55•philipkiely•3h ago•8 comments

Show HN: Weedout – Safari extension that hides YouTube AI-labeled videos

https://masteranza.github.io/weedout/
73•masteranza•5h ago•24 comments

My local model setup on an M4 Pro Mac Mini

https://lws.io/blog/my-local-model-setup/
86•raybb•4h ago•36 comments

'Idiocracy' Predicted All of This

https://www.texasmonthly.com/culture/mike-judge-idiocracy-turns-20/
11•pseudolus•51m ago•1 comments

Introducing Ad Blocker for Firefox on iOS

https://blog.mozilla.org/en/firefox/ad-blocker-on-ios/
338•HieronymusBosch•13h ago•114 comments

Sonic Pi

https://sonic-pi.net/
50•Bluestein•4d ago•6 comments

The creator of Jujutsu has joined ERSC

https://ersc.io/blog/martin-joins-ersc
195•steveklabnik•9h ago•152 comments

The ChatGPT/Codex app bundles a full copy of LibreOffice

https://simonwillison.net/2026/Sep/1/codex-libreoffice/
263•timpera•7h ago•120 comments

Building an interactive instrument for a one-of-a-kind festival

https://benholmen.com/blog/halfmoon-chimes/
21•tjwds•4d ago•2 comments

Path to Astra: critical capabilities and frontier safeguards

https://openai.com/index/path-to-astra/
100•jithinraj•6h ago•45 comments

Launch HN: Nori Robotics (YC S26) – A low-cost humanoid robot for development

https://www.norirobotics.com/
118•AntonioLi•9h ago•41 comments

Solving the Flat Cube

https://mathenchant.wordpress.com/2026/08/19/solving-the-flat-cube/
5•surprisetalk•1d ago•0 comments

Refurbishing a Tektronix TDS7104 Oscilloscope

https://tomverbeure.github.io/2026/08/23/Tektronix-TDS7104-Refurbishing.html
96•jwise0•7h ago•45 comments

Ambient CSS v3 – Blender meets CSS

https://ambientcss.vercel.app/
207•kikkupico•11h ago•68 comments

Building Autonomous Goal Loops That Deliver

https://jx0.ca/building-autonomous-goal-loops-that-deliver/
20•jarredkenny•3d ago•0 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
48•all2•6h ago•26 comments

Movie Scene Map – 13,312 films, series, games, anime and manga

https://moviescenemap.com/
168•Flightmussy•10h ago•28 comments

Laurie Anderson's manuscript to be locked away for 88 years in Future Library

https://www.theguardian.com/books/2026/aug/29/laurie-anderson-manuscript-88-years-future-library-...
15•mitchbob•3d ago•5 comments

Show HN: Running 104GB Qwen3.8-Flash-Next on 48GB Mac with at ~12 tok/s

https://github.com/carloslfu/slotstream
153•carloslfu•10h ago•90 comments

FBI Probes Service Selling 153M+ Drivers Licenses

https://krebsonsecurity.com/2026/09/fbi-probes-service-selling-153m-drivers-licenses/
21•tatersolid•3h ago•5 comments

Ask HN: Who is hiring? (September 2026)

191•whoishiring•12h ago•212 comments

Fluorescent lamps (don't) have ears

https://blog.coredump.cx/p/fluorescent-lamps-dont-have-ears
34•zdw•5h ago•8 comments

Quill (YC W20) Is Hiring a Fullstack SWE

1•R_R•10h ago

Play Store blocks AuroraStore, hurting GrapheneOS users

https://gitlab.com/AuroraOSS/AuroraStore/-/work_items/1566
476•erikvanoosten•11h ago•201 comments

Atlas: A World Model for Spatial Intelligence

https://www.worldlabs.ai/blog/atlas
163•johnsutor•9h ago•41 comments

Magic eye tube

https://en.wikipedia.org/wiki/Magic_eye_tube
84•peter_d_sherman•3d ago•23 comments

AnkiDroid: Google Play no longer allowing Open Collective donation link

https://github.com/ankidroid/Anki-Android/issues/21656
842•hexa555•16h ago•253 comments
Open in hackernews

Pglocks.org

https://pglocks.org/
80•hnasr•1y ago

Comments

whilenot-dev•1y ago
I'm a bit lost here.

Locking is a challenging problem in complex systems. Is this list to be interpreted as a "TODO: get rid of locking conflicts in future releases" or more a "NOTE: be aware there are known conflicts that will not change - find ways to work around them"?

EDIT: Also, is the creation of this list an automated or a manual effort?

tux3•1y ago
I think this is intended as educational material, not a list of things to fix.

The locks are here by necessity, it is not so easy at all to get rid of them. And even in special cases where it is possible, the complexity you have to introduce is not to be taken lightly...

If even a tenth of these disapppeared, it would be incredible, in a very surprising way.

atombender•1y ago
The creator looks like a developer and teacher, not a Postgres core team member. So I assume this is for documentation purposes.

I actually like this a lot, as there isn't a single place in the Postgres documentation that lists all the possible locks; it's spread out all over. Having a quick reference for what kinds of commands you'd be blocking with your transaction is valuable.

It's pretty evident that the pages have been programmatically generated, but I'd love know what it's generated from. I think you can derive this information from the documentation, but not sure if you can do it in an automated way without an LLM.

braiamp•1y ago
> there isn't a single place in the Postgres documentation that lists all the possible locks

Did you read this page? https://www.postgresql.org/docs/current/explicit-locking.htm...

atombender•1y ago
That's a great page, but it has several issues.

First, it isn't complete; as I said, the locking behaviour is spread out all over the Postgres documentation. For example, that page doesn't list what locks DROP INDEX takes. To find that out, you have to go to the documentation page for that command and read it carefully. In fact, really carefully — the locking behaviour is only documented under the section about CONCURRENTLY.

The page also doesn't list what possible commands are then blocked. Locks interact in subtle (and incorrectly named!) ways that are explained in the tables on that page ("Conflicting lock modes"), so to understand if something will block something else you have to look at the two commands you are curious about and then look at how their locks interact.

gulcin_xata•1y ago
I agree, it is not so straightforward to find out.
braiamp•1y ago
These are database locks, which means that depending which arrives first, the later transaction has to wait till the first one finishes to complete. These locks are about SQL commands and which commands can run concurrently with the others. There's a graph here of how that looks like https://pankrat.github.io/2015/django-migrations-without-dow...

Usually for maximum performance (minimum latency, maximum throughput) you want to have operations not lock each other, unless absolutely necessary, in which case you want them to be short.

whilenot-dev•1y ago
You make it sound like the conflict is just affecting performance and won't result in a deadlock. So it's for performance aware postgres clients/users, and not for postgres developers?
andyferris•1y ago
It is a guide for developers using postgres as a client, who need to write systems that don't deadlock, are performant and are correct. These are the (rather sharp) tools that postgres provides for doing so (or else you can use e.g. serializable isolation and optimistic concurrency, but in my experience that has too many false positives and bail out rather eagerly, whereas these tools let you be very precise and granular).
mebcitto•1y ago
Other relevant talks/blogs that I found really useful for understanding Postgres locks are:

* Unlocking the Postgres Lock Manager by Bruce Momjian: https://momjian.us/main/writings/pgsql/locking.pdf

* Anatomy of table-level locks by Gulcin Yildirim Jelinek: https://xata.io/blog/anatomy-of-locks

pasxizeis•1y ago
Shameless plug: I wrote a tool[1] that executes a given migration against a test database (e.g. in your CI) and reports back what locks it acquired.

The rationale being to have a "lock diagnostics report" commented in your PR's migration file.

It's a prototype and has a few rough edges and missing functionality, but feedback is more than welcome.

[1] https://github.com/agis/pglockanalyze

jononor•1y ago
Very practical! Locking is one of the things that can really bite when doing migrations.