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% |
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
(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
(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
try { | |
const a = 1; | |
throw new Error('something went wrong..'); | |
const b = 2; | |
} catch (e) { | |
console.error(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
$('#someButton').click(async evt => { | |
try { | |
const userId = $(evt.target).attr('data-user-id'); | |
const res = await axios.get(`/user/${userId}`); | |
// Assume that `render` function exists | |
render(res); | |
} 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
$('#someButton').click(async evt => { | |
const userId = $(evt.target).attr('data-user-id'); | |
const res = await axios.get(`/user/${userId}`); | |
// Assume that `render` function exists | |
render(res); | |
}); |
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
app.get('/', async(req, res, next) => { | |
try { | |
const model = await Model.findById(req.params.id); | |
res.json(model); | |
} catch (e) { | |
next(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
app.get('/user/:id', async(req, res) => { | |
const user = await User.findById(req.params.id); | |
if (!user) { | |
const e = new Error('User not found'); | |
e.status = 404; | |
throw e; | |
} | |
OlderNewer