Details
-
Github
Joined devRant on 6/30/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
-
2002 is 18 years ago? wtf.
-
JS really has the most fucked up coercion rules I've ever seen
-
It became apparent that some idiots added username:password to the urls in .git/config (a file that is pushed to the remote repo) instead of using ssh keys. These people deserve to get ""hacked""
-
It's pretty much BS. If you have the local repo you can just git reset head
-
Because we don't live in a perfect world. Requierments are always changing and there is no time to change the entire design when that happens.
-
I hereby give you your first ++ on devRant
-
And ACDD - Angry Customer Driven Development
-
@jespersh what do you mean?
-
If you can have a TV show about nothing, I can't see why you can't have an app about nothing
-
Awesome, informative response that throughly explains the client what they did wrong 👍😂
-
Go home, you're drunk.
-
True story: We have a lot of "ars" in our codebase. It started from "ar" (access request) which ultimately became "ars" in plural
-
Well, it's actually wrong. It should be 'coffee'
-
@Sumafu some languages (for example Python) will actually return the last evaluated expression in conditionals. print('a' or 'b') outputs 'a', and print('a' and 'b') outputs 'b'
-
A reference to this https://en.m.wikipedia.org/wiki/...
-
@gintko It's so cute that you think Apple does not track its users 😂
-
Literally me last night with a damn bootstrap modal
-
Huh? What's up with that stupid "censorship"?
-
I'm more annoyed by the repetitive, expensive lookups
-
Infinite loop anyone?
-
Wat? You say that you know that you can get better specs for same price but you don't need the better specs. So why the heck spend that extra money? For the logo?
-
As a long time SO user, your question's text-to-code ratio is "too damn high"
-
The left one is simply happier to see you.
-
That's exactly why I always write the WHERE clause first (update table where condition) and then add the SET
-
This only works on Python 2
-
You gonna have a bad time if you use str for a variable name.
-
.
-
@kunashe It's very convenient to use, not look at. How awkward it would be to do arr[11] and get December?
-
It's a convention that days/months arrays start from 1. It is also used in Python's calendar built-in module.
-
@binop iteratively executes the provided function on consecutive elements. reduce([1, 2, 3, 4], add) is ((((1 + 2)) + 3) + 4)