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
![](/static/devrant/img/pipeless-devrant-banner-white.png)
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
-
LOVE how these companies are keep publishing their "AI models" without verifying or explaining their architecture, their data collection process, and any validation scores.
Like, I am to just take your word for it working "better" because of a study done by the school of PSYCHED(🤪)?2 -
In CSS, never ever enlarge anything by hover. There will exist a set of cursed cursor positions somewhere on the edge of fully zoomed out and fully zoomed in states, which will make your UI element twitch between two states at 60+ FPS.
If you want this effect, wrap the element you want to enlarge in a wrapper whose size won't change. Add :hover state on the wrapper, not the element, and change the element in that selector. It will make the curse go away.
wrong:
.zoom:hover { transform: scale(1.1) }
right:
.zoom-wrapper:hover .zoom { transform: scale(1.1) }2 -
I love waiting 30 minutes for phsyx to finally fucking be done compiling my god can you just speed uuuuuup5
-
I hate quotes.
Just handed out a quote. Had to look through the project, guesstimate everything. Hard to do anyway accurately. Write bunch of stuff up. Easily took me in the end around 4 hours.
4 hours just to have someone tell me, I am too expensive. I mean, at this part it is a gamble. The other side accepts my quote or denies it. But, if they deny it, I worked for free. And that's bugs me.
But hey, next company, guess what, the hourly rate, there is the quote for the last company hidden inside and for all other companies who rejected my offer divided by all the companies who hired me. You're not only paying my fee, but for all quotes that got denied. Surprise!
Anyway, it is sent off. Now, the waiting begins. Time to find some work to fill the waiting.4 -
Google Maps: Hey you are at restaurant XYZ! You wanna see the menu?
Me: Yeah, why would I want to see the worse edition of the menu on maps! If only I could just move my eyeballs slightly... -
Has anyone ever tried using socket.io through a cloudflare tunnel on Ubuntu server in Oracle Cloud?
Everything works great locally. Everything works great on my home windows machine through a cloudflare tunnel3 -
Day 19 of starving myself to death challenge.
I’m planning to fast again. That deep relaxation with zero twitching is the sensation I crave so much.
It’s 9:00, and I have the entire day ahead of me. Wish me luck.5 -
I can't use DeepSeek without signing up. Someone tell me what's behind this thin wall separating us?11
-
Did you know that long before Eipstein and other Weinsteins were cool, we had our own pedo scandal in Belgium?
I remember because it was a whole pedocriminal ring in higher ups in the governement, but what I mostly remember was the name of the dude.
Dutroux. It's funny because in french, trou means hole. That shit would be scripted you wouldnt' believe it5 -
Police bears, now!
- sense of smell 7 times better than that of a dog
- runs very fast
- intimidating
- proven to be very smart and trainable, google Wojtek the bear7 -
nervously waiting to see if you get the layoff email
unfortunately also need to continue working in the meantime6 -
Same phone, same pocket. If 5G is enabled it causes me pain in my leg. If I have it set to 4G it doesn't. I bought this phone because I wanted 5G speeds and my old phone was doing stupid shit. Now I have a newer phone I can only run in 4G.
I hate technology. I hate big tech companies. They can all eat shit. I think they do this on purpose.
No, I don't need your alternative theories or fucking gaslighting. Its not some bullshit cumulative trauma. I have been running it in my pocket for 2 months with zero pain. Fuck off. I am done placating people who know better than me. You fucking don't.
Woke up at 3am this morning and couldn't sleep. I am feeling very testy today. Not sure if I am going to need to puke later. My stomach is doing the "I might be sick" thing when flu is coming on. I hate that shit.
Oh, and Android keeps popping up random shit for features I don't use. I don't use Digital Assistant. I have that as turned off as I can. But today it popped up asking me if I want to use Gemini. No, I fucking don't you incompetent assholes. The only advice I can find is enable and then disable Gemini. But that causes you to agree to some bullshit AI terms. Just leave me the fuck alone assholes!15 -
It's fucking incredible how boring work can be.
There is literally nothing exciting or new or challenging whatsoever.
I swear if we don't get any interesting projects soon I'm bailing after I finish my training, no matter what they offer me.
I can't work like this. It's only tickets, tickets, tickets, tickets, tickets...14 -
Test should be independent and isolated from each other so that they can be run in any order and still produce same result.
I thought we all know this. I was solving an online test were am to validate name,email, ID e.t.c with some constraints given on each field without using a validation library.
some unit tests were written which I can clearly see but can't modify(made sense) but if I choose to validate email it's unit test will not pass until I validate name, and this happens as long as you dont follow the order, this doesn't make sense.
my conclusion, it's either this is intentional or someone has done a bad job. I think this is a bad job since there is no instruction that gives any clue about this.
what do you think about this ?2 -