Details
-
AboutAssociate Software Engineer
-
Skillsjs php awk bash mysql css sass java
Joined devRant on 3/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
-
I was assigned a project which was previously done by another fresher, the project used angular and bootstrap. That fucker wrote custom styles for the fucking bootstrap classes!!! Every time I use "btn-primary" the button won't become blue, it becomes white!! Fuck! He even wrote his own fucking styles for the grid classes!!
I was so frustrated, I had a discussion with my CTO, he told me, that after 3 months, we'll be scraping this and moving to a new frontend. So I'm stuck in this hell for 3 months. -
Ok here goes me trying to explain some logic here, I apologise in advance!
I've been using an axis based movement system for my games for a while now but always had the issue of characters moving faster diagonally because the movement shape would form a square; meaning things would move at twice the speed.
Only now thought 'hang on, direction's act as circles when given a radius..'
Suddenly everything works perfectly fine and all it took was 3 lines of code... Well done Alex you tool.18 -
When my idiot technical lead on the client’s floor (where everyone could hear him), “corrected” me in public telling me I should never use parent/child classes and override a method. Instead just use lots of if else statements in the one.
Not just is he a moron, but sounds like he knows what he is talking about if you are a client who knows nothing about coding. So I look like an idiot to our customers and he sounds smart... when it’s the other way around.
And HOW DARE you criticize anyone, even if it is warranted, in public in front of clients. You go in an office and close a door.6 -
Well apparently my compression algorithm actually made the file bigger. Back to the drawing board I guess?8
-
When the competitor company you declined to join 3 months ago is now sinking (-60% stock value in a day) #feelinglucky
-
Been here for quite a while now and eventually made an Account.
It cannot be said often enough:
DevRant is awesome!
following: mandatory "Hello World"
import System.Drawing
import System.Windows.Forms
f = Form()
f.Scale(.6,.45)
f.Controls.Add(Label(Text: "Hai wurld!", Location: Point(60,30)))
f.Controls.Add(Button(Text: "KTHXBYE", Location: Point(50,55), Click: {Applikation.Exit()}))
Applikation.Run(f)2 -
Coding gave me a way to express my creativity. It gave me meaning. When I was young I was constantly trying to find what I was good at. It's frustrating because I have one more year of uni doing what doesn't interest me.
Nevertheless, I'm glad I found what I want to do for the rest of my life 🐢.1 -
Something which I felt inspirational.. As a programmer or as a Human being, it's our duty to teach others what we know well !
(My Personal opinion)36 -
When you can't take part in the new avatar shirts (or any avatar swag for that matter) because you mostly lurk and hardly ever rant...7
-
When you've to explain normal people that you're a dev and not a hacker and so you can't just hack into their ex's Facebook account like it's some magic trick.3
-
Bash scripts. If it can't be done in a bash script; you haven't looked at enough stack overflow pages.3
-
Actual production code:
function isEmpty(val) {
return typeof val === 'undefined'
|| val === undefined
|| !(val !== undefined);
}
I'm starting to think the "infinite monkeys" metaphor is not a metaphor...5 -
Coworker was told to shift code from private repo into company repo. She literally copy pasted all the files into the other repo. 😁👍6