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
(async() => { | |
try { | |
await new Promise((resolve, reject) => { | |
setTimeout(() => { | |
reject(new Error('something went wrong..')); | |
}, 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
(async() => { | |
try { | |
const str = await fs.readFileSync('./data.json'); | |
let data; | |
try { | |
data = JSON.prase(str); | |
} catch (e) { |
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
(async() => { | |
try { | |
const str = await fs.readFileSync('./data.json'); | |
let data; | |
try { | |
data = JSON.prase(str); | |
} catch (e) { |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Simulate reflow/layout (500 DIV's)</title> | |
<style> | |
#holder{ | |
margin-top: 20px; | |
border: 1px solid; |
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
@echo off | |
SET key1="<ABS PATH TO YOUR PPK1>.ppk" | |
SET key2="<ABS PATH TO YOUR PPK2>.ppk" | |
start /b "" "C:\Program Files (x86)\PuTTY\pageant.exe" %key1% %key2% |
NewerOlder