#Mr. Parris's Bookmarks Here are a list of shortcuts/bookmarks left on Mr. Parris's harkness/Math account. Compiled in 2012.
###volterra:
( | |
// osteophagia redux.... | |
// 2015.03.31 ---> 2015.07.27 | |
/// | |
SynthDef(\rt, { |out=0| | |
var in, grainSize, mix, arr, pitchRatio, timeDispersion, pitchDispersion; | |
timeDispersion = MouseX.kr(0.0001, 10000, 1); | |
pitchRatio = MouseY.kr(0, 1); | |
pitchDispersion = 0; | |
in = SoundIn.ar(0); |
// ugen version | |
( | |
~fract = {|iterations = 10, baserate = 100| | |
Mix.kr(Array.fill(iterations, {|i| LFDClipNoise.kr(freq: baserate*(2**i), mul: 2**(iterations - (i + 1)))}))/(2**(iterations)); | |
}; | |
) | |
( | |
{ | |
var plotarr = { |
#!/bin/bash | |
# Loads overtone workflow | |
urxvt -e bash -c "cd $HOME/insane-noises; lein repl" & | |
urxvt -e bash -c "cd $HOME/insane-noises/src/insane_noises; vim core.clj"& | |
jackd -r -d alsa -r 44100 -P |
/* | |
* ALU | |
* Sean Lee 2014-04-02 | |
* | |
* Complementary Chips implemented: | |
* - Mult: takes one bit and outputs 16 bits of the same value | |
* - Xor16: 16-bit Xor | |
* - Or16Way: 16-way Or | |
* - IsNegative: returns 1 iff MSB == 1 |
Site: https://csserver.exeter.edu/schedule | |
Page: account.php | |
-- Functionality: User Login | |
GET['login'] ==> Use login data | |
POST['username'] ==> Username of account | |
POST['password'] ==> Password of account | |
*** Cookies set in session: | |
(REQUIRED) exetertools_token ==> Login token |
#!/bin/bash | |
#DEVICE="wlp1s0" | |
DEVICE="wlan0" | |
ip -4 addr show "$DEVICE"|grep -oE '((1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])\.){3}(1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])'|head -n 1 |
1361128168399 0 | |
1361128168965 1 | |
1361128176878 1 | |
1361128187370 0 | |
1361133662207 1 | |
1361135270652 1 | |
1361135832663 1 | |
1361142113140 0 | |
1361142113511 1 | |
1361154589276 0 |
#Mr. Parris's Bookmarks Here are a list of shortcuts/bookmarks left on Mr. Parris's harkness/Math account. Compiled in 2012.
###volterra:
#/usr/bin/env python | |
import numpy as np | |
import sys | |
import matplotlib.pyplot as plt | |
#Todo: add slider, make bifurication diagram | |
# | |
# An investigation into the Logistic map, and an introduction to matplotlib |
#!/bin/bash | |
A="$HOME/.asoundrc" | |
B="$HOME/.asoundrc_old" | |
if [[ -e $A ]]; then | |
mv "$A" "$B" | |
echo "Switched to onboard soundcard" | |
else | |
mv "$B" "$A" |