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
{ | |
options.target = options.target || "oracle"; | |
var _ = require('lodash'); | |
var keywords = { | |
deathtouch: {cr:"702.2"}, | |
defender: {cr:"702.3"}, | |
"double strike": {cr:"702.4"}, | |
"first strike": {cr:"702.7"}, | |
flash: {cr:"702.8"}, |
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
### Keybase proof | |
I hereby claim: | |
* I am basicer on github. | |
* I am basicer (https://keybase.io/basicer) on keybase. | |
* I have a public key whose fingerprint is 77AC 1812 278C E2E0 9984 AF71 0688 1E43 D3A0 F331 | |
To claim this, I am signing this object: |
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
#!/usr/bin/env bash | |
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x | |
source "$(dirname $0)/../common/functions" | |
case "$1" in | |
enter) | |
APP="$2" | |
IMAGE="dokku/$APP" | |
verify_app_name "$APP" | |
CONTAINERS=$(find "$DOKKU_ROOT/$APP/" -maxdepth 1 -type f -name "CONTAINER.*") |
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
// Your goal is to 'buy' a path of tiles from bottom to top. | |
// One group of tiles is available for bidding each turn. | |
// Each turn, bid to win one tile from the tile group. | |
// 1. Pick a tile to bid for. | |
// You can only choose tiles that are | |
// a) in the tileGroup and | |
// b) don't already have an owner. | |
var tileGroup = this.tileGroups[tileGroupLetter]; |
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
#include <stdio.h> | |
#include <unistd.h> | |
#define PERROR_AND_DIE(_x_) {perror(_x_); _exit(1);} | |
int main(int argc, char **argv) { | |
int fd0[2]; | |
int fd1[2]; | |
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
make: other levels lua sound | |
produce: pull bundle | |
pull: | |
hg pull | |
hg up | |
win: make |
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
application = | |
{ | |
content = | |
{ | |
width = 320, | |
height = 480, | |
scale = "zoomEven" | |
--scale = "letterbox" -- Also Fails :[ | |
}, | |
} |