frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Migrating the main Zig repository from GitHub to Codeberg

https://ziglang.org/news/migrating-from-github-to-codeberg/
452•todsacerdoti•5h ago•309 comments

Penpot: The Open-Source Figma

https://github.com/penpot/penpot
159•selvan•4h ago•20 comments

DIY NAS: 2026 Edition

https://blog.briancmoses.com/2025/11/diy-nas-2026-edition.html
110•sashk•4h ago•38 comments

Voyager 1 is about to reach one light-day from Earth

https://scienceclock.com/voyager-1-is-about-to-reach-one-light-day-from-earth/
867•ashishgupta2209•17h ago•305 comments

Willis Whitfield: A simple man with a simple solution that changed the world

https://www.sandia.gov/labnews/2024/04/04/willis-whitfield-a-simple-man-with-a-simple-solution-th...
27•rbanffy•2d ago•2 comments

Coq: The World's Best Macro Assembler? [pdf] [2013]

https://nickbenton.name/coqasm.pdf
39•addaon•2h ago•20 comments

Music eases surgery and speeds recovery, study finds

https://www.bbc.com/news/articles/c231dv9zpz3o
19•1659447091•2h ago•0 comments

Running Unsupported iOS on Deprecated Devices

https://nyansatan.github.io/run-unsupported-ios/
122•OuterVale•8h ago•40 comments

S&box is now an open source game engine

https://sbox.game/news/update-25-11-26
280•MaximilianEmel•11h ago•93 comments

Gemini CLI Tips and Tricks for Agentic Coding

https://github.com/addyosmani/gemini-cli-tips
242•ayoisaiah•12h ago•84 comments

Functional Data Structures and Algorithms: a Proof Assistant Approach

https://fdsa-book.net/
31•SchwKatze•5h ago•3 comments

A Fast 64-Bit Date Algorithm (30–40% faster by counting dates backwards)

https://www.benjoffe.com/fast-date-64
309•benjoffe•4d ago•65 comments

C100 Developer Terminal

https://caligra.com/
62•matthewsinclair•7h ago•58 comments

Fara-7B: An efficient agentic model for computer use

https://github.com/microsoft/fara
111•maxloh•11h ago•37 comments

Principles of Vasocomputation

https://opentheory.net/2023/07/principles-of-vasocomputation-a-unification-of-buddhist-phenomenol...
3•eatitraw•1h ago•0 comments

DSP 101 Part 1: An Introductory Course in DSP System Design

https://www.analog.com/en/resources/analog-dialogue/articles/dsp-101-part-1.html
31•teleforce•6h ago•3 comments

The EU made Apple adopt new Wi-Fi standards, and now Android can support AirDrop

https://arstechnica.com/gadgets/2025/11/the-eu-made-apple-adopt-new-wi-fi-standards-and-now-andro...
394•cyclecount•9h ago•177 comments

Bring bathroom doors back to hotels

https://bringbackdoors.com/
580•bariumbitmap•8h ago•451 comments

G0-G3 corners, visualised: learn what "Apple corners" are

https://www.printables.com/model/1490911-g0-g3-corners-visualised-learn-what-apple-corners
3•dgroshev•3d ago•0 comments

Show HN: Era – Open-source local sandbox for AI agents

https://github.com/BinSquare/ERA
5•gregTurri•1h ago•1 comments

Evaluating Uniform Memory Access Mode on AMD's Turin

https://chipsandcheese.com/p/evaluating-uniform-memory-access
3•zdw•1h ago•0 comments

Comic Code Reviews

https://www.jona.ca/2025/11/comic-code-reviews.html
51•JonathanAquino•6d ago•26 comments

A woman on a mission to photograph every species of hummingbird

https://www.audubon.org/magazine/meet-woman-mission-photograph-every-species-of-hummingbird-world
118•zeech•4d ago•22 comments

Making my 1970's-style renderer multi-threaded

https://filiph.net/text/making-my-1970s-renderer-multi-threaded.html
18•Apocryphon•3d ago•3 comments

Ruby Was Ready from the Start

https://obie.medium.com/ruby-was-ready-from-the-start-4b089b17babb
39•thunderbong•2d ago•7 comments

Bonsai_term: A library for building dynamic terminal apps by Jane Street

https://github.com/janestreet/bonsai_term
20•azhenley•5h ago•6 comments

A cell so minimal that it challenges definitions of life

https://www.quantamagazine.org/a-cell-so-minimal-that-it-challenges-definitions-of-life-20251124/
269•ibobev•21h ago•118 comments

How Does Microwaving Grapes Create Plumes of Plasma?

https://www.pbs.org/wgbh/nova/article/how-does-microwaving-grapes-create-plumes-plasma/
43•wredcoll•3d ago•15 comments

Alan.app – Add a Border to macOS Active Window

https://tyler.io/2025/11/alan/
114•donatj•11h ago•67 comments

Optery (YC W22) Hiring CISO, Release Manager, Tech Lead (Node), Full Stack Eng

https://www.optery.com/careers/
1•beyondd•14h ago
Open in hackernews

QueryLeaf: SQL for Mongo

https://github.com/beekeeper-studio/queryleaf
23•tilt•6mo ago

Comments

ttfkam•6mo 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•6mo ago
https://www.ferretdb.com/
VWWHFSfQ•6mo 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•6mo ago
this makes so much sense.

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

etse•6mo 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•6mo 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•6mo ago
Curious if there is something similar that works with sqlite.
maxbond•6mo ago
As of 3.38 (or 3.45 if you meant a binary JSON structure specifically) https://sqlite.org/json1.html
zareith•6mo 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•6mo ago
There is FerretDB v1, which provides MongoDB protocol for SQLite. See https://github.com/FerretDB/FerretDB/tree/main-v1
zareith•6mo 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•6mo ago
FerretDB v2 is built on top of this extension. See https://github.com/FerretDB/FerretDB
gavinray•6mo 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•6mo ago
That driver is read-only
gitroom•6mo 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_•6mo 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.