Details
Joined devRant on 12/16/2019
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
-
The quality you perceive your code to be 6 months after writing it is inversely proportional to the quality you perceived it to be when you wrote it.10
-
I've been an Apple user for 13 years exclusively using macbooks and an iphone. It didn't start that way.
Today, I'm immensely enjoying Windows 10. It runs smoothly, it's so beautiful. I might end up building a gaming PC to further enjoy it.
God I've wasted so many good years.10 -
Honestly, nothing kills your brain cells faster than doing the same repetitive tasks at work, day in and day out. It’s like I'm just on autopilot—pushing buttons, running scripts, rinse, repeat. At some point, I start wondering if I’m a dev or just a glorified robot.
And to keep my sanity intact? Competitive programming. Yeah, that’s how I free my mind—throwing myself into algorithmic problems during my break time, just to remind myself that there’s more to life than the mundane loop of tasks at work. I’ll take an NP-hard problem over this any day. At least that makes me think.6 -
fuck apple. the overprised piece of shit that is still fucking stuck at 8gb of ram, my 6 year old andriod has 8gb. apple doesnt even fucking let you fix anything. at least with the newest ios they let you change batteries. how the fuck are you supposed to use a macbook with 8gb of ram without destroying the ssd by using swap. their piece of shit unibody anti repair garbage that you cant even change the keyboard in. the m2 chip runs at 120 degrees celcius because if a piece of shit cooling. like you would need a fan spinning at 120 degrees per nanosecond to fucking cool that thing. sometimes it cant even play a youtube video smoothly.18
-
In addition to rewrite everything that's on my resume I hate having to create a profile when job hunting, just let me upload my resume for fuck sake
-
If I told people what’s going on at my job right now, they would tell me to stop using them to validate my standup script.1
-
Me everytime before our daily meeting:
"Breath in Breath out ...
I am not gonna pick a fight with anyone today ..."4 -
Sooner or later, you'll need a VPN access to get an accurate information within the US. The population is fat from garbage food, and now they will be fat in retardness from their media.8
-
Sometimes I just don't know what to say anymore
I'm working on my engine and I really wanna push high triangle counts. I'm doing a pretty cool technique called visibility rendering and it's great because it kind of balances out some known causes of bad performance on GPUs (namely that pixels are always rasterized in quads, which is especially bad for small triangles)
So then I come across this post https://tellusim.com/compute-raster... which shows some fantastic results and just for the fun of it I implement it. Like not optimized or anything just a quick and dirty toy demo to see what sort of performance I can get
... I just don't know what to say. Using actual hardware accelerated rasterization, which GPUs are literally designed to be good at, I render about 37 million triangles in 3.6 ms. Eh, fine but not great. Then I implement this guys unoptimized(!) software rasterizer and I render the same scene in 0.5 ms?!
IT'S LITERALLY A COMPUTE SHADER. I rasterize the triangles manually IN SOFTWARE and write them out with 64-bit atomic image stores. HOW IS THIS FASTER THAN ACTUAL HARDWARE!???
AND BY LIKE A ORDER OF MAGNITUDE AT THAT???
Like I even tried doing some optimizations like backface cone culling on the meshlets, but doing that makes it slower. HOW. Im rendering 37 million triangles without ANY fancy tricks. No hi-z depth culling which a GPU would normally do. No backface culling which a GPU with normally do. Not even damn clipping of triangles. I render ALL of them ALL the time. At 0.5 ms7 -
wow, using multiple LLMs in parallel instead of 1 serial LLM produces better results! who could have thought!!!!
https://hao-ai-lab.github.io/blogs/...
god i am so fucking sick of this rat race
older devranters, is this really just ad nauseum hype repeats until i die? should i just stop raging at the universe and give up?2 -
If you're a PO; Please don't make the sprint review take almost 2 hours. Put it in text, make tickets, make roadmap and show it me that way. I've forgotten 90% of the meeting by the time I speak to you in the next daily.
I hate meetings. Waste of fucking time, especially when all you do is listen to what the PO wants for 1 hour and then both sides forget it the next day.
Use-fucking-less.1 -
Angular - object oriented programming
React - functional programming
---
Now i fucking understand why nextjs does not have any design patterns. No folder structure for it either. Every project is fucking random and you need to learn every fucking project from scratch cause people stuff shit into different folders and file names1 -
*euro-based rant incoming*
"left or right? left or right?!"
DUDE! I'M RIDING A SMALL MOUNTAIN BIKE WITH A FUCKING HEAVY TRAILER OF GROCERIES AND YOU ARE IN A FUCKING E-BIKE!!! SHUT THE FUCK UP AND GO AROUND ME PUSSY!!!! I'M NOT GOING TO GRIND UP AGAINST THE SIDEWALK WITH MY TRAILER.... BECAUSE ITS A FUCKING TRAILER, AND ITS FULL OF FUCKING GROCERIES!!!!!!
god, fucking boomers... i swear to god if i get one more rube talking to me while i'm biking and saying i should "stay to the right" when EVERY time i'm CLEARLY right of the middle of the road, i'm going to start yelling back rude comments and put the fucking low IQ assholes in their place... (probably what I should have done from the first place. why are we to take shit from them, when they own 75% of the wealth but are 25% of the population.) absolute fuck sticks get the fuck off my road, go ride off a cliff5 -
The current state of wordpress "web development" makes me want to punch myself in the balls.
I remember when we coded a lot of stuff, now everything is janky drag and dropping, all plugins have premium versions with the actual features you need, templates are more and more full of dependencies that are trash. Wordpress is ruined. I want it to die already.4 -
How is it, that features goes thru the entire mill of dev, staging, preview.
Then when deployed to production, things blow up..
Turns out, columns are nullable only in production DB and of course, those happen to be null in there.
If I had a dime for every time I’ve seen shit like this…
(╯°□°)╯︵ ┻━┻7 -
The entire modern gaming ecosystem is a scam.
I added The Crew: Motorfest trial version to my library for free.
Click on Install and it downloads 43 GB of data.
Now it's time to launch.
Click on launch and Ubisoft Connect takes over and it starts downloading another 43 GB??????
WTF ??
If I can't even get the trial version of a game without nearly wanting to kill myself, how does the company expect me to pay full price for it?
Piracy FTW. Fuck all the companies.16 -
this time i'm writing down the fucking dumbass docker nginx configuration and pasting on my forehead
every fucking time some letter or IP address is wrong.
just installing the standalone nginx that actually works every fucking time and doesn't pull some idiotic docker shit on me1 -
I just had to drill an error reporter through the entire Orchid codebase for multiple fatal error reporting. The caller constructs a reporter and passes it into the interpreter, various internal interpreter functions put errors into it and return meaningless but valid substitute values, then the caller checks the reporter for recorded errors and avoids using the return value if there were any.
I have recreated ERRNO in a high level language. -
i fall in love with every software that have a purpose but an ugly UI and do the job well, devrant for example, how about you ?22
-
Your yearly reminder that Wordpress enjoys a >40% market share of all websites.
https://kinsta.com/wordpress-market...
It looks like it is sitting at 42.7% now. It peaked in 2022 at 43.2%. So it did slip over the last 2 years.7 -
I barely have any energy to actually write something or reply something nice under all your posts so I'll be brief:
Happy New Year Everybody!
I wish to all of you that 2024 will treat you better than previous years ^_^
Have a fantastic year everyone <3 <3 <32 -
God why do I even log in anymore...
Just seen on LinkedIn: "Some exciting news will be shared soon. Stay tuned. 🎉✨"
Dude, literally not a single sad fuck gives two shits about your dumbass fake garbage. Just stfu
Maybe if you spent more time building product than posting on LinkedIn, you'd make some headway.1 -
when you run lighthouse on some tech "guru" with 50K subscriber's website and can laugh when they don't even have alts on images
hahahahahahahaha clowns
to be brutally honest, you need to know the basics before attempting to teach anyone anything, i don't care how boring it is
🤡🤡🤡🤡🤡🤡🤡🤡🤡15 -
An ability to port all Windows games to Linux without performance loss due to bad ports and bad drivers so I won't have to dual boot anymore.5
-
So I upgraded my 8 year old Acer Aspire 7250 with Linux Solus and performance increased OVER 9000000000
FUCK YOU MICROSOFT I AM GOING LINUX!!!16 -
Pessimist: a O(2^n) algorithm's performance decreases exponentially as input increases.
Optimist: a O(2^n) algorithm's performance increases exponentially as input decreases.2 -
PROBLEM: A tickets' company came to us last autumn. They said they have severe performance problems and asked us to help.
SOLUTION: covid and quarantines. All events have been ceased, noone's buying any tickets any more. Performance problems are no more. FIXED.
PROBLEM: Another company came to us recently. They said they have severe performance problems with their huge databases and asked us to help.
SOLUTION: a few days of heavy rain and their datacenter was flooded. along with the backup servers. No more data, no more performance problems with large databases. FIXED
Solving problems genie style!
Who's next?8