Details
-
AboutI build hybrid apps. Gangsta life!
-
SkillsJavascript, PHP, C#, C, C++, Laravel, Cordova, dotNet, Zephyr, Electron
-
LocationSouth Africa
Joined devRant on 12/14/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
-
Aws Lambda and serverless framework. Yes FaaS is cool. Love it. But it is pain in ass when you have the only way for you deploy is zip the fucking code with all the dependencies. Comm'on AWS you can do better. Look at azure functions. Please give me a git deployment support. Please I beg. Each test iteration takes like for ever. Also no proper local emulator. Fuck you AWS. Fuck you serverless.3
-
For Fuck's sake never name your variables $a $b or $c. What the fuck I thought that's like the first thing they teach in whichever bush you learnt how to code at!!!!!!9
-
!WTF
Take a look at how big my SSD is(220GB).
Take a look at how much space I can remove with MS Disk Cleanup.
So there is a very very 👌 small risk that I will now erase the whole Windows Update File Server at Microsoft, lets see what's happens 🤞16 -
My girlfriend and I have been bored last weekend so we made some 8bit style Lego figures which are now decorating my home office :) (well in fact she made most of them)8
-
For my fellow javascript devs:
var floored = 12.68 | 0;
Is much faster than:
var floored = Math.floor(12.68);
And in both cases floored === 12
#JustJavascriptThings ¯\_(ツ)_/¯
Source: http://stackoverflow.com/questions/...
Performance test: https://measurethat.net/Benchmarks/...5