Skip to content

Instantly share code, notes, and snippets.

View tlozoot's full-sized avatar

Jon Levine tlozoot

  • Databricks
  • San Francisco, CA
  • 15:42 (UTC -07:00)
  • X @jplevine
View GitHub Profile

tl;dr

I'm sharing a "Boss-style" looper preset for the Strymon Volante on the MC6 Pro

Why did you make this?

I have a Strymon Volante and the built in, tape-style "Sound on Sound" looper is cool.

However, I always found the controls confusing and unintuitive. I tried and failed to use it in a band situation, and never actually used it much on my own.

Part A:
Cm7 Abadd9 F7sus2 Bb Bdim
e|---6-------6--------6-------x----x-----
B|---4-------4--------4-------3----0-----
G|---5-------5--------5-------3----0-----
D|---x-------x--------3-------3----0-----
A|---3-------x--------x-------1----2-----
E|---x-------4--------x-------x----x-----
#!/usr/bin/env python
# coding: utf-8
# In[1]:
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
#!/usr/bin/env ruby
require 'net/http'
require 'time'
require 'descriptive_statistics'
HOST = ARGV[0] || 'localhost:4567'
SEED = ARGV[1] || '1'
uri = URI("http://#{HOST}/stream/#{SEED}")
#!/usr/bin/env ruby
require 'net/http'
require 'time'
require 'descriptive_statistics'
HOST = ARGV[0] || 'localhost:4567'
SEED = ARGV[1] || '1'
uri = URI("http://#{HOST}/stream/#{SEED}")
#!/usr/bin/env ruby
board_file = ARGV[0] || "board.txt"
BOARD = File.open(board_file).readlines.map(&:split)
MIN_WORD_LENGTH = 3
MAX_SEARCH_DEPTH = 12
MAX_LINE_LENGTH = 4
class String
#!/usr/bin/env ruby
@@input_words = File.open(ARGV[0]).read.split.map(&:strip)
@@dict = File.open("/var/tmp/twl06.txt").readlines.map{ |l| l.strip.downcase }
def print_table(table)
table.each do |row|
puts row.inspect
end
end
@tlozoot
tlozoot / circus.rb
Last active August 9, 2018 16:30
When run on the correct day, reserves your circus center class!
#!/usr/bin/env ruby
require 'time'
require 'net/https'
require 'uri'
require 'cgi'
require 'rubygems'
require 'nokogiri'
phone: 484 225 7466
email: tlozoot@gmail.com
@tlozoot
tlozoot / ms_frequency.rb
Created January 26, 2012 22:41
Takes a list of english words and spits out a file with their frequencies
#! /usr/bin/env ruby
# Info about the Web N-Gram service is here: http://web-ngram.research.microsoft.com/info/
def frequency_for(word)
require 'net/http'
serviceURI = 'http://web-ngram.research.microsoft.com/rest/lookup.svc/'
model = 'bing-body/jun09/3'
token = 'e031ea91-bf50-4522-a780-53e557754423'
Net::HTTP.get(URI.parse("#{serviceURI}/#{model}/jp?u=#{token}&p=#{word}")).to_f