"Go home," I say. "Praise the lamb."
"How do I know it won't be the spinal cord next?"
"Hard to get to. Probably couldn't even dent it."
"I feel like I'm married to some kind of animal."
"Our animal nature is part of us and we are part of it."
296d295 | |
< self._loops = [] | |
328,329d326 | |
< elif chunkname == 'INST': | |
< self._readinst(chunk) | |
402,407d398 | |
< def getinst(self): | |
< if len(self._loops) == 0: | |
< return None | |
< return self._loops |
Index: src/hostapi/coreaudio/pa_mac_core_blocking.c | |
=================================================================== | |
--- src/hostapi/coreaudio/pa_mac_core_blocking.c (revision 1948) | |
+++ src/hostapi/coreaudio/pa_mac_core_blocking.c (working copy) | |
@@ -186,7 +186,7 @@ | |
err = PaUtil_InitializeRingBuffer( | |
&blio->outputRingBuffer, | |
- 1, ringBufferSize*blio->outputSampleSizePow2*outChan, | |
+ outChan*blio->outputSampleSizePow2, ringBufferSize, |
/** @file paex_write_sine.c | |
@ingroup examples_src | |
@brief Play a sine wave for several seconds using the blocking API (Pa_WriteStream()) | |
@author Ross Bencina <[email protected]> | |
@author Phil Burk <[email protected]> | |
*/ | |
/* | |
* $Id: paex_write_sine.c 1865 2012-09-01 21:16:25Z philburk $ | |
* | |
* This program uses the PortAudio Portable Audio Library. |
The toughest part was getting access to an EC2 instance. I followed | |
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts.html#access-ec2 | |
To set up the aws command line interface, I followed | |
http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html | |
-> http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-set-up.html | |
-> http://docs.aws.amazon.com/cli/latest/userguide/installing.html#install-bundle-other-os | |
(for my MacBook) | |
-> http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html | |
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AccessingInstancesLinux.html | |
I don't recall how I set up the public/private key pair, but it wasn't |
"Go home," I say. "Praise the lamb."
"How do I know it won't be the spinal cord next?"
"Hard to get to. Probably couldn't even dent it."
"I feel like I'm married to some kind of animal."
"Our animal nature is part of us and we are part of it."
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
chord.py | |
Brian Whitman | |
[email protected] | |
""" |
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
salami.py | |
Brian Whitman | |
[email protected] | |
""" |
# title: Love Comes Quickly | |
# artist: Pet Shop Boys | |
# metre: 4/4 | |
# tonic: B | |
0.0 silence | |
0.743038548 A, intro, | B:5 | B:5 | B:5(b7) | B:5 |, (synthesizer | |
11.193129251 B, instrumental, | G:maj/3 | G:maj/3 | F#:min/b3 | B:min | | |
20.140702947 | G:maj/3 | G:maj/3 | F#:min/b3 | B:min | | |
29.032562358 | G:maj/3 | G:maj/3 | F#:min/b3 | B:min | |
# hahaha good luck reading this you fucker. | |
for catype, catfunc, class_labels in (('f', lambda x:_f_demos(x["f"]) , [x for x in features.F_RANGES]), ('sub', lambda x:1 if x['class']=='sub_a' else 0, ('sub_a', 'sub_b'))): |
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
salami.py | |
""" | |
import sys | |
import re | |
import os |