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
# I turned the script into a Ruby gem. To install it, first install Rubygems if you haven't already. Instructions are here: https://rubygems.org/pages/download. Next type: sudo gem install trades | |
# | |
# To run the script type: | |
# trades | |
# | |
# Or if you only want to see trades from specific exchanges: | |
# trades mtgoxUSD thUSD britcoinGBP | |
# | |
# You can specify as many exchanges as you want. Just make sure you use the same name Bitcoincharts uses. | |
# |
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
on textualcmd(ignore, destination) | |
if destination is equal to "" then | |
return "/debug Invalid destination channel." | |
error number -128 | |
end if | |
-- iTunes | |
if isRunning("iTunes") then | |
tell application "iTunes" | |
if player state is playing then |
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
module Namespace | |
class String | |
def a | |
String.inspect | |
end | |
def b | |
::String.inspect | |
end | |
end |
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
class String | |
def sample | |
slice rand(length) | |
end | |
end | |
puts "hahaha".sample # => "h" |
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
# This bash prompt is loosely based on https://gist.github.com/31967 | |
red=$(tput setaf 1) | |
yellow=$(tput setaf 3) | |
green=$(tput setaf 2) | |
blue=$(tput setaf 6) | |
bold=$(tput bold) | |
reset=$(tput sgr0) | |
# Detects whether the current directory is a git repository |
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
require 'benchmark' | |
arr = 1_000.times.map { (1..100).to_a } | |
Benchmark.bm 9 do |x| | |
x.report('flatten') { arr.map { |x| x << 1001 }.flatten(1) } | |
x.report('flat_map') { arr.flat_map { |x| x << 1001 } } | |
end | |
# test: $ ruby flat_map.rb |
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
module Dependency | |
def self.give_me_the_nil | |
nil | |
end | |
end |
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
require "cinch" | |
require "tweetstream" | |
module Cinch | |
module Plugins | |
class Twitter | |
include Cinch::Plugin | |
def initialize(*args) | |
super |
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
object = [] | |
object.object_id # => 70185911630120 | |
hash = Hash.new([]) | |
hash[:one].object_id # => 70185911630120 | |
hash[:two].object_id # => 70185911630120 |
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
Fib = Hash.new { |hash, key| hash[key] = hash[key - 2] + hash[key - 1] } | |
Fib.merge! 0 => 0, 1 => 1 | |
require 'minitest' | |
require 'minitest/autorun' | |
describe Fib do | |
it 'fibs' do | |
assert_equal Fib[0], 0 | |
assert_equal Fib[1], 1 |
OlderNewer