Details
-
AboutYou know who.
-
SkillsYou know what.
-
LocationSome nice park.
-
Website
-
Github
Joined devRant on 7/20/2025
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
-
They discovered that they can put features behind a beta toggle and now everything is half-assed and hidden behind beta ffs.3
-
Apparently Guillermo Rauch, creator of NextJS and CEO of Vercel, and a fellow citizen of Argentina, is fascist. :( So much for the pride he inspired.29
-
Nothing worse than having to wrangle multiple coordinate systems for model files and your engine. Extra points when one is left handed and one right handed
I actually want to die5 -
Horror Story Time:
Acouple thousand years ago, before the great plage and the rise of the machines I met the founders of a startup , they visited silico valey, one of them worked in san francisco, but they were struggling, So they fired the senior engineer who built their system, and decided to contract out their development.
Their system relied heavily on Location data, it was very central for their business and they used Google APIs, so a few months after they let go of the dude, google starts billing them. Founders did not want to pay so they contracted out a junior dev to fix the issue... And he fixed it.
On that same weekend they attended a big convention, invested a good chunk of money there, registration numbers skyrocketed, huge success. Come monday morning they call me on Skype.
There was no location data in the new accounts, zero, zilch, nada. The "fix" the freelancer did was disabling Google integration altogether, They never tested the stuff properly, just accepted the changes and went with it.
I don't know if they went under because of this, or if this was just the a part of the issue. But sure enought the company lasted less then a Year after that.5 -
I've been working on this work project alone for over a year. It's mature, it's standardized, it has documented conventions for code style, documentation, commit messages, etc.
A team member contributed recently, but used a different commit message format. No biggie, I asked him to be consistent with the older messages from now on, he complied. For a while, until he got it wrong in a different way. This repeated several times. I was finally annoyed enough to set up a push filter on the repo to enforce the correct format.
One day, he complained in front of the entire team that he was forced to follow a standard on my project. That was terrible somehow, because no other project had an enforced standard. He makes a big deal out of getting rejected by a regex.
The commit message convention in question? English, simple past. "Fixed X", "Implemented Y" etc. So traumatizing, I know. How can you get something that simple wrong? By using your native language instead of English, English but imperative form, meaningless "wip" or "fix" or even "more fix" messages. Is this laziness? I think so.
It gets better. He tried to convince the team to agree on a single standard for all projects, so that "rejected pushes never happen again". The standard he advocated for: Conventional commits. The one with structured prefixes for type, scope, a breaking change indicator and some optional components.
But a simple English sentence was too much to ask for. People, sometimes.2 -
Once, we hired this one intern as a mobile games tester.
His first day on the job. He received his laptop for work.
He sits down by his desk, takes out his headphones, plugs them into the laptop, && starts playing his favorite music. _Now_ he can finally test the game in peace.
...the fuck?
I _get_ how testers can get sick of hearing the same crappy music, SFX, && other sounds listening to them day in && day out for days, weeks, months, etc. _This_ guy, however, pulls that shit on the first day?
Sadly, the lead either had never noticed that or had never taught the wannabe better.
Good thing !all testers are like that.3 -
> It is true that there is no person who wishes to be disliked. But look at it this way: what should one do to not be disliked by anyone? There is only one answer: it is to constantly gauge other people’s feelings, while swearing loyalty to all of them. If there are ten people, one must swear loyalty to all ten. When one does that, for the time being one will have succeeded in not being disliked by anyone. But at this point, there is a great contradiction looming. One swears loyalty to all ten people out of the single-minded desire to not be disliked. This is like a politician who has fallen into populism and begun to make impossible promises and accept responsibilities that are beyond him. Naturally, his lies will come to light before long. He will lose people’s trust, and turn his own life into one of greater suffering. And, of course, the stress of continual lying has all kinds of consequences. Please grasp this point. If one is living in a such a way as to satisfy other people’s expectations, and one is entrusting one’s own life to others, that is a way of living in which one is lying to oneself, and continuing that lying to include the people around one.12
-
@retoor I am sick of devrant being slow as shit, I remember you had an alternative, post it here please so we can abandon this sloth of an app6
-
Story:
Useful lesson I learned in a JavaScript book:
"Classes are abstract data types in the sense that they are a layer around the complexity (encapsulation). Their singular nature allows them to be reused without being rewritten everywhere.
A good analogy is thinking of classes as appliances; the complex circuitry and components that an appliance comprises of are made by different people than the abstract shell around these components, of which (another) team only needs to know which buttons to access which parts.
A class abstracts away the internal complexity (components) and only exposes a public interface (the buttons) that the user (yet another group, comparable to the consumer of the class) is going to use."
It reminds me of how Google uses the Facade pattern to only expose the search box and the button as its public interface and all the complex architecture is hidden away.
This helped clarify classes better for me.5 -
I'm tired. Guess I'd better give up on this marriage shit, take my tax money and hide in the wood. Fuck society.12
-
you know it's true love when one of you sighs because of something communism and then you rip into communism things people believe for 30 minutes
they say get married to those with the same values as you, and political leanings
ancap wins again, ty ty ty3 -
Guys apparently they added a rainbow in GTA and the right wingers are clenching their sphincters. .4
-
If everyone ranting here had access to DevRants source code and could comment and vote on changes, would you it become better or worse?4
-
Our CTO is leaving, the CEO decided to seize this once in a lifetime opportunity to cut costs and we'll have to do without CTO.
There is no way this software development company will still be operating 9 months from now without a fucking CTO and I have honestly never seen such a blatant example of deep mental retardation, be it by a manager or by the endless supply of sycophants tirelessly endorsing the dumbest idea I have ever heard of, as if they're not going to be jobless like the rest of us.6 -
What was the logic to b
Not store diffs of large file objects in git as opposed to storing a copy of the whole thing ? -
I avoided blogging about /pol for most of the year, until summer hit. I'd rather be writing tech articles, but I'm glad I got this out this week:
https://battlepenguin.com/politics/...
No matter where you are in the political spectrum, it will probably make you mad. 😇 But it will hopefully also make you think. 🤔
The most radical position in America today is the one that rejects both political parties.1 -
I came up with a really intuitive way to create a coroutine in Rust by passing the sender of an mpsc queue to a callback, then merging the receiver of the same mpsc with the future returned by that callback, but I must've cocked up somewhere because I'm pretty sure it leaks memory.
MPSC ports don't own each other in either direction, that was my first guess too.4 -
Boy I sure hope Rust / LLVM's devirtualization pass is as good as its infamy suggests!
https://devrant.molodetz.nl/preview...2 -
know the depths of evil, or be nuts, pretend it doesn't exist, make a fool of yourself to cope with it existing until you will yourself to forget?3
-
Need your brutal, honest feedback on a personal project. for years I've been frustrated by the same thing: my GitHub shows my code, but my resume is a garbage fire of buzzwords that doesn't capture how I think. All the real, hard-won lessons from debugging hell or a failed project just... evaporate.
I got tired of it. So I spent the last 2 months building a solution for myself and for devs like us.
It's called insightdeed. It's not another social network. It's basically a personal, public changelog for your professional brain. A place to dump your insights, post-mortems, and the 'why' behind your work, so you can prove your expertise instead of just listing it."
It's still super early, and this is where I need your help. I'm trying to figure out how to share this with more developers without being a cringy marketing person. Direct ads feel wrong for something like this.
So, my question to you all is: If you saw a tool like this that you may though be useful, how would you want to hear about it? A quiet post on a specific subreddit? A mention in a newsletter? A blog post on Hashnode?
I'm not here to spam. I'm here to test and build something. Any advice would be hugely appreciated.7 -
Canada is so owned by China's climate scam the only jobs for software development in Canada are carbon credits or some green energy nonsense... sigh how is this not a dystopia already. every industry and sector is shrinking but Canada keeps pumping more subsidies into the climate scam so it's the only thing that exists now
maybe we'll economic collapse and I can retire but I wanted to get more money first just in case10 -
What really is Vibecoding? Like where do we draw the line?
My general take is: vibe code is when someone without any knowledge produces code with AI without looking at the code.
But I have done that myself with small things, landing pages, throw away programs.
Can you be a vibe coder in one language and not in another language?
What if I know what the code does, but I'm not fluent on its syntax?
Let's say I write a C program myself, and ask AI to rebuild it in Go, will I be a C Coder, but a Go VibeCoder?25