Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API

From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Feed
All
Post Types
- Rants
- Jokes/Memes
- Questions
- Collabs
- devRant
- Random
- Undefined
Cancel
All
-
just spent a good three days of my week off trying to figure out how to containerize a couple of services. nothing crazy, two frontends communicating with the same backend and then having it all be handled via a nginx reverse proxy.
i cannot overstate how much i do not like docker at this moment in time. it seems like every time i run into a solved issue for any underlying technology, docker *requires* you to figure out some workaround to do it differently. obviously my use case isn't exactly the docker use case (i am NEVER going to redeploy these services anywhere else and i will only ever develop locally and run remotely) but i cannot imagine myself keeping sane trying to configure this for anything larger. things just don't make sense in my brain here.1 -
👨🏽💻 Switching between multiple Git accounts: work, personal, freelance?
Ever pushed a commit with Company A's email to Company B's repo? 😩🥶
Been there. Done that. Regretted it immediately.
I just dropped a step-by-step guide on how to set up Git so it automatically picks the right name, email, and SSH key based on your project folder.
No more manual config switching. 💡
✅ No more identity mix-ups
✅ No more commit shame
✅ Just clean, context-aware Git workflows 🙌
🔧 What’s inside:
- Multiple SSH key setup
- Smart .gitconfig using includeIf
- Folder structure that keeps you sane
- Bonus tips for HTTPS + personal token users
If you’ve ever yelled at Git (or yourself), this one’s for you.
👏 Drop a clap if it helps and follow for more dev-friendly tips!
👇 Read it here:
https://rhymezxcode.medium.com/how-... -
How is FBX the main format of blender when it is so damn bad
For the last 10 minutes I have tried exporting a model as fbx so that it has the same scale and coordinate system as in blender. That's literally the only job a model file format has to do
I still haven't managed to do it. How can a model format be this frustrantingly bad???13 -
when you figure out a solution to something, do you think it's you who figured it out or did "inspiration" come to you somehow, out of nowhere, with the answer?5
-
I met a german dude, in his 50s. Had a lot of tattoos, missing teeth and he is born in East Germany. I told him "heil hitler" "my fuhrer" and he said "oof... don't say it in Germany".
I want to buy a silver ring with swastika.11 -
Why has nobody built an actually GOOD (s)ftp client yet? It's sort of crazy that Filezilla is STILL the first result on google (my AV correctly identified the installer as adware because it has by-default-enabled adware downloads) and then the next is windows-only.
I almost wish there was a nicely made Electron app (or - much better - qt) just so the UI could be fucking acceptable.
Is it time for me to start my next unfinished project??5 -
ooooh so sleek
https://youtube.com/watch/... (cringe)
stuff: https://youtube.com/watch/...
7 years ago probably means it's bust
hehe punny. get it, jest?!1 -
for some reason, I have started to despise people who follow the rules, and people who conform
but I guess thanks to these sheeple I get to enjoy life18 -
I never understood the programming language discussion thing. In modern programming, all you do is gluing APIs together, no matter if they're third party or built-in. My JS code is literally 95% fetch() followed by querySelector.
All built-in APIs that do something useful are just linking C++ modules. If you're not doing stupid shit, Python is exactly as fast as C++ or Rust.
The only scenario where speed matters is algos. Guess what? You should write your algos in C and link them to your Node/Python/Go/whatever code. And don't even get me started on reinventing algos. Do you really think you can write an algo in one evening that will be more efficient than what the guy whose PhD thesis it was a part of?
Just because some engine parts require the precision only a million-dollar CNC machine can provide, doesn't matter you have to cut the whole car out of a solid block of high-performance engine block alloy.
Remember kids, sorting array in Python is always faster than sorting array in C, because Python's sort was written by someone else who's smarter than you, went through years of scrutiny and iteration, and doesn't have stupid novice algo complexity errors.
Grow up.30 -
Abortion should only be legal AFTER the 9 months period in my opinion.
It's when the fetus taste the best. Just a bit of slowcooking and it taste wonders paired with a bit of chardoney.41 -
Just spent 5h figuring out why sending a serial command wont trigger in U-Boot. Was literally soldering wires to the boad, decoded the entire line with a scope, used several adapters, downloaded the firmware again and again over serial and USB-dfu and a looking for alternative boards online just to find out cutecom was set to send no LF after a command so U-Boot thought i was still typing something. This is literally the semicolon joke you see splattered over normie coding memes.6
-
At previous company I had a side-task of helping out IT dept. w/ cataloguing of hardware for the testers.
The person previously tasked w/ this chose to use Google Docs, so I had no problems w/ expanding / updating the list.
Later on, a test lead of one of the projects had a bright idea of creating a copy of that list for their project.
After some time he approached me && started bitching about why I am !updating their copy of the list.
His reasoning?
- Because you're the 'list guy'.
- Because I'm asking you nicely to do it.
The exchange had been taking some time, but long story short: I stood my ground && basically told him to fuck off, given how it was _he_ && his team that decided to make a copy of the official list && I was definitely !going to accept the responsibility of additional work due to that choice.
Seriously. The fuck do these people think?
If he were to purchase e.g. an knockoff of an iPhone, the device broke down && he went to the Apple's repair center, they'd tell him to fuck off.
Which would be the right thing to do.
...fucking retards && their logic.
/* Also, it's always fun to watch people being ostensibly polite w/ their 'I'm asking you politely / nicely.' then demanding whatever it is they had been asking about, when they have absolutely no right asking for that thing, making _you_ look like an asshole. */4 -
If you put Web3 on your resume, I'm rejecting you without even looking at the rest of your resume.5
-
Cont. https://devrant.com/rants/12659551/... .
Imagine receiving three basically the exact same reports instead of just one.
When releasing games on consoles, there are some rules for basic quality the games have to meet that depend on the platform.
Some of those rules align across all platforms, but are written down as different test scenarios.
Let's say, the game mustn't crash && tests are listed as:
- Company A: Test 0.
- Company B: Test 1.
- Company C: Test 2.
If a crash affects all platforms, the _logical_ thing to do would be to write just one report, mention all affected platforms && also list all requirements that are failed due to this.
Leadership: 'No, we need to create separate reports for each affected platform.'
Result: Only one report gets actual attention, while all the others are left forgotten, living as zombies.
...sometimes I wonder whether such people are paid per report, given their approach.
/* For some context: I am dealing w/ a multiplatform project built using one of the more popular engines, making vast majority of issues present regardless of the platform. Creating separate reports makes absolutely no sense.
They changed their mind solely after this being brought up by the developers, though. */2 -
It's that time again because it needs to be remembered
https://devrant.com/rants/13347344/...
AI IS FUCKING RETARDED.
I would literally be ashamed to be one of those multibillionaire companies giving out trash or be ashamed to be recognized as someone which invested in it.
Jesus.
I tried out every model, local and online.
It's fucking trash for anything more than a preschool special kid could do.
I literally had it to code and it can't do anything beyond basic code without the need for me to supervise everything and patch this disaster everywhere. It feels like having that dumbass junior just arrived doing code and having to review every line because it could contain a death trap.
I tried to make it do a dieting plan.
I literally gave it everything.
Macros, kcal, a restricted list of 15 foods and asked to do some bulk cooking list to make the diet later.
It can't do basic math to figure out macros and not only, it fucking halluicinates like a crazy LSD druggie even doing a few lines of that shit.
It literally invents calories counts, macros and shit out of his stupid ass.
I tried literally to bring it by the hand in doing the tasks and it still fails.
You might say: Hey it's a "Language" model.
No, it doesn't matter. Amy discussion besides hi dumb fuck how are you soon turns into an AI mind trip where it churns and repeats stupid stuff.
No, it won't replace anyone anytime soon.
It's just a fucking joke13 -
Had quick stuffed mushrooms with cheese and ham in them. Marked safe from self caused rapid explosions today.10