Details
-
Aboutnerd
-
Skillsfull stack dev. JS and PHP
Joined devRant on 12/13/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
-
Huh. ES6's variable destructuting on objects is actually pretty cool.
var {foo, bar, baz} = obj
Is functionally equivalent to this:
var foo = obj.foo
var bar = obj.bar
var baz = obj.baz
I like it! Makes things simpler.3 -
My employer gave everyone the day off, so now I have to do Xmas crap instead of coding.
Thanks, I guess. :/3 -
Spent 2 hours trying get ng-model working with <select> with no success. Then co worker came and changed model from string to object and moon walked back to his seat.5
-
Oh my fucking god... I am looking at this code written by a previous developer and he put the passwords in plain in an array in a PHP file, like WHAT WHERE YOU THINKING? (btw that's also how he checks the password, just check whether it's in the array)
c'mon pls14