Details
-
SkillsVanillaJS
-
LocationLondon
Joined devRant on 8/28/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
-
HashiCorp HCL is quite nice
-
The next atom update comes with Bubble Witch Saga
-
Well I'm UV protected but what's with all these bugs?!
-
Here's a link to the repo https://github.com/auchenberg/...
-
Yarn is super quick
-
Thanks guys ☺ I love this community!
-
@BrianK I can't see any educational facility having too much of an issue with the learning aspect, they probably just want to prevent cheating in assessment & can't be bothered dealing with scoping it to those machines when required
-
Localhost is your best friend right now
-
Having initiated my programming carreer in Python & moved on to JS, what first felt so natural as a beginner now just feels so unnatural
-
It really feels like nav bars being at the bottom on mobile should be the standard with so many huge phones on the market, it just feels so much easier. Or how about a menu arc that pulls out from 33% in from the bottom left corner centred on the bottom right corner, with a reversed option in the settings for lefties
-
Excuse my ignorance chaps/chapettes, how does one go about utilising multiple cores in Python? I'm a JS man with only a little Python experience
-
null
-
Never underestimate the destructive power of Windows
-
Investing in self improvement is always worthwhile
-
Made me chuckle
-
@JonthueM advice applicable to so many of lifes predicaments
-
@Dittoslash It's Javascript 😆
-
You know what end users are like, it's always best to be as unambiguous as humanly possible
-
I wish it were more like Atom
-
Just increasing accessibility for those with visual field deficits. I see no issue with this feature
-
*looks at telephone lines connecting to billions of people around the world*
Aww thank you 🤓 -
Looks like you're in need of a defrag! Wishing you a swift recovery my coding comrade
-
@Jumpshot44 🤓 Thank you
-
Maybe they're just paid per line of code
-
Cardiac arrhythmia, here I come!
-
Coffee will always be my one & only!Hate to add to your workload but you're missing a 'd' in your address variable names
-
@DarkMukke Not just some children either, All of them!
-
@deadlyRants Awareness must be raised!
-
When asynchronous methods are called they are not executed instantly but added to the event queue, this means that the server can still continue handling requests. The content of the function still runs synchronously but will only execute when the server isn't busy with request handling. The actions performed should be relatively small, and are chained together (use callbacks or promises) so that each one can happen quickly without blocking the thread.
https://nodejs.org/en/about/ -
// Use for each variable declaration
function pickCase () {
var caseOptions = [
'pascal',
'camel',
'kebab',
'underscore'
];
return caseOptions[Math.floor (Math.random() * caseOptions.length)];
};