Details
-
About127.0.0.1
-
SkillsC++, C#, PHP, Javascript, Jquery
-
LocationPortugal
Joined devRant on 7/12/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
-
This sort of shit really pisses me off, yes PC has a higher market share, but I had to comment. Mobile gaming dwarfs PC so should we even bother with PC?
And people are agreeing with his point, it's fucking stupid, people should be able to enjoy something no matter what platform, linux, Mac, windows or anything else...
Fuck heads...26 -
Remember. Jurassic park failed because every other thing was built while sparing no expenses and only one programmer was underpaid.
Don't underpay programmers.5 -
A young guy I work with burst into tears today, I had no idea what happened so I tried to comfort him and ask what was up.
It appears his main client had gone nuts with him because they wanted him to make an internet toolbar (think Ask.com) and he politely informed them toolbars doesn't really exist anymore and it wouldn't work on things like modern browsers or mobile devices.
Being given a polite but honest opinion was obviously something the client wasn't used to and knowing the guy was a young and fairly inexperienced, they started throwing very personal insults and asking him exactly what he knows about things (a lot more than them).
So being the big, bold, handsome senior developer I am, I immediately phoned the client back and told them to either come speak to me face-to-face and apologise to him in person or we'd terminate there contract with immediate effect. They're coming down tomorrow...
So part my rant, part a rant on behalf of a young developer who did nothing wrong and was treated like shit, I think we've all been there.
We'll see how this goes! Who the hell wants a toolbar anyway?!401 -
Last week:
Client: Hey sometimes when I sent about 20 messages to your app they need a long time to arrive. Why is your app so slow?
Me: We are using Google Cloud Messaging to deliver messages. There is no guarantee when messages arrive.
Client: So such a big company is the fault? And not you? Pls make it faster. Make it always act the same.
Working as a programmer is pain in the ass because the people with the money don't know a shit about anything.
I changed just a fucking useless string.. I deployed the "new version" and I told him I boosted everything.
Today he spoked with my buddy about another thing and he told him by the way the app is now much faster.
..placebo update2 -
A man flying in a hot air balloon suddenly realizes he’s lost. He reduces height and spots a man down below. He lowers the balloon further and shouts to get directions, "Excuse me, can you tell me where I am?"
The man below says: "Yes. You're in a hot air balloon, hovering 30 feet above this field."
"You must work in Information Technology," says the balloonist.
"I do" replies the man. "How did you know?"
"Well," says the balloonist, "everything you have told me is technically correct, but It's of no use to anyone."
The man below replies, "You must work in management."
"I do," replies the balloonist, "But how'd you know?"*
"Well", says the man, "you don’t know where you are or where you’re going, but you expect me to be able to help. You’re in the same position you were before we met, but now it’s my fault."1 -
I swear upon the gods of the internet! Any time I am trying to read an article/blog post/anything and the site puts a god damn pop-up form asking me to sign up for something, I leave the site. ESPECIALLY ON MOBILE WHEN YOU CANT CLOSE THE DAMN WINDOW WITHOUT GIVING UP YOUR INFO.
And every time a client asks me to do this I nicely explain how much people hate pop-ups, 99% of the time I've closed the window or tab before I even read what the box is asking for, I don't care.
If the user is trying to read something, then they are trying to read something, and they don't want to be bothered with your ridiculous attempts for information gathering so you can spam them later.10 -
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 -
why are we having a flame war on best programming language! it is personal choice and everything has its own purpose and importance. as a dev we should respect that14
-
TIP:
To anyone and everyone ranting about the automatic restart of their Windows 10 system,
Settings > Update > Advanced Options > Notify to schedule restart (instead of Automatic).
Yes, it IS that simple.
God.21 -
Light vs dark IDE themes
I personally prefer dark and all my coworkers use light. When they ask me to look at something, it hurts my eyes just scrolling for 5 minutes on their computer.19