I hereby claim:
- I am danielheath on github.
- I am danielheath (https://keybase.io/danielheath) on keybase.
- I have a public key ASB64BNLOuSdIVF8CXaTle3Sq2GsnpxBwPhdcErwvGd6lAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| [options] | |
| module.system=node | |
| esproposal.class_static_fields=enable | |
| [version] | |
| 0.22.1 |
| echo "${BOLD}Checking for missing @flow comments${END}" | |
| HAVE_FLOW=true | |
| for file in $( git ls-files '**/*.js' ); do | |
| if [ -e "$file" ] ; then | |
| read flowtype < "$file" | |
| if test "x$flowtype" = 'x/* flow:disable */'; then | |
| echo "Skipping disabled file $file" > /dev/null | |
| elif test "x$flowtype" != 'x/* @flow */'; then | |
| HAVE_FLOW=false | |
| cat << EOF |
| #!/usr/bin/env ruby | |
| require 'digiusb' | |
| usage = "Usage: digicolor light_number #hex_color" | |
| raise usage unless ARGV[1] | |
| idx = ARGV[0].to_i | |
| hex = ARGV[1] |
| worlds["rea"] = "/home/ubuntu/minecraft/rea" | |
| purebdcraft = "/home/ubuntu/minecraft/resourcepack_pureBDcraft.zip" | |
| outputdir = "/home/ubuntu/minecraft/rea-render" | |
| def playerSpawnIcons(poi): | |
| if poi['id'] == 'PlayerSpawn': | |
| poi['icon'] = "bed.png" | |
| return "Spawn for %s" % poi['EntityId'] | |
| def playerIcons(poi): |
| [merge "db_structure"] | |
| name = regenerate_db_structure | |
| driver = ./script/regenerate_structure && cp db/structure.sql %A |
| class Object | |
| def method_missing | |
| x = methods.sample | |
| arity = method(x).arity.abs | |
| args = Array.new(arity) { ObjectSpace.each_object.to_a.sample } | |
| send x, *args | |
| end | |
| end |
| source 'https://rubygems.org' | |
| gem 'mysql2' |
| def int_to_bool value | |
| value == "0" ? false : true | |
| end |
| package memoize | |
| import ( | |
| "fmt" | |
| "reflect" | |
| ) | |
| // fptr is a pointer to a function variable which will receive a | |
| // memoized wrapper around function impl. Impl must have 1 or more | |
| // arguments, all of which must be usable as map keys; and it must |