Details
-
AboutI am Legion. I do not forgive. I do not forget. Expect me.
-
SkillsJS and BS
-
LocationRichmond, VA
Joined devRant on 4/3/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
-
C# is getting so fucking obfuscated with these null check inceptions. Found the following in my company's code base. Why did it take me and 3 other devs an hour to figure out how to write this if statement into a flowchart?
if(!string.IsNullOrEmpty(a?.Id ?? b[0]?.Id))...😫😫😫
FYI: We figured it and also found some bugs with logic, but can you? I'll post our flowchart if ranters are interested.
So to add to the madness:
if(!string.IsNullOrEmpty(a?.Id ?? (b?.Any() ? b[0].Id : null)))...🤯🤯🤯23 -
Saw this in a previous developer's code which is currently in production.
public bool reset;
public bool Reset
{
get{ return reset; }
}
This was done for most if not all the properties.3 -
Me: There is a bug in the most recent "standard global software" release that causes data not to send properly to the device. There are 3 ways to send the same data to the device in the current release but they apparently don't do the same thing like they should. (Sent screenshots of the issue)
Standard Dev Support: "it's not a Bug it's a feature. So the development found out, that there are several problems with sending data to devices using "x" method. So they decided to stop "x" function in the latest release. Use "y" method instead."
Me: "X" and "y" methods are both still there. You didn't remove it in the latest release. So it is a fucking bug moron?!?
Wtf!!!!!1 -
Well guys it was nice being dev while it lasted. Reevaluated my life and decided to travel the vast world and become a Pokemon master.7
-
I hate you fucking callbacks. why don't you callback in the fucking order you were motherfucking called!!!! why must you force me to call a callback a callback!! 😣😡😤👹2
-
I post riddles and puzzles outside my office door to keep people distracted before bothering me. they must answer all right before disturbing me.2
-
My company has been looking for a project time tracking and reporting app/website for 2 years but are too cheap to buy one. So they want me to develop one to their specifications which are forever changing. Let's say I've intentionally wasted so much time "perfecting it". it's been done for 2 months.6
-
When I fail at a Rant and have to delete it out of shame and repost 😢
bug fix: 01101100 01101111 011011002 -
Once upon a time aka last week,
Was trying to fix an industrial automation software coded in Codesys. My company's standard library is riddled with bad documentation with a mix of English and German terminology.
Had to find out why a program kept crashing the program upon start up. Long story short and many stressful hours later, I found two functions in the standard library that caused an endless terminal process loop. Had to wrap the function in an 'if statement' so it would only run once. Function should have done this by default. -
Hate being forced to jump back and forth between mutiple projects that use different languages, syntax, and IDEs. Feels like I'm juggling chainsaws and kittens.2
-
My side project is distracting me from my corporate, gotta pay the bills somehow and meet these damn deadlines, project! 😫😫3
-
PM emails me a zip file with the message "Can you give the attached a look and get it to work. See email below that there are some items missing to make it run."
Items missing : 3 custom libraries, 2 sql databases, 3 custom sql tables, and oh yeah the license to the program it runs on.1 -
Co-Worker (mechanical engineer): I have an amazing idea that I want to pitch to you!!
Me: Whats the idea?
Co-Worker: Let's make a social media app where you send a drawing to other people and possibly doodle on pics. The drawing or picture can't be saved and it's directly sent to people or a group.
Me: That's SnapChat.
Co-Worker: Oh...well my idea is cooler.
Me: *Rolls eyes* go back to work.3 -
Bosses and managers out of the office for 2 days. Kan Jam, cornhole, and Xbox all day at the office!!
-
function myLife(time){
if(time.current() < time.alarm1)
sleep();
if(time.current() = time.alarm1){
wakeUp();
if(tired || hungover){
snooze();
sleep();
} else{
getReady(speed.Normal);
goTo(work, speed.Normal);
doMyJob(function(){
goTo(home);
});
}
}
if(time.current() = time.alarm2){
wakeUp();
if(tired || hungover){
snooze();
sleep();
} else{
getReady(speed.Fast);
goTo(work, speed.Normal);
doMyJob(function(){
goTo(home);
});
}
}
if(time.current() >= time.alarm3){
wakeUp();
if(tired || hungover){
workFromHome();
} else{
goTo(work, speed.Fast);
doMyJob(function(){
goTo(home);
});
}
}
}3 -
Dev on my team likes to declare his variables types System.Int32 instead of int. Drives me crazy!!!2
-
Love going to out-of-state programming courses on the company dollar!! Went to Germany, Denver, and Rochester, NY for Codesys training. Hate PLC programming but it's fun traveling and learning new things.