Details
-
Skillsjs, python, java
-
LocationIndia
Joined devRant on 5/14/2016
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
-
Zuck the Cuck says WhatsApp doesn't share user's location info with Facebook, but shares IP addresses.
Fucking trash.18 -
TCS really needs to focus on quality over quantity. What a piece of shit. I pity the employees ( calling them engineers would be a disrespect to engineering ) working there.5
-
Launch that project as is... There is always room for improvement.
1970..................................................20203 -
So I migrated over to ja.stackoverflow.com, which is just the japanese version of stackoverflow, and realized how much different japanese devs are to the american ones Im used too.
On the standard StackOverflow I would see people argue and lots of questions would be downvoted. but on its japanese counterpart if you even ask for a little more context on a question they speak to you as if you were there boss. They also always say thank you sir at the end of their comment.
Im tempted to just keep google translate open and stay on ja.stackoverflow12 -
R is the worst language.
* Indices start at 1, so you have to fix all your calculations by either +1 oder -1. It sucks
* Vectors and Lists are both neither vectors nor lists
* Data frames dont have a proper api. Simple operations like add or remove are a pain.
* The naming „conventions“ suck. Why on earth would add dots in your identifiers? You never know if its an object, a value, a function.
* The namespace is cluttered. If you import two libraries that deal with the same problem domain, it is likely that they define functions with clashing names that will overwrite each other defined on import.5 -
This is Node.js FYI
Exporting a single class from a file called util.js. This class only has static methods. Each method is a util function. No fucking way of importing a single method. Class abuse?6 -
if ( condition ) {
callback(data)
}
callback(error)
--is a lot different than--
if ( condition ) {
callback(data)
} else {
callback(error)
}
callbacks are not return statements 🤦♂️9 -
Some people want to watch the world burn.
Me, i want to add the line ".gitignore" to .gitignore, force push it and fuck off to holidays with a phone turned off.7 -
When a website enforces "overflow: hidden" on all content elements, so you hit them with the good ol'
for(let e of document.querySelectorAll("*")) {
e.style.overflow = "scroll";
}14