this post was submitted on 06 Feb 2025
8 points (100.0% liked)

Programmer Humor

32028 readers
569 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 3 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] bijectivehomomorphism@programming.dev 0 points 1 year ago (1 children)

I remember my engineer being such a hardass on using v2 of our API and when I went to implement a feature, v2 didn't even have ANY of the endpoints I needed

[–] db0@lemmy.dbzer0.com 0 points 1 year ago (1 children)

I don't get why anyone would publish v2 when it not really on feature-parity. Do companies really start releasing v2 endpoints slowly?

[–] lime@feddit.nu 1 points 1 year ago

it's called the strangler pattern, where the new version is layered on top of the old and gradually replaces it.

it usually doesn't work.