This file contains hidden or 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
2017-04-01 2017-10-01 The Bear & Peacock Brewery Orlando, FL | |
2017-02-01 Nude Nite Orlando, FL | |
2016-09-01 Small Works Show City Arts Factory Orlando, FL | |
2016-08-01 Declaration of the Mind 1st Thursdays Orlando Museum of Art, FL | |
2016-07-01 Rock (People's Choice Award Winner) 1st Thursdays, Orlando Museum of Art, FL | |
2016-03-01 Viva La Diva 1st Thursdays, Orlando Museum of Art, FL | |
2016-03-01 Nude Nite Tampa, FL | |
2016-02-01 Peace and Harmony 1st Thursdays, Orlando Museum of Art, FL | |
2016-10-01 Winter Park, FL | |
2012-08-01 Vegas Gallery, Las Vegas, AZ |
This file contains hidden or 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
# sinatra twitter client with oauth | |
require 'rubygems' | |
require 'sinatra' | |
# use http://github.com/moomerman/twitter_oauth gem | |
# gem sources -a http://gems.github.com | |
# gem install moomerman-twitter_oauth | |
require 'twitter_oauth' |
This file contains hidden or 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
/* | |
d3.phylogram.js | |
Wrapper around a d3-based phylogram (tree where branch lengths are scaled) | |
Also includes a radial dendrogram visualization (branch lengths not scaled) | |
along with some helper methods for building angled-branch trees. | |
Copyright (c) 2013, Ken-ichi Ueda | |
All rights reserved. |
This file contains hidden or 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
## USA | |
# WUFT Gainesville (News): | |
http://ice02.jou.ufl.edu:8000/wufthd164 | |
# WUFT Gainesville (Classical) | |
http://ice01.jou.ufl.edu:8000/wufthd2256 | |
# Grow Radio (Gainesville) | |
http://stream.growradio.org:8000/high-stream | |
# WFMU New York | |
http://stream0.wfmu.org/freeform-128k |
This file contains hidden or 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
file_to_disk = './tmp/large_disk.vdi' | |
Vagrant::Config.run do |config| | |
config.vm.box = 'base' | |
config.vm.customize ['createhd', '--filename', file_to_disk, '--size', 500 * 1024] | |
config.vm.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', file_to_disk] | |
end |
This file contains hidden or 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
#!/usr/bin/env python | |
# calculate mean and variance of the sequence lengths in a large fasta file | |
# method taken from: | |
# http://math.stackexchange.com/questions/20593/calculate-variance-from-a-stream-of-sample-values | |
# m_k = m_(k-1) + x_k + m_(k-1) | |
# v_k = v_(k-1) + (x_k -m_(k-1))(x_k - m_k) |
This file contains hidden or 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
def the_flying_circus(): | |
# what's going on here? | |
True and True is True | |
# use parenthesis to make this statement not ambiguous | |
if (True and True) is False: | |
print "Horray" | |
elif False: | |
print "fuck" | |
else: |
This file contains hidden or 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
# (c) 2012 Andreas Mueller [email protected] | |
# License: BSD 2-Clause | |
# | |
# See my blog for details: http://peekaboo-vision.blogspot.com | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from matplotlib.animation import FuncAnimation |
This file contains hidden or 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
#!/usr/bin/env ruby | |
sequence_starts = Array.new | |
filename = ARGV[0] | |
# preprocess | |
File.open(filename, "r") do |input| | |
input.each do |line| | |
if line =~ /^>/ |
This file contains hidden or 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
#!/usr/bin/env ruby | |
require 'dna' # gem install dna | |
left, right = ARGV[0], ARGV[1] | |
left_handle = File.open(left) | |
right_handle = File.open(right) | |
left_records = Dna.new(left_handle) |
NewerOlder