this post was submitted on 13 Sep 2025
322 points (99.1% liked)

Programmer Humor

26496 readers
2347 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
top 46 comments
sorted by: hot top controversial new old
[–] muhyb@programming.dev 136 points 1 week ago

Jesus Christ, that's JSON Bourne.

[–] ThePyroPython@lemmy.world 124 points 1 week ago (1 children)

Yes that's right, it goes into postgres.

[–] fargeol@lemmy.world 71 points 1 week ago (2 children)

“You know what ELSE everybody likes? Postgres! Have you ever met a person, you say, ‘Let’s use some Postgres,’ they say, ‘Hell no, I don’t like Postgres’? Postgres is perfect!”

[–] thebardingreen@lemmy.starlightkel.xyz 33 points 1 week ago (2 children)

Yeah! Postgres is great!

  • Mutters something under his breath about MariaDB.
[–] marcos@lemmy.world 16 points 1 week ago

MariaDB

Let's schedule a meet-up at 00/00 year 0000 to talk about it.

[–] somerandomperson@lemmy.dbzer0.com 12 points 1 week ago* (last edited 1 week ago)

elephant walks in

[–] RustyNova@lemmy.world 15 points 1 week ago (1 children)

I 100% agree... If you don't need portable databases. For those, everybody like SQLite (even if it can be annoying sometimes)

[–] wetbeardhairs@lemmy.dbzer0.com 4 points 1 week ago (1 children)

You can pry sqlite out of my cold dead hands. Because I'll probably die while using it out of frustration due to the poor performance of triggers.

[–] RustyNova@lemmy.world 3 points 1 week ago (1 children)

Tbh trigger performance isn't that much of a concern unless you need to write lots of data, which most usage don't need.

Also try check statements instead or even re-evaluate your schema to prevent them if you really need to.

Personally my death would be multiple write transaction deadlocks. Sadly it doesn't play that well with async code, like with sqlx (rust).

[–] tatterdemalion@programming.dev 2 points 1 week ago* (last edited 1 week ago) (1 children)

My death was the fact that table lock acquisition is not FIFO.

https://sqlite.org/forum/forumpost/8d7d253df1b9811b4b76c2c4c26ac0740e73d06e9edfeb2ab8aabaebd899cbc8

Thankfully I can at least have FIFO in a single process by wrapping every write transaction in a mutex.

P.S. can't wait for turso's SQLite replacement to have feature-parity and sqlx support.

[–] RustyNova@lemmy.world 2 points 1 week ago

This is also part of my death, because it's much easier to not deadlock when you are FIFO.

Personally I went for the nuclear option, and any transaction is sent as a tokio task to make sure the transaction keeps getting polled despite other futures getting polled. Coupled with a generous busy timeout timer (60secs) and Wal mode, it works pretty well.

Probably should also put the mutex strategy (perhaps a tokio semaphore instead?) although due to lifetimes it might be hard to make a begin() function on my DB pool wrapper.

... Congratulations. You nerd snipped me. Time for it to go on the todo stack.

Hyped for it too, but wouldn't use until sqlx suport. Compile time checked queries are just so good. I don't use rustsqlite for that reason alone (you often don't need async SQLite anyways)

[–] cupcakezealot@piefed.blahaj.zone 36 points 1 week ago (2 children)

who needs any of that when you have microsoft access

[–] qaz@lemmy.world 16 points 1 week ago (2 children)

There is actually an open source alternative for that in the Libreoffice suite called "Base"

[–] tyfon@sh.itjust.works 4 points 1 week ago

I have used libre office base and found it's buggy mess.

  1. Not all drivers support all functions, so if you are wondering why some options are not present it's probably adapter not supporting it.
  2. Errors and help are usually empty or super generic like 'syntax incorrect'.
  3. Interface sometimes bugs out when long syntax is present in input fields
  4. Because of 1. It also doesn't support all syntax from Microsoft SQL, MySQL etc.

I sugest to use dbbever for any DB, it's different but at least it's not a buggy mess. Or pgAdmin for Postgresql. Or DB Browser for SQLite

[–] ksh@aussie.zone 3 points 1 week ago (1 children)

Is it actually any good for small personal projects? Just want someone who has used it to answer as I’m considering putting some work into it.

[–] qaz@lemmy.world 1 points 1 week ago

I tested it once and it didn't really impress me. Perhaps you can try using something like Grist.

[–] SCmSTR@lemmy.blahaj.zone 10 points 1 week ago

Ow, my integrity

[–] umbraroze@slrpnk.net 28 points 1 week ago

Yeah, I took one course where we used MongoDB. I was like "still unconvinced, but I'll keep this in mind if I run into situations not covered by PostgreSQL." ...I've not run into situations not covered by PostgreSQL. Everything will be covered by PostgreSQL.

[–] rikudou 26 points 1 week ago (6 children)

Just use Mongo, it scales so well!

Never understood why anyone chose Mongo. Though I have some funny memories getting rid of it because it was slowing the app down sooo much.

If you need something for storing JSONs and querying, just use ElasticSearch/OpenSearch.

[–] NigelFrobisher@aussie.zone 12 points 1 week ago

Oh god, all the people storing massive JSON documents, and then having to lock the whole thing to modify sub-entities.

[–] magic_lobster_party@fedia.io 6 points 1 week ago (1 children)

But is Elasticsearch web scale?

[–] nik9000@programming.dev 3 points 1 week ago

I say this with all appropriate irony: as the guy that deployed it at for Wikipedia, yes.

[–] Venator@lemmy.nz 4 points 1 week ago

Or add a column next to the json with some data about the json and index that.

[–] eager_eagle@lemmy.world 1 points 1 week ago* (last edited 1 week ago)

used OpenSearch in a recent project, but the number of annoyances with it are through the roof. From SSL certs setup to bad defaults in settings, and the fact it does type inference for indices requiring you to manually recreate the index, and the docker container that takes 30s to start every time...

If you can use mongo, just use that. Or pick something other than OpenSearch if that's overkill for you.

[–] Mirror Giraffe@piefed.social 1 points 1 week ago

Where I work we use mongo, it's not what I would've picked but i guess it helped early dev speed and bad practices like having productus do direct db edits to save a situation because the app isn't mature yet.

By now when collections are getting huge and documents as well we've had to archive more and more recent data, which causes problems, and we have to really make sure our queries are sharp or cost and lag will go through the roof.

With that said, it actually works pretty ok for a production platform with quite a big customer base, and there are many improvements we could do if we had the time.

If I were there at day one I'd have rooted for sql, mainly based on how much these different collections have to relate, but I don't think mongo is as horrible as many people make it out to be and it does have upsides.

[–] Flamekebab@piefed.social 1 points 1 week ago

I've used it for one small project and quite liked it. I struggle with the concepts behind relational databases and Mongo's approach was understandable for me.

[–] Psaldorn@lemmy.world 4 points 1 week ago (2 children)

Had to roll my own JSON storage system after spending weeks trying to get sqlite to work on Godot/android.

It took a day and will suck at scale because there are no indexes. It just goes through the whole file, line by line when you search for an id.

BUT IT WORKS.

Hopefully the repos and stuff I piled on top have made it abstract able enough I can move it to a real database if the issue ever gets resolved.

[–] sunbeam60@lemmy.ml 22 points 1 week ago (1 children)

I’m confused about your SQLite troubles … it compiles for pretty much everything - as long as you have a file system mapping.

[–] Psaldorn@lemmy.world 6 points 1 week ago (1 children)

It's not just me, but seems to affect Godot c# deployments to mobile

https://github.com/godotengine/godot/issues/97859

Worked fine on desktop

[–] sunbeam60@lemmy.ml 6 points 1 week ago (1 children)

Ahh, it’s not an issue about SQLite but about whether the right libraries are bundled by Godot. Got it, that explains it.

[–] Psaldorn@lemmy.world 1 points 1 week ago

It's weird tho because everything looks like it's there inside the apk. 🤷

[–] wetbeardhairs@lemmy.dbzer0.com 1 points 1 week ago (1 children)

Just store the JSON in a sqlite table with an extra column or two for commonly indexed stuff....?

[–] Psaldorn@lemmy.world 2 points 1 week ago

No, you misunderstand. Sqlite just does not work when it's packaged by Godot mono for mobile (see the ticket in the other replies)

It worked fine on desktop which made it more frustrating

[–] velxundussa@sh.itjust.works 3 points 1 week ago

I manage instances of both mongo and postgres at work.

I'll say Mongo OpsManager is pretty sweet, and HA is way easier on Mongo.

[–] goatinspace@feddit.org 3 points 1 week ago* (last edited 1 week ago)
[–] Shady_Shiroe@lemmy.world 2 points 1 week ago (1 children)

Wait you guys don't just write data to a .txt file?

/s

[–] ulterno@programming.dev 1 points 1 week ago

I don't use file extensions, so no .txt.

/s

[–] clot27@lemmy.zip -1 points 1 week ago

Pros and cons