Details
Joined devRant on 5/11/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
-
I was fired by a client about a month back. I had spent about a year building a web application using angular.js for said client. Of course, it was my fault because it took about 8 months longer than I had forecasted but I believe what I was shooting for was something solid. I went as far as giving a full refund of the initial deposit on the project. My take away was I learned something new, going in I wasn't remotely aware of such things as CI/CD. Sad thing though they are trying to rebuild the app using wix.5
-
This is where everything started. I got the chance to work with actual production code. While it is very fun to work with, in some places it's also very frustrating. And this is from where, most of my rants come from.
Thank you @dfox and @trogus for making such a beautiful community.
The best part of this community is I never have to think or take time to make jokes or posts so that I can get upvotes. I've always wanted likes or retweets or reddit upvotes. But it never worked out because I have to think so much to make clever comments or posts. Most of the time, I gave up.
But in devRant, all I do is just share what's happening in my daily dev life. My frustrations, my happiness. That's all it takes. Everyone understands, everyone cares and everyone loves.
Over time, thanks to devRant, I've understood that I was part of the wrong community. This is the community that I deserve, this is the community that every dev deserves.
Thank you all. I love you. And I promise, more rants are coming :D
Especial thanks to @Yeah69 @kevbost @yarwest @tisaconundrum @Linux @donkeyScript . I have no idea why you guys all of a sudden rapidly upvoted me. Although I would love to reach 10k naturally but won't complain haha8 -
working on an android app. the guy who wrote it is a complete retard designed it and made it overcomplicated and unmaintainable now no one can change anything without breaking all that shit ... found this comment, someone else tried to do it and failed miserably apparently.2
-
So I have BiPolar and Borderline Personality Disorder and had an interview today. We'll I slept in and missed it. My psychiatrist recently changed my meds to help stabilize me. Now I'm up for 2-3 days before I sleep. I timed it so I would be awake, but ended up falling asleep and woke up a half hour after I was supposed yo be there. I'm so pissed off right now! I've been working my ass of learning to code, buy my own brain is sabotaging me. I just want to be a normal person with a normal job. I love programming because I get to be by myself and work away from customers. I'm so frustrated and feel beat down. I don't know what yo do. 😠😤😡8
-
Guy sitting next to me on my morning commute working on a presentation called "Containerizing The Assembly Line"... I feel sorry for his devs if that's how he thinks of them.
-
Have an interview this coming week for a position that pays 125% more than I currently make... So excited. 😁5
-
I graduated 3 months ago from computer engineering, landed a job far far away from home. Moved. I wake up every morning wondering if it was the right call. Seems like I am growing up.7
-
Today I started work on a new project that contains a lot of legacy. I asked the developers about unit testing javascript and was told that not only is there none in place, but it's not worth adding any in.
At first, I grimaced and thought fair enough. This is their codebase, it's their choice. I've now been thinking about this for a few hours and have instead decided that screw those guys, I'm adding in a testing framework, a module pattern that's compatible with the existing code, and unit testing the crap out of it. If they don't want it they can refactoring it out, but I can't bring myself to intentionally deliver code I know is crap.
I WILL FORCE CODE QUALITY ON THEM.7 -
*Trying to finish up this project I'm doing*
Me: "Fuck this shit I'm done shit doesn't work"
*non-dev girlfriend sits in front of computer*
GF: "I believe this line shouldn't be here it messes up what happens in the loop. Or atleast that's what it looks"
*checking it*
Me: "So what's your ring size again"7 -
I hate being a fucking tech support dude. Everyone thinks it is my job to fix their device. Some girl asked me to replace her iPhone 6 plus screen a few days ago. I reluctantly said yes. I bought a screen. And I started the process. I opened the box for the new screen and it was just the screen with no digitizer. That was completely my fault. I was an idiot. I immediately buy the correct one on amazon and tell the girl, I'm sorry you won't have a phone for two days. As soon as the new package comes in, I will do the repair.
3 Days Later: Today.
Her: Has it come in yet?
Me: No, I'm going to call Amazon
Amazon: We're sorry, the thing you asked for was out of stock, you'll have to buy it again.
He was very nice, and he gave me free shipping, but this was not my fault!
Her: I have to wait 2 more days? That's like a whole week without a phone!
I had to do this for free and pay $40 for the new part. I am never telling anyone I am a developer again. I feel so fucking bad, and she's mad. And I can't do anything about it.6 -
Swift, oh my god, why do you have to be like this?
I'm looking to write a simple for loop like this one in java
for(int i = 5; i > 0; i--) {
// do shit
}
Thats it, simple, go from 5 to 1 (inclusive), I saw that to iterate over a range in a for loop (increasing ordeR) I can do this
for i in 0...5 {
// do shit.
}
So I thought maybe I could do this to go in reverse (which seems logical when you think about it doesn't it?)
for i in 5..<0 {
// do shit
}
But no, this compiles FINE (THIS IS THE FUCKING KICKER IT COMPILES), alright, when you the code runs you get a fucking exception that crashes the mother fucking application, and you know what the problem is?? This dogshit, shitStain of a language doesn't like it when integer that the for loop starts with is larger than the integer that the for loop ends with MOTHERFUCKER ATLEAST TELL ME THAT AT COMPILE TIME AS A MOTHERFUCKING WARNING YOU PIECE OF SHIT!!
Alright *deep breathing*, now we can't just be stuck on this raging, we're developers need to move forward, so I google this, "Swift for loop in reverse" fair enough I get a straight forward answer that tells me to use the `stride` functionality. The relevant code for it
for i in stride(from:5 to:1 by:-1) {
// do shit
}
Wow looks fine and simple right?? (looks like god damn any other language if you ask me, no innovations here piece of shit apple!) WRONG BITCHES !!! In the latest version of Swift THE FUCKING DEVELOPERS DECIDED TO REMOVE STRIDE ALTOGETHER, WITHOUT ADDING IN A GOOD REPLACEMENT FOR THAT SHIT!
Alright NOW IM FUCKING MAD, I got rage on stackoverflow chat, a guy who's been working on ios for quite a while comes up n says and I quote
"I can sort of figure it out, but besides that, iterating in reverse is uncommon enough that it probably hasn't crossed anyone's mind."
Now hope you guys understand my frustration, and send me cookies to calm me down.
Thank you for listening to me !27 -
Acting as a volunteer project manager temporarily at the moment, it angers me that people don't read documentations before they ask questions.1
-
Never thought I'd become one of those people who get really annoyed when my code works first time. I know I've made a mistake... why can't you be obvious!1
-
When everyone disturbs you every 15 minutes because they need help and then expect you to complete your own work to meet all the deadlines on time. FML!9