Skip to content

Instantly share code, notes, and snippets.

View ateston's full-sized avatar

Andrés Testón ateston

View GitHub Profile
@eseceve
eseceve / Default (OSX) sublime-keymap
Last active October 9, 2015 02:08
My Sublime Text 3 setting
// realpath: User/Default (OSX).sublime-keymap
[
{
"keys": ["#"]
, "command": "insert_snippet"
, "args": {"contents": "{{$0}}"}
, "context":
[
{
"key": "setting.auto_match_enabled"
@yuya-takeyama
yuya-takeyama / binarytree.rb
Created February 5, 2011 14:32
Binary Tree implemented in Ruby.
module BinaryTree
class Node
attr_reader :word, :count, :left, :right
include Enumerable
def initialize(word)
@word, @count = word, 1
end