Details
Joined devRant on 11/11/2017
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
-
my job went from being a programmer ==> technical support girl for the whole company D:
its kinda annoying because its mostly about amazon ec2 instances and i have to chat with the support team from amazon when something goes wrong while following the steps (that the others could have followed instead of going to directly to me to make me do it)
now i have to try and fix all the problems occuring in the servers :((6 -
1: Man did you see the latest windows build fucked up design?
2: What are you mean?
1: I MEAN NOT ALIGNING REFRESH BUTTON ESPECIALLY WHEN YOU PRESS IT.
2: What??? Where???5 -
WELL GEE, IF I KNEW WHAT MY ACCOUNT USERNAME WAS, I WOULD JUST SIGN IN YOU ASSHOLE. -.-
On top of that, they use these fucking anchent capchas that are fucking case sensitive and annoying as hell..
In their defence, I was trying to automate their website (one of those get paid to click sites) in an atempt to get some money, but still!6 -
GUYS WE HAVE BEEN WRITING FOR LOOPS IN JAVA WRONG THE WHOLE TIME. Here is how it should be done correctly...
int i = 0;
for(;(i<10) ? true : false;)
{
i++;
System.out.println(i);
}
Jokes aside though does anyone have any more horrid ways to write this?20 -
FOR FUCK SAKE APPLE! HOW THE HELL ARE YOU STILL IN THIS WORLD!
Was creating a signed file of the app to upload to their store and while XCode (that bitch!) was working on it, Slack, and Postman crashed!
Do I need to say why or you already knew it is because XCode ate all the RAM -.-7 -
I'm the git master in my group for a uni project as I am the only one with some experience.
This is what I have to deal with20 -
This morning I turned on my PC at work...
Only to be greeted by a finishing your Windows upgrade message.
It took fucking windows HALF AN HOUR to finish the upgrade.
After that my machine lost its built in cam, mic and speaker. Which I need for my work.
Took me two hours to hunt down the correct driver to install and find the info it must be installed in Win7 compatibility mode or it won't work. It was pure joy to install it plain first and it still didn't work.
Then VirtualBox refused to start. Took me half an hour to upgrade it and get it working again.
Took me half a day to just get the shitmachine working like it did yesterday so that I can START working.
So, dear Microsoft:
...
...
...
...
...
...
...
...
wait for it...
...
...
...
...
...
...
...
...
FUCK YOU!
🖕🖕🖕🖕🖕🖕🖕🖕
sincerely
(And don't give me this "use Linux" crap, I have to use Windows for my work.)3 -
Designers! Argh. I’ve been busy with a form for over two days and STILL it isnt good enough. I told everybody this CMS is a pain the ass and every element has to be positioned manually.
THAT YOUR FUCKING CHECKBOX ISNT LIKE YOUR PSD ISNT MY PROBLEM.
PLEASE THROW YOURSELF OFF A BUILDING?! -
Imagine, you get employed to restart a software project. They tell you, but first we should get this old software running. It's 'almost finished'.
A WPF application running on a soc ... with a 10" touchscreen on win10, a embedded solution, to control a machine, which has been already sold to customers. You think, 'ok, WTF, why is this happening'?
You open the old software - it crashes immediately.
You open it again but now you are so clever to copy an xml file manually to the root folder and see all of it's beauty for the first time (after waiting for the freezed GUI to become responsive):
* a static logo of the company, taking about 1/5 of the screen horizontally
* circle buttons
* and a navigation interface made in the early 90's from a child
So you click a button and - it crashes.
You restart the software.
You type something like 'abc' in a 'numberfield' - it crashes.
OK ... now you start the application again and try to navigate to another view - and? of course it crashes again.
You are excited to finally open the source code of this masterpiece.
Thank you jesus, the 'dev' who did this, didn't forget to write every business logic in the code behind of the views.
He even managed to put 6 views into one and put all their logig in the code behind!
He doesn't know what binding is or a pattern like MVVM.
But hey, there is also no validation of anything, not even checks for null.
He was so clever to use the GUI as his place to save data and there is a lot of parsing going on here, every time a value changes.
A thread must be something he never heard about - so thats why the GUI always freezes.
You tell them: It would be faster to rewrite the whole thing, because you wouldn't call it even an alpha. Nobody listenes.
Time passes by, new features must be implemented in this abomination, you try to make the cripple walk and everyone keeps asking: 'When we can start the new software?' and the guy who wrote this piece of shit in the first place, tries to give you good advice in coding and is telling you again: 'It was almost finished.' *facepalm*
And you? You would like to do him and humanity a big favour by hiting him hard in the face and breaking his hands, so he can never lay a hand on any keyboard again, to produce something no one serious would ever call code.4 -
I am looking to switch from Ubuntu (once again).
I already used Fedora and Arch in the past, while Arch was my fav, its just too much of a hassle to setup. But I keep finding tiny things that annoy me on Ubuntu.
So anyhow, what do you use/reccomend and why?13 -
Somewhere Between Development Branch And Production Branch, We all grew up!
#Also_This_Camel_Casing_Shit_Doesnt_Leave_My_Hands -
So this happened at a government organised 24 hour Hackathon. We had to store documents uploaded from the front end. Now we’ve been trying for a very log time but everything failed (yeah we had a crappy front end guy). Then all hell broke loose when the our team leader in hi sleep deprived state deleted our git repository while I wondered why my pushes were throwing a 404. When hell felt near we came up with the solution to encode the documents in base64 and store it in the database since we only had to show a demo😂.
Sadly enough, WE LOST. Although in retrospect it comes as no surprise.2 -
During a code review I was told that
if(x and y){
if(z){}
}
Will be slower to run than
if(x and y and z){}
I mean if you want to talk about programming practices and uniform code yes absolutely but any compiler will treat these identically, not to mention the assembly being identical. She was a superior though so I just went along with it.10