I hereby claim:
- I am spikegrobstein on github.
- I am spizzike (https://keybase.io/spizzike) on keybase.
- I have a public key whose fingerprint is 0633 0076 8FE7 AEFE 4E03 9CDA 75BC D287 70D0 33E3
To claim this, I am signing this object:
#! /bin/bash - | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2014 Spike Grobstein | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
I hereby claim:
To claim this, I am signing this object:
require 'rubygems' | |
require 'faraday' | |
require 'oj' | |
require 'openssl' | |
require 'base64' | |
require 'digest/md5' | |
require 'ostruct' | |
require 'pry' | |
API_HOST = 'https://bittrex.com' |
#! /usr/bin/env ruby | |
require 'nokogiri' | |
require 'faraday' | |
host = 'http://plex.example.com:32400' | |
uri = '/status/sessions' | |
f = Faraday.new( host ) |
./configure --prefix=$HOME/.local --enable-rubyinterp=yes --with-features=big |
# Example configuration for mcwrapper: mcwrapper.conf | |
# this file can live in any of the following places (in order of priority): | |
# - the value of MCWRAPPER_CONFIG_PATH env variable | |
# - the current working directory as "mcwrapper.conf" | |
# - ~/.mcwrapper.conf | |
# - /etc/mcwrapper.conf | |
# | |
# Configuration is actual Bash. You can use conditionals... not that you would. | |
. "/root/minecraft/minecraft-docker" |
"\e[A": history-search-backward | |
"\e[B": history-search-forward | |
$if Bash | |
Space: magic-space | |
$endif | |
"\M-o": "\C-p\C-a\M-f " | |
set visible-stats on | |
set show-all-if-ambiguous on | |
"\M-s": menu-complete |
defmodule Math do | |
def pow( num, power ) do | |
_pow num, power, 1 | |
end | |
def _pow( num, 0, acc ) do | |
acc | |
end |
defmodule MessageBus do | |
# call any function that matches the listener | |
# type is atom (eg: :hello) | |
# message is string | |
# listeners is list of tuples of functions | |
# [ hello: fn(m) -> IO.puts m end, bye: fn(m) -> IO.puts m end, hello: fn(m) -> IO.puts "I will also do this crap" end ]""] | |
def publish(type, message, listeners) do | |
_publish(type, message, listeners) | |
end |
git submodule add -b master https://github.com/elixir-lang/vim-elixir.git bundle/vim-elixir |