Skip to content

Instantly share code, notes, and snippets.

View embiem's full-sized avatar

Martin Beierling-Mutz embiem

View GitHub Profile
@embiem
embiem / screenshot.js
Last active September 19, 2017 08:58
Create a full-height screenshot of a website using [puppeteer](https://github.com/GoogleChrome/puppeteer)
const puppeteer = require('puppeteer');
const width = 1200;
const url = process.argv.length > 2 ? process.argv[2] : 'https://ea.com';
const screenshotPath = process.argv.length > 3 ? process.argv[3] : 'screenshot.png';
console.log(`${url} --> ${screenshotPath}`);
(async () => {
const browser = await puppeteer.launch();
try {
@embiem
embiem / .vscodestyles.css
Last active January 19, 2018 14:43
vscode custom css
.monaco-shell {
font-family: "Operator Mono", "Inconsolata", monospace;
}
/*
Fat Cursor.
This overwrites the "underline thin" style since that is one that can be styled with CSS
So set your settings to:
"editor.cursorStyle": "underline-thin",
*/

Keybase proof

I hereby claim:

  • I am embiem on github.
  • I am mbeierling (https://keybase.io/mbeierling) on keybase.
  • I have a public key ASDa9PSKmSTOIZzmhEuvoxEDmsFWWOSGXC3PkpQcPls6pQo

To claim this, I am signing this object:

@embiem
embiem / ml-intro-ml-in-gamedev-workshop.ipynb
Last active October 22, 2019 14:58
ML Intro & ML in GameDev Workshop.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.