vex icon indicating copy to clipboard operation
vex copied to clipboard

Public Stuff

Vex Projects Copyright Mohit Muthanna Cheppudira 2010

Everything in this repo is distributed under the MIT license.

Contents:

vextab/ - A parser for the VexTab (http://vexflow.com/vextab) tablature language js/ - Some JavaScript support stuff that is mostly unused py/ - Some Python support stuff that is mostly unused

This repo also contains some support code that are licensed by third parties. Some of these include:

  • jQuery (jquery.com)
  • Raphael (raphaeljs.com)
  • qUnit (jquery.com)

This repo is setup as a git submodule:

$ git submodule add [email protected]:0xfe/vex.git

After pushing changes here, go up to the superproject, and:

$ git submodule update

Submodule setup:

mkdir vex cd vex git init touch README git add README git commit -m 'first commit' git remote add origin [email protected]:0xfe/vex.git git push origin master

Existing Git Repo

cd existing_git_repo git remote add origin [email protected]:0xfe/vex.git git push origin master