I hereby claim:
- I am sumpygump on github.
- I am jansenprice (https://keybase.io/jansenprice) on keybase.
- I have a public key ASBAZNTU5XEbXCGFXfyDK4n80wWtaCLmfHrRKNGMir1Vkwo
To claim this, I am signing this object:
"""Merge midi data""" | |
import argparse | |
import csv | |
import glob | |
import os | |
import subprocess | |
import sys | |
POS_TRACK = 0 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
# coding=utf-8 | |
import random | |
vowels = ["a", "i", "u", "e", "o"] | |
predicate_consonants = ["k", "g", "s", "z", "t", "d", "n", "h", "b", "p"] | |
syllables = [] | |
_chars = "アイウエオカキクケコガギグゲゴサシスセソザジズゼゾタチツテトダヂヅデドナニヌネノハヒフヘホバビブベボパピプペポ" |
I set up a new plugin using the WP Plugin Boilerplate generator: https://wppb.me
Make sure you have wp-cli installed https://wp-cli.org
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
chmod +x wp-cli.phar
# regex to split $uri to $fastcgi_script_name and $fastcgi_path | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
# Check that the PHP script exists before passing it | |
try_files $fastcgi_script_name =404; | |
# Bypass the fact that try_files resets $fastcgi_path_info | |
# see: http://trac.nginx.org/nginx/ticket/321 | |
set $path_info $fastcgi_path_info; | |
fastcgi_param PATH_INFO $path_info; |
# Reticent Memory | |
# By Jansen Price 3/17/2016 | |
# For Sonic Pi v2.9 | |
use_bpm 124 | |
# Don't log as much | |
use_debug false | |
# Set random seed |
#!/bin/bash | |
# Maybe Git | |
# INSTALLATION | |
# 1. Move this file into your ~/bin directory | |
# mv ./maybe-git ~/bin | |
# 2. Then run the following command: | |
# alias git='~/bin/maybe-git' |
#!/bin/bash | |
###################################################################### | |
# The ASCII lightsaber # | |
# # | |
# By: Jansen Price <[email protected]> # | |
# November 19, 2015 # | |
# ▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ # | |
# |▍░▐░░▣░▒░▒░▒▕| ▌ # | |
# ▔▔▔▔▔▔▔▔▔▝▔▔▔ ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ # |
#!/usr/bin/env python | |
# This is a quick CLI tool to preview a folder of audio samples. | |
# Run it in a directory with some .wav files. | |
# Uses mplayer to trigger playing the sounds. | |
# Currently it loads up as many samples as will fit on the keyboard (lowercase letters) | |
# In the future it will allow you to change directories, page through samples on the keyboard and maybe some other fun stuff. | |
import sys | |
import os |