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 o = { | |
edit(cb) { | |
console.log('EDIT') | |
return Promise.resolve(false) | |
.then(cb) | |
} | |
} | |
function run() { | |
console.log('RUN') |
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
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Laptop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz | |
CPU Family: 0x6 |
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
After Bit | |
Alexandre Astier | |
At0mium | |
At0mium - Ancienne chaîne | |
Attention, ça glyphe ! | |
Axolot | |
Bad Lip Reading | |
Bazar du Grenier | |
benzaie | |
BenzaieLive |
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
var failedFunc = () => Promise.reject() | |
var maxCount = 3; | |
(function loopCall (maxCount, count) { | |
if (count == undefined) count = 0 | |
return failedFunc() | |
.catch((err) => { | |
count++ | |
if (count == maxCount) return Promise.reject(err) | |
return loopCall(maxCount, count) | |
}) |
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' | |
let it=(function*(){ | |
let i=1 | |
while(1){ | |
yield new Promise((resolve)=>{ | |
setTimeout(()=>{ | |
resolve(i++) | |
},1000) | |
}) | |
} |
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
# 340 characters | |
def s; sleep 0.2 end | |
alias p puts | |
while 1 do | |
l="LOL" | |
e=' ' | |
a="\e[H\e[2J#{e*8}/\\o\n#{e*9}/\\/\n#{e*8}/\\\n#{e*7}/ \\\n"+e*6+(l+e)*2+"\n:-D LOLLERSKATES :-D" | |
s() | |
p a | |
a[15..16]=" _" |