Details
Joined devRant on 10/9/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
-
So a porn company just bought the vidme domain and set up a redirect for all old vidme urls.
As a result, many websites like the Washington Post got porn videos embedded on a couple places.
This is so fucking hilarious. Maybe there's a slim chance they learn the lesson and stop shoving shitty autoplaying videos into their news articles.
https://vice.com/en/article/...7 -
Learning Rust and I’m loving the process. I haven’t been this excited to learn a language since c++ years ago!3
-
Roger Waters is a true fucking rebel.
Absolutely love this man and how he rejected Zuckerberg's offer to advertise on Facebook.
Fucking legend.
https://youtu.be/-TGBcAZ55D4
I cannot feel more pride of being a Floyd fan. The ideology is what keeps me going.1 -
"What would your perfect job look like?"
I remember when I got my first 'good' job. There were all these offices that were occupied and I wondered what everyone did in them. Some ... nobody even knew. Like I couldn't find one person in the office who knew what a given person occupying an office even DID...
I thought then (and I kinda think now) it would be fun to have one of those jobs that seems accountable to nobody and everyone at the office wonders:
"What does that guy even do here!?!?!"
Granted I'd probably just come in every day and work on a lot of personal projects (dare to dream) ... with the door closed... in peace...2 -
Why won't you just approve my PR???
Whats wrong with you?!
I don't understand your cryptic one-sentence feedback. I'm not even sure you understand what you're asking yourself.
What the hell does "make it a transaction" mean? Don't give me pseudo-code examples that don't even work fucking asshole!
Its a small change that does NOT need a canary build dammit. Don't go testing the ORM, its a goddamn standard library. Why does working with you make everything so complicated?!?!
The code fucking works! There is no need to make it comply to your specific tastes goddamn it. Working with you is like pulling teeth!
/endrant9 -
I DON'T FUCKING CARE IF WE'VE ALREADY DISCUSSED THIS, IT FUCKING CAME UP AGAIN DIDN'T IT?! SO WE CLEARLY DIDN'T NAIL IT THE FIRST FUCKING TIME.4
-
Motivation 404. I'm as slow as a drunk turtle today.
So, I dare you to tell me something motivating!36 -
Working on individual projects is a million times more fun than interview prep / doing Leetcode problems.
I wish companies looked at my few years of experience and personal projects rather than testing my knowledge by asking me some random "Hard level" Leetcode question. -
Jetbrains (IntelliJ, Rider) - cannot live without it. Everything else seems to be unnecessarily complicated in comparison.1
-
I created a GitHub Profile Card widget that can be easily embedded in your portfolio 🎉
Repo: 🚀
https://github.com/RocktimSaikia/...
Live:🚀
https://codepen.io/RocktimSaikia/...11 -
Dear DevRant,
The yellow background looks great on our avatar, but could you please not use it as background for a rant? You're burning the eyes out of my skull.17 -
Optimization concepts/patterns or instances?
For pattern its gotta be any time i can take a O(n^2) and turn it into O(n) or literally anything better than O(n^2).
Instance would probably be the time that we took an api method that returned a json list made up of dictionaries CSV-style and changed it into a dictionary with the uid as the key and the other info as key-value pairs in a sub-dictionary. So instead of:
[
{
"Name": name,
"Info":info
}
]
We now return:
{
name:
{
"Info": info
}
}
Which can, if done right, make your runtime O(1), which i love.