View ex1.5.py
def p(): | |
return p() | |
def test(x, y): | |
return 0 if x == 0 else y | |
test(0, p()) |
View process-latex
s/\quarternote= /\quarternote=/g | |
s/\quarternote /\quarternote{} / | |
s/\textbf{Exercise/\par \\textbf{Exercise/g | |
s/\textbf{Track/\par \\textbf{Track/g |
View code.tex
\newcommand{code}[2]{ | |
hrulefill | |
subsection*{#1} | |
lstinputlisting{#2} | |
vspace{2em} | |
} |
View header.tex
\newcommand{\header}[1]{ | |
\begin{tikzpicture} | |
\node [fill=shade,rounded corners=5pt] | |
{ | |
\parbox{.95\linewidth}{ | |
\large | |
\textcolor{blue}{\sf \textbf{\raisebox{-15pt}{#1}}} | |
\vspace*{1ex} | |
} | |
}; |
View cond_ex.py
cond = cond_interval_count(((0, 1), (1, 2))) | |
filter_sets(cond) |
View pascal-triangle
1 | |
1 1 | |
1 2 1 | |
1 3 3 1 | |
1 4 6 4 1 | |
1 5 10 10 5 1 |
View convert.sh
fluidsynth -F output.wav ~/Soundfonts/my-soundfont.sf2 myfile.midi | |
lame output.wav |
View autoimage
.. autoimage:: notation3.png | |
:scale-html: 40 | |
:scale-latex: 80 |
View gist:9962764
#!/bin/bash | |
for file in */*.ogg | |
do | |
echo "* Converting: $name" | |
name=${file%%.*} | |
ogg123 -d wav -f - $file | lame -h -m s -b 192 - "$name.mp3" | |
done |
View midi2mp3
#!/usr/bin/env bash | |
SOUNDFONT=/Users/kroger/Dropbox/Sfonts/BOPLMEVF16.sf2 | |
TMPDIR=/tmp | |
if [[ ! -f $SOUNDFONT ]] | |
then | |
echo "Couldn't find the soundfont: $SOUNDFONT" | |
exit 1 |
NewerOlder