Skip to content

Instantly share code, notes, and snippets.

View shlomisas's full-sized avatar
⚖️

Shlomi Sasson shlomisas

⚖️
  • Israel
View GitHub Profile
@shlomisas
shlomisas / pairs.bat
Created September 29, 2015 11:04
Startup script for to load all private keys to Pagent (Windows)
@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%
<!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;
@shlomisas
shlomisas / high-risk-code-error-handling
Last active May 10, 2018 15:32
JavaScript Error Handling (deprecated)
(async() => {
try {
const str = await fs.readFileSync('./data.json');
let data;
try {
data = JSON.prase(str);
} catch (e) {
@shlomisas
shlomisas / high-risk-code-error-handling
Last active May 15, 2018 14:23
high-risk-code-error-handling
(async() => {
try {
const str = await fs.readFileSync('./data.json');
let data;
try {
data = JSON.prase(str);
} catch (e) {
@shlomisas
shlomisas / js-app-main-error-handling-async
Last active May 10, 2018 15:32
js-app-main-error-handling-async
(async() => {
try {
await new Promise((resolve, reject) => {
setTimeout(() => {
reject(new Error('something went wrong..'));
}, 0);
});
@shlomisas
shlomisas / js-app-main-error-handling-sync
Last active May 10, 2018 15:31
js-app-main-error-handling-sync
try {
const a = 1;
throw new Error('something went wrong..');
const b = 2;
} catch (e) {
console.error(e);
@shlomisas
shlomisas / js-browser-app-event-listener-error-handling
Last active May 15, 2018 14:18
js-browser-app-event-listener-error-handling
$('#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) {
@shlomisas
shlomisas / js-browser-app-event-listener-example
Last active May 15, 2018 14:17
js-browser-app-event-listener-example
$('#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);
});
@shlomisas
shlomisas / js-express-app-route-error-handling
Last active May 15, 2018 14:18
js-express-app-route-error-handling
app.get('/', async(req, res, next) => {
try {
const model = await Model.findById(req.params.id);
res.json(model);
} catch (e) {
next(e);
}
});
@shlomisas
shlomisas / js-express-app-route-example
Last active May 15, 2018 14:18
js-express-app-route-example
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;
}