Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
// Comment `process` usage to see the cryptic message | |
const process = require('process'); | |
process.on('unhandledRejection', reason => console.error(reason)); | |
const foo = () => { | |
return new Promise((undefined, reject) => { | |
reject(new Error('RECHAZÁU!')); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Taken from | |
// https://stackoverflow.com/questions/951021/what-is-the-javascript-version-of-sleep/39914235#39914235 | |
function sleep(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
async function demo() { | |
console.log('Taking a break...'); | |
await sleep(2000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const success = [ | |
'background: green', | |
'color: white', | |
'display: block', | |
'text-align: center' | |
].join(';'); | |
const failure = [ | |
'background: red', | |
'color: white', | |
'display: block', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mandatoryParameter = (parameterName) => { | |
throw Error(`Parameter '${parameterName}' is mandatory`); | |
}; | |
const foo = (fluffyDragon = mandatoryParameter('fluffyDragon')) => console.log(fluffyDragon); | |
foo('Spooky'); | |
foo(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// try to do some stuff here | |
var d3 = require('d3'); | |
d3.select('body').append('text') | |
.text('hey now thats somethin a webpage without any writing any htmml') | |
console.log('yoyo') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const bcrypt = require('bcryptjs'); | |
const getCost = async () => { | |
// This code will benchmark your server to determine how high of a cost | |
// you can afford. You want to set the highest cost that you can | |
// without slowing down you server too much. 8-10 is a good baseline, | |
// and more is good if your servers are fast enough. The code below | |
// aims for ≤ 50 milliseconds stretching time, which is a good baseline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Creation Date: 2015.03.14 | |
// Author: Fernando L. Canizo - http://flc.muriandre.com/ | |
abstract class Password { | |
// Façade class to handle password hashing on different versions of PHP | |
// Uses password_hash() on PHP >= 5.5.0 | |
// Uses crypt() on PHP < 5.5.0 and >= 5.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Possible result as it comes from DB | |
let dbResults = [ | |
{ username: 'crmeco', status: 'synchronized', count: '19' }, | |
{ username: 'pamela', status: 'synchronized', count: '16' }, | |
{ username: 'pamela', status: 'todo', count: '26' } | |
]; | |
// Expected result: | |
// [ | |
// { username: 'crmeco', |