Skip to content

Instantly share code, notes, and snippets.

@ypandit
ypandit / vim.rb
Created June 15, 2012 01:53 — forked from mgrouchy/vim.rb
Vim formula for Homebrew
require 'formula'
class Vim < Formula
homepage 'http://www.vim.org/'
url 'https://vim.googlecode.com/hg/', :revision => '57e8b75298d6'
version '7.3.712'
def features; %w(tiny small normal big huge) end
def interp; %w(lua mzscheme perl python python3 tcl ruby) end
@ypandit
ypandit / perl
Created March 20, 2012 17:08 — forked from cybersiddhu/jplack
Plack to run JBrowse locally
## --- install plack
cpanm Plack
# -- save this file as jbrowse.plack
use Plack::App::Directory;
my $app = Plack::App::Directory->new({ root => '.'})->to_app;
$app;
## -- drop it at the top level of jbrowse folder