Details
-
AboutTaking a break from devRant, things got less cool around here.
-
SkillsC/C++, Javascript, Python, HTML & CSS. Guitar, piano & drums. Free Running/Tricking English & Korean.
-
LocationSouth Korea
Joined devRant on 4/23/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
-
Broken app is broken again. This app is broken so often and so hard, I'm struggling to give a damn.
These fuckers need to take their shitty project, code and managers especially, and launch them into Mars
They blame us and everyone else for their shit and I'm done with it. I need to sleep and not have these fools call me at all fucking hours.6 -
So I've been really excited about the SpaceX Falcon Heavy launch today and my professor RESCHEDULES THE MIDTERM for the same time slot. Fml1
-
Tried javascript coming from Java and C++, i know not a lot of people agree with me but holy fucking shit i hate non-typed variables they introduce so much ambiguity it drives me insane!!!9
-
Why do some female programmers place emphasis on their gender?
It's always: female programmer... Female web developer... Female android dev... Female Sysadmin... Etc
I mean, you don't see males saying "I'm a male programmer."
Female programmers aren't rare anymore. More and more of them are starting to program, so what's the point of emphasizing your gender?
For some reason, females think it's "special" to be a female programmer.
How does your gender relate to your skill?103 -
typos are ok if you can still understand what one is trying to say.
if your typos interfere with understanding, THEN FUCKING CORRECT THEM.
I'M TIRED OF NOT BEING ABLE TELL IF YO MEANT "…" OR "." WHEN YOU TYPE ".."
DID YOU FUCKING PRESS IT TWICE BY ACCIDENT OR DID YOU MEAN TO TYPE THREE PERIODS?
FUCK YOUUUUUU4 -
Throughout the day I check Google analytics, I do it so much that I have a habit of typing "anal" and hitting enter into chrome and it auto completes,
I accidentally typed it not realising I still had focus on my company Slack chat window. The delete message feature is disabled 😰.7 -
<rant>
Don't fucking tell me to move business logic from the service to the controller. Don't fucking tell me it will enable an "event driven architecture." Don't fucking use Angular for this project if you're just gonna shit on best practices and write convoluted, messy, inconsistent code and force your coworkers to do the same!
</rant> -
I imagine two dev colleagues sitting next to each other, on their phone, each feeling very secure in the anonymity of devrant.11
-
So I told my gf, if my life becomes dependent on a machine for survival and I am always attached to it. Unplug the machine.
She unplugged my computer2 -
So I live in the south. And it’s been pretty cold here the past few nights. And now there’s a gaping hole in my laundry room and water going everywhere and a plumber who seems to still be reading the README.md file. And my kitchen is flooding. And my gf is losing her shit. And I’m drinking coffee sitting at my bar, checking emails. Somebody wake me up.9
-
I pressed "update" on windows 10 and its been runn..
Wait nevermind, it finished in about 5 minutes on my old dual core laptop with a 5400rpm hard drive.3 -
wk87 is a dangerous topic for me, i've been through a lot. I apologise for what I am about to inflict on this network over the coming week.
Most incompetent co-worker, candidate 1, "T".
T was an embedded C developer who talked openly about how he's been writing code since he was 14, knew all the C system libraries and functions like the back of his hand. For the most part, he did ... but not how to actually use them, as (based on his shocking ... well everything) he was inflicted by some sort of brain disorder not yet fully understood by medical science. Some highlights:
- Myself and the CTO spent 4 days teaching him what a circle buffer was and how to build one.
- His final circle buffer implementation had about 3 times as much code as he actually needed.
- When the code was running too slowly on the device, we didn't try find any performance improvements, or debug anything to see if there was anything taking too long. No not with T, T immediately blamed TCP for being inefficient.
- After he left we found a file called "TCP-Light" in his projects folder.
- He accused the CTO of having "violent tendencies" because he was playing with a marker tossing it up in the air and catching it.
- He once managed to leave his bank statements, jumper and TROUSERS in the bathroom and didn't realise until a building wide email went out.
- He once .... no hang on, seriously his fucking trousers, how?
- He accused us all of being fascists because we gave out to him for not driving with his glasses, despite the fact his license says he needs to (blind as a bat).
... why were his trousers off in the first place? and how do you forget ... or miss the pile of clothes and letters in a small bathroom.
Moving on, eventually he was fired, but the most depressing thing of all about T, is that he might not even be top of my list.
Tune in later for more practiceSafeHex's most incompetent co-worker!!!11 -
"Opps.. I'm sorry, but you have insufficient rights to open this Ticket."
Well. You know what? I AM THE FUCKING SYSTEM ADMINISTRATOR YOU CUNT!
YOU HAVE INSUFFICIENT RIGHTS to restrict me access to that fucking ticket!
"Oh. In that case, go ahead."
THANK YOU. FUCKING PRICK.4 -
Stop buying domains that you don't use you fucking idiots. Can't find any domain for my new project. But none of them are being used. Fucking retards.15
-
Today there was a question on the react native forum asking how to map an array..... ([].map(mapFunction))
1) it's the wrong place for the question
2) like 80% mentioned ramda, lodash, underscore :(7 -
Function definition in various programming languages
//JavaScript/PHP
function myfunc()
{
}
//Swift
func myfunc()
{
}
//Kotlin
fun myfunc()
{
}
//Rust
fn myfunc()
{
}
//Next...
f myfunc()
{
}25 -
rant have some new tags let me explain really how many of these can i use continuation of my previous rant why rant when you can tag no rant only tag tags why do tags go out of order sometimes someone else please use these tags i'm sure everyone will hate me for this6
-
LEARN THE FUCKING WORDS!
I know that English isn't the native language of my country, but for fucks sake, if I'm telling you the right way to say/write it, remember it!
It's called ROM not ROOM
It's called Mod not Mood
Am I good with Custom ROM's? Yeah
Am I good with Custom Rooms? No, I'm not a fucking interior designer
Am I enjoying Moto Mods? Of course
Am I enjoying Moto Moods? Vruum Vruum bitch.16 -
So a user reported they couldn't login to our site, so I reset their password to:
uI+ffRT7M2NAzo8uOqzf4QxO3I9tj8PJ4TS0n8zDV7I
And sent them back an email with the updated password. A few minutes later, they replied and said that password didn't work. They even tried a different web browser, etc. I tried it myself, and sure enough, it didn't work.
I spent the next several hours trying to figure out why the password didn't save properly, or why the logic didn't compare them correctly. Perhaps it was some sort of caching issue? Oh the horror.
As it turns out, the problem was a maxlength of 28 on the login form field:
<input type="password" name="password" value="" maxlength="28"/>
I don't know who wrote that code, but it sure wasn't me.21 -
I just hate this shady Apple behavior 😡
They make it look like I’m out of storage, but I still have 20%+ free7 -
No way. I hope this is a joke...else its not helping building up trust in their competence (Australian vpn provider)1