Skip to content

Instantly share code, notes, and snippets.

View compressed's full-sized avatar

compressed

  • Frostly LLC ❅
  • Boston, MA
View GitHub Profile
@compressed
compressed / syntax_highlighting.py
Created January 27, 2012 11:10 — forked from lporras/syntax_highlighting.py
Ruby on Rails syntax highlight switcher for Sublime Text 2
import sublime, sublime_plugin
import os
class DetectFileTypeCommand(sublime_plugin.EventListener):
""" Detects current file type if the file's extension isn't conclusive """
""" Modified for Ruby on Rails and Sublime Text 2 """
""" Original pastie here: http://pastie.org/private/kz8gtts0cjcvkec0d4quqa """
def on_load(self, view):
filename = view.file_name()
class User < Ohm::Model
set :keywords, String
end
------------------------------------
ruby-1.9.2-p136 :043 > u=User.create
=> #<User:1 keywords=#<Set (String): []>>
ruby-1.9.2-p136 :044 > u.keywords << 'hi'
NoMethodError: undefined method `id' for "hi":String
class Widget < Ohm::Model
include Ohm::Callbacks
attribute :name
index :name
def validate
assert_present :name
end
@compressed
compressed / sma.jl
Last active August 29, 2015 14:10 — forked from IainNZ/sma.jl
function sma_original(avect, numPer)
numEle = length(avect)
tout = Array(Float32, numEle)
for ndx = 1:numEle
tsum = 0.0
begndx = max(1, ndx - numPer)
for slicendx = begndx:ndx
tsum += avect[slicendx]
end
tout[ndx] = tsum / float32(numPer)
@compressed
compressed / .vimrc
Last active August 29, 2015 14:04
.vimrc
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'tComment'
extern crate collections;
use collections::HashMap;
struct Item {
id: int,
name: StrBuf,
}
fn build_hash(vec: Vec<Item>) -> HashMap<int, Item> {