This file contains hidden or 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
# GNU coreutils | |
PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH" | |
MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH" | |
# bash completion | |
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion | |
# Added by n-install (see http://git.io/n-install-repo). | |
export N_PREFIX="$HOME/n"; [[ :$PATH: == *":$N_PREFIX/bin:"* ]] || PATH+=":$N_PREFIX/bin" |
This file contains hidden or 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/sh | |
HAXE_VERSION=3.1.3 | |
HAXE_VERSION_COMMA=3,1,3 | |
NEKO_VERSION=2.0.0 | |
if [ "$1" = "y" -o "$1" = "-y" ]; then | |
This file contains hidden or 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
//*** Reflection.cpp *** | |
#include "Reflection.h" | |
#define _CRT_SECURE_NO_WARNINGS | |
#include <assert.h> | |
#include <string.h> |
This file contains hidden or 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
# Warmup-1 | |
def sleep_in(weekday, vacation): | |
if weekday and not vacation: | |
return False | |
return True | |
def monkey_trouble(a_smile, b_smile): | |
if a_smile and not b_smile or not a_smile and b_smile: | |
return False | |
return True |
This file contains hidden or 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/python | |
import os, sys | |
from xml.dom import minidom | |
#-------------------------------------- | |
BASE_PATH = os.path.dirname(__file__) | |
MAP_SRC_DIR = os.path.join(BASE_PATH, 'data/maps') | |
MAP_COMPILED_DIR = os.path.join(BASE_PATH, 'data/maps/compiled') |
This file contains hidden or 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/python | |
import os, sys | |
from xml.dom import minidom | |
#-------------------------------------- | |
BASE_PATH = os.path.dirname(__file__) | |
MAP_SRC_DIR = os.path.join(BASE_PATH, 'data/maps') | |
MAP_COMPILED_DIR = os.path.join(BASE_PATH, 'data/maps/compiled') |