frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I turned my security cameras into an automatic bird identification system

https://jasontucker.blog/how-i-turned-my-security-cameras-into-an-automatic-bird-identification-s...
391•speckx•11h ago•98 comments

Playa Phone

https://playaphone.com/
531•cutoff•12h ago•193 comments

2004 RuneScape fit a multiplayer RPG into 56k dial-up

https://jkm.dev/posts/how-2004-runescape-fit-a-multiplayer-rpg-into-56k-dialup/
43•fagnerbrack•2h ago•27 comments

A walkable ASCII cyberpunk city in one HTML file [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
243•keithcarolus•9h ago•32 comments

Terence Tao explains 6 essential mathematical concepts [video]

https://www.youtube.com/watch?v=OOMx2BHHWtE
264•matthewsinclair•1d ago•31 comments

Lion-man

https://en.wikipedia.org/wiki/Lion-man
73•gurjeet•2d ago•32 comments

Dwarf Fortress is getting the mother of all magic updates

https://www.rockpapershotgun.com/dwarf-fortress-is-getting-the-mother-of-all-magic-updates-extend...
326•Tomte•4d ago•121 comments

Borges Labyrinth in Venice reopens to the public

https://www.wallpaper.com/design-interiors/labirinto-borges-venice-reopening
24•gone35•3d ago•3 comments

Develop Cross-Platform CLI and GUI Tools with Tcl/Tk

https://cgicoffee.com/blog/2026/04/tcl-tk-develop-cross-platform-cli-gui-tools-tutorial-guide
58•aryonoco•5h ago•34 comments

Evidence of Fraud in an Influential Study About Procrastination

https://datacolada.org/138
95•Anon84•4h ago•75 comments

Apple caught off guard by AI demand for Mac Mini and Mac Studio

https://www.macrumors.com/2026/08/30/apple-unexpected-mac-mini-and-studio-demand/
332•thm•15h ago•379 comments

Show HN: Laser Graffiti

https://laser.consti.de
138•con•2d ago•29 comments

Smartphone LED detects hidden cameras with AI

https://www.chosun.com/english/industry-en/2026/08/30/SBFXUIJQYZEARKP5T4FBAY25HQ/
166•geox•1d ago•48 comments

Run macOS Software on Linux

https://www.darlinghq.org/
147•Bluestein•4h ago•50 comments

Cheap GPS jammers are filling the world with navigation dead zones

https://www.wsj.com/tech/gps-jammers-dead-zones-e76f3261
80•vinnyglennon•1d ago•93 comments

I think the military commissary's freezers were hacked

https://signalandsilence.substack.com/p/i-think-someone-hacked-the-commissary
278•jcurbo•16h ago•157 comments

RavynOS: Pre-alpha open-source OS based on Darwin, FreeBSD, Apple open-source

https://ravynos.com/
180•Bluestein•11h ago•105 comments

ChatGPT Work Tool and Skill Reference

https://codex-tool-reference.simonw.chatgpt.site/
194•ijidak•13h ago•52 comments

'Mad honey' that can stop your heart is being sold online

https://phys.org/news/2026-08-mad-honey-heart-sold-online.html
160•samizdis•3d ago•98 comments

Autonomous (YC F25) is hiring engineers

1•dkobran•6h ago

Reverse engineering my ADHD test

https://nullpt.rs/reverse-engineering-adhd-test
165•hazebooth•4d ago•88 comments

Internet centralization and the original sin of NAT

https://dreamstation.systems/personal/ntppost.html
194•robinpie•1d ago•150 comments

Ex-Crips leader found guilty in 1996 murder of rapper Tupac Shakur

https://www.bbc.com/news/articles/c24j5192j7jo
53•1659447091•1h ago•18 comments

Snakes and Ladders

https://entropicthoughts.com/snakes-and-ladders
19•surprisetalk•5d ago•9 comments

Visualizing Combos in Judo in R

https://www.r-bloggers.com/2025/05/the-dynamics-of-the-gentle-way-exploring-judo-attack-combinati...
15•asaiacai•5d ago•0 comments

No country for mediocre mathematicians

https://garvvee.substack.com/p/no-country-for-mediocre-mathematicians
174•reasonableklout•2d ago•101 comments

Google Has Removed MV2 Extensions from the Chrome Web Store, Including UBO

https://webiterate.dev/google-removed-extensions-ublock-origin-108/
611•twapi•6h ago•459 comments

Launch HN: Almanac (YC S26) – AI that knows your company

https://usealmanac.com/
51•kushagrchitkar•12h ago•45 comments

Optimal transport is art: images to collection of optimally placed particles

https://blog.wolfram.com/2016/05/06/computational-stippling-can-machines-do-as-well-as-humans/
3•adec314•2d ago•2 comments

Launch HN: Hebbian Robotics (YC S26) – Build scalable robotics data pipelines

https://github.com/Hebbian-Robotics/hflow
44•kstonekuan•12h ago•11 comments
Open in hackernews

QueryLeaf: SQL for Mongo

https://github.com/beekeeper-studio/queryleaf
23•tilt•1y ago

Comments

ttfkam•1y ago
Would much rather have "Mongo" for SQL like this:

https://github.com/microsoft/documentdb

I am skeptical that SQL with Mongo backing it would be at all performant except in the most trivial cases. On the flip side, Postgres's jsonb indexing makes the inverse very doable.

Zambyte•1y ago
https://www.ferretdb.com/
VWWHFSfQ•1y ago
We're seeing a convergence of document DBs adding relational features, and relational DBs adding document features. At this point I find the best of both worlds to simply be PG with JSONB.

    create table document (
      id uuid primary key default gen_random_uuid(),
      doc jsonb
    );

This alone will give you a huge number of the features that Mongo provides, but also the full power of Postgres for everything else.
victor106•1y ago
this makes so much sense.

I also wonder if there are some specific capabilities of MongoDB that this pattern does not support?

etse•1y ago
Maybe not capabilities, but I'm wondering if Postgres has gotten any easier to scale horizontally. The administrative overhead of scaling and maintenance with MongoDB seemed lower to Postgres to me.

Would love to hear from others with more Postgres than I.

ttfkam•1y ago
Excluding conversations about MongoDB compatibility, PG16 added bidirectional replication for multiple writers and there are Postgres-compatible options out there for a distributed database including Citus, EDB Postgres Distributed, Yugabyte, CockroachDB, Aurora Limitless, etc.

The choices require some nuance to figure out a best fit, but then again so does any MongoDB installation (despite the marketing hype to the contrary as there are no free lunches).

You might be surprised how far most folks can typically scale with just read replica(s) on a reasonably sized writer. Add in bidirectional replication for multiple writers, and you can go even further. Beyond that, even vanilla Postgres can do it, but you'll need to do some combinations of partitioning and foreign tables.

zareith•1y ago
Curious if there is something similar that works with sqlite.
maxbond•1y ago
As of 3.38 (or 3.45 if you meant a binary JSON structure specifically) https://sqlite.org/json1.html
zareith•1y ago
We can use json type, but the dx around directly using that is not comparable to mongodb. Which is why I was looking for a similar abstraction.
aleksi•1y ago
There is FerretDB v1, which provides MongoDB protocol for SQLite. See https://github.com/FerretDB/FerretDB/tree/main-v1
zareith•1y ago
They seemed to have moved away from that.

From https://docs.ferretdb.io/migration/migrating-from-v1

> Unlike v1.x that provides options for PostgreSQL and SQLite as backend, FerretDB v2.x requires a PostgreSQL with DocumentDB extension as the backend

aleksi•1y ago
FerretDB v2 is built on top of this extension. See https://github.com/FerretDB/FerretDB
gavinray•1y ago
It's somewhat of a secret, but AWS's JDBC driver for DocumentDB supports Mongo as well

Let's you interact with Mongo as if it were a regular SQL JDBC database

https://github.com/aws/amazon-documentdb-jdbc-driver

bdcravens•1y ago
That driver is read-only
gitroom•1y ago
Honestly, putting Mongo and SQL together always confuses me a bit. I'm way more comfy with Postgres and jsonb. Anyone else feel like scaling Postgres is still kinda a pain?
sparky_•1y ago
I can appreciate the technical aspect of a translation layer, but I struggle to understand the use case for a tool like this. If your data is inherently relational, then you should be using a relational store anyway. And if it isn't, trying to hammer it on-demand into something that looks relational is going to eat you with performance implications. Unless I'm missing something.