This Gist was automatically created by Carbide, a free online programming environment.
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
<snippet> | |
<content><![CDATA[ | |
try { | |
${1:// (╯°□°)╯︵ ┻━┻ } | |
} catch() { | |
${2:// ┬─┬ ノ( ゜-゜ノ)} | |
}} | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> |
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
// create a group that will hold all the targets | |
var setupTarget = function() { | |
targetPool = game.add.group(); | |
// enable physics | |
targetPool.enableBody = true; | |
targetPool.physicsBodyType = Phaser.Physics.ARCADE; | |
// pre-create a pool |
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
#!/bin/bash | |
git config --global alias.a "!git add . && git status" | |
git config --global alias.aa "!git add . && git add -u . && git status" | |
git config --global alias.ac "!git add . && git commit" | |
git config --global alias.acm "!git add . && git commit -m" | |
git config --global alias.alias "!git config --list | grep 'alias\.' | sed 's/alias\.\([^=]*\)=\(.*\)/\1\ \2/' | sort" | |
git config --global alias.au "!git add -u . && git status" | |
git config --global alias.c "commit" | |
git config --global alias.ca "commit --amend" | |
git config --global alias.cm "commit -m" |
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
var React = require('react'); | |
var Headings = React.createClass({ | |
propTypes: { | |
h1: React.PropTypes.string.isRequired, | |
h2: React.PropTypes.string, | |
name: React.PropTypes.string | |
}, | |
render: function render() { |
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
.test { | |
background: black; | |
} |
I hereby claim:
- I am aerze on github.
- I am aerze (https://keybase.io/aerze) on keybase.
- I have a public key ASDmZXBLQJI2kERK-RU82S2oQUjXqJUYzAqEmrT8h5DjKQo
To claim this, I am signing this object:
My project is a basic starter using the directions on installing for docker. Containers are running smooth, db running, server running. I was able to create a few content types (schemas) per the tutorial with minor tweaks. I am able to make a request from the browser, now I'm looking to install a graphql plugin so that I can tailor the response.
It is 11:10pm, Tuesday.
- Tried clicking the download option from within the admin plugins page, while server was running.