<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-33892275</id><updated>2012-02-16T18:44:12.529-05:00</updated><category term='Charlotte'/><category term='buddhism'/><category term='visual'/><category term='astronomy'/><category term='ferry'/><category term='ai'/><category term='web'/><category term='3d'/><category term='metaphor'/><category term='taste'/><category term='garden'/><category term='France'/><category term='nature'/><category term='instruction piece'/><category term='art'/><category term='astrology'/><category term='distortion'/><category term='Lyon'/><category term='Brussels'/><category term='troy'/><category term='train'/><category term='war'/><category term='San Diego'/><category term='truth'/><category term='psychology'/><category term='Atlanta'/><category term='Paris'/><category term='Delft'/><category term='castle'/><category term='video'/><category term='transcoding'/><category term='Wrocław'/><category term='Gdynia'/><category term='dance'/><category term='Gdańsk'/><category term='Wadowice'/><category term='abstract'/><category term='visualization'/><category term='Bern'/><category term='Italy'/><category term='logic'/><category term='mortality'/><category term='semantic web'/><category term='meta-philosophy'/><category term='language'/><category term='memory'/><category term='newark'/><category term='philosophy'/><category term='blindness'/><category term='cognitive science'/><category term='game'/><category term='geometry'/><category term='epistemology'/><category term='contentness'/><category term='discrete math'/><category term='Toruń'/><category term='design'/><category term='pre-socratic philosophy'/><category term='experimental'/><category term='Rydzyna'/><category term='architecture'/><category term='hinduism'/><category term='distant'/><category term='love'/><category term='noise'/><category term='Netherlands'/><category term='space'/><category term='glitch'/><category term='mind'/><category term='Zakopane'/><category term='Wieliczka'/><category term='Kraków'/><category term='thesis'/><category term='myth'/><category term='Amsterdam'/><category term='pride'/><category term='Firenze'/><category term='critical thinking'/><category term='gestural'/><category term='London'/><category term='museum'/><category term='evolution'/><category term='hope'/><category term='Poland'/><category term='existentialism'/><category term='interface'/><category term='Łazienki'/><category term='physical'/><category term='sound'/><category term='activism'/><category term='Poznań'/><category term='Warszawa'/><category term='sonification'/><category term='physics'/><category term='beauty'/><category term='science'/><category term='ecology'/><category term='square'/><category term='gesture'/><category term='christianity'/><category term='computer science'/><category term='math'/><category term='theory'/><category term='linguistics'/><category term='Sopot'/><category term='uprising'/><category term='Belgium'/><category term='aural'/><category term='politics'/><category term='freewill'/><category term='judaism'/><category term='music'/><category term='games'/><category term='communication'/><category term='Częstochowa'/><category term='Switzerland'/><category term='electronics'/><category term='life'/><category term='time'/><category term='conceptual'/><category term='Hoek van Holland'/><category term='passion'/><category term='dreams'/><category term='economics'/><category term='Oświęcim'/><category term='computer vision'/><category term='homelessness'/><category term='redemption'/><category term='food'/><category term='religion'/><category term='poetry'/><category term='Malbork'/><category term='computability'/><category term='Roma'/><category term='park'/><category term='sociology'/><category term='morality'/><title type='text'>erratic semaphore</title><subtitle type='html'>undeveloped ideas awaiting attention, musings i'd like to remember</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default?start-index=101&amp;max-results=100'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>270</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-33892275.post-1827283080811967425</id><published>2012-01-17T21:08:00.004-05:00</published><updated>2012-01-17T22:21:14.064-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='philosophy'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Make Fewer Decisions, Write Less Code</title><content type='html'>&lt;p&gt;I have two suggestions for aspiring C++ programmers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Make fewer decisions.&lt;/li&gt;
&lt;li&gt;Write less code.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These might seem counterintuitive at first, so let me explain.&lt;/p&gt;

&lt;p&gt;Let's say you have a setter method for an object.&lt;/p&gt;

&lt;pre&gt;
class MyObject {
public:
 void setSize(int);
private:
 int size;
}
&lt;/pre&gt;

&lt;p&gt;When you implement that method, how do you name the argument? Here is one way:&lt;/p&gt;

&lt;pre&gt;
void MyObject::setSize(int size) {
 this-&gt;size = size;
}
&lt;/pre&gt;

&lt;p&gt;You may have also seen "int _size" or "int inSize", or maybe MyObject has a variable "mSize" instead, or any number of other combinations. I personally do it the above way because I have a thorough understanding of variable scope, and this happens to minimizes the number of unique symbols.&lt;/p&gt;

&lt;p&gt;The important thing isn't which approach you pick, it's that you consistently use that solution. Each time you see a setter method, you should be able to write out those two lines without thinking twice. In other words, when you come across a mundane problem you should always have the same solution. You shouldn't even have to make a decision: every time there is more than one way to do something, pick the way that works most of the time, and always use it.&lt;/p&gt;

&lt;p&gt;As another example, perhaps you have a collection of things you want to loop through. Here is the first thing I write:&lt;/p&gt;

&lt;pre&gt;for(int i = 0; i &lt; n; i++)&lt;/pre&gt;

&lt;p&gt;Code formatting is a kind of recurring decision. What is the smallest set of rules you can formulate for the way you format code? These are two for the above line:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Binary operators are surrounded by spaces.&lt;/li&gt;
&lt;li&gt;Semicolons are followed by spaces.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By minimizing the number of rules you have to follow, and having them cover as many situations as possible, you can reduce the amount of decisions you have to make. Maybe the above rules can be further simplified by removing the word "binary"?&lt;/p&gt;

&lt;p&gt;Similarly important are your design pattern choices, all the way down to variable and enumeration idioms:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Always use "i" as your index variable.&lt;/li&gt;
&lt;li&gt;Always use "n" as your terminating condition.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.cs.utexas.edu/users/EWD/transcriptions/EWD08xx/EWD831.html"&gt;Always use the &amp;lt; when enumerating a range.&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After writing the above line, you can define "n" on the line above. You'll probably need it again later. And sometimes you can even use something like boost to write the whole thing with a single idiom.&lt;/p&gt;

&lt;p&gt;If you're ever asking yourself how your code should be formatted or whether to use &amp;lt; or &amp;lt;= for a loop condition, you're probably wasting time that could be better spent on high level decisions. When I'm using Xcode I use its terrible auto-indent feature to make sure my code is consistent, even though I aesthetically disagree with some of its decisions &amp;mdash; it's the fastest way of normalizing my code.&lt;/p&gt;

&lt;p&gt;Besides making fewer decisions (and, in the process, writing more consistent code), it's important to write less. Writing less means finding creative ways to use fewer symbols, fewer objects, fewer control statements, fewer loops. Writing less should never make things more complicated. Consider the two functions below:&lt;/p&gt;

&lt;pre&gt;
bool both(bool a, bool b) {
 if(a) {
  if(b) {
   return true;
  }
  if(!b) {
   return false;
  }
 }
}
bool both(bool a, bool b) {
 return a &amp;&amp; b;
}
&lt;/pre&gt;

&lt;p&gt;It's an extreme example, but the point is: when you write less code, there are &lt;a href="http://www.neverworkintheory.org/?p=58"&gt;fewer opportunities to make mistakes&lt;/a&gt; (there is actually a mistake in the first one, can you see it?). In the situation above, you can simplify your code with truth table analysis. To sum the numbers from 1 to n you can (arguably) simplify your code with recursion, or the more efficient analytic version:&lt;/p&gt;

&lt;pre&gt;
int sum(int n) {
 int sum = 0;
 for(int i = 1; i &lt;= n; i++) {
  sum += i;
 }
 return sum;
}
int sum(int n) {
 if(n &gt; 0) {
  return 1 + sum(n - 1);
 } else {
  return 0; 
 }
}
int sum(int n) {
 return (n * (n + 1)) / 2;
}
&lt;/pre&gt;

&lt;p&gt;For each of those techniques, how many ways could they be wrong? Which one is the simplest?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-1827283080811967425?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/1827283080811967425/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=1827283080811967425' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1827283080811967425'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1827283080811967425'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2012/01/make-fewer-decisions-write-less-code.html' title='Make Fewer Decisions, Write Less Code'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8391601194190482167</id><published>2011-03-17T11:10:00.006-04:00</published><updated>2011-03-17T11:49:00.865-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='computer vision'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Median Filtering in OpenCV</title><content type='html'>&lt;p&gt;I was just browsing through the &lt;a href="https://code.ros.org/trac/opencv/browser/trunk/opencv/"&gt;OpenCV source&lt;/a&gt; to learn more about how it implements smoothing. I noticed a few interesting things that say something more general about how OpenCV2 is structured.&lt;/p&gt;

&lt;p&gt;In OpenCV1 there is cvSmooth(), which lets you pass a parameter like CV_GAUSSIAN or CV_MEDIAN to specify what kind of smoothing you want. In OpenCV2, this function coexists with CV2-style functions like cv::medianBlur() and cv::GaussianBlur() (note that Gaussian is capitalized because it is a proper name). If you scroll to the very bottom of &lt;a href="https://code.ros.org/trac/opencv/browser/trunk/opencv/modules/imgproc/src/smooth.cpp"&gt;smooth.cpp&lt;/a&gt;, you'll find cvSmooth(), where it becomes evident that the newer cv::medianBlur and cv::GaussianBlur() are the implementations, while cvSmooth() is a wrapper that simply calls them.&lt;/p&gt;

&lt;p&gt;Reading the &lt;a href="http://opencv.willowgarage.com/documentation/cpp/imgproc_image_filtering.html?highlight=smooth#cv-medianblur"&gt;documentation&lt;/a&gt;, I was surprised to find that many of the blurring functions support in-place processing. Due to &lt;a href="https://secure.wikimedia.org/wikipedia/en/wiki/Median_filter"&gt;the way median filtering works&lt;/a&gt;, in-place operation is a non-trivial property. Digging into cv::medianBlur(), you'll find:&lt;/p&gt;

&lt;pre&gt;
void medianBlur(const Mat&amp; src0, Mat&amp; dst, int ksize) {
...
 dst.create( src0.size(), src0.type() );
...
 cv::copyMakeBorder( src0, src, 0, 0,
  ksize/2, ksize/2, BORDER_REPLICATE );
...
}
&lt;/pre&gt;

&lt;p&gt;First, it calls Mat::create() on the dst Mat (in CV1, this would be an IplImage*). Mat::create() ensures that dst is the right size and type. If you pass it an unallocated Mat then this step allocates it for you, which makes it easy to use but less efficient. Then it does a copyMakeBorder(), which makes it safe to run the median filter on the edges of the image. So even if you give medianBlur() an allocated dst Mat, it's still going to be allocating a big working image for doing the blur! Finally, there's this mess of an if statement:&lt;/p&gt;

&lt;pre&gt;
double img_size_mp = (double)(size.width*size.height)/(1 &lt;&lt; 20);
if( ksize &lt;=
  3 + (img_size_mp &lt; 1 ? 12 : img_size_mp &lt; 4 ? 6 : 2)*
  (MEDIAN_HAVE_SIMD &amp;&amp; checkHardwareSupport(CV_CPU_SSE2) ? 1 : 3)) {
 medianBlur_8u_Om( src, dst, ksize );
} else {
 medianBlur_8u_O1( src, dst, ksize );
}
&lt;/pre&gt;

&lt;p&gt;This is actually a really pleasant surprise. There are two things that might happen here: medianBlur_8u_Om() or medianBlur_8u_O1(). The _Om() function takes as long to run as your image is big (called O(n) time, or &lt;a href="https://secure.wikimedia.org/wikipedia/en/wiki/Linear_time#Linear_time"&gt;linear time&lt;/a&gt;) while the _O1() function takes a constant amount of time to run, regardless of how big your image is (O(1) time, or constant time). The O(1) implementation isn't trivial, and was only implemented in &lt;a href="http://nomis80.org/ctmf.html"&gt;a 2007 paper&lt;/a&gt;. If the O(1) function is available, why not just always use that? The answer is in the if statement above: sometimes when your kernel size is smaller (relative to your total image size) it's actually faster to use the O(n) function. OpenCV has gone to the trouble of figuring out where that cutoff is, and this if statement encodes that cutoff &amp;mdash; automatically switching between the implementations for us.&lt;/p&gt;

&lt;p&gt;In conclusion, if you need the most blazingly-fast median filtering code ever, first you need to figure out which side of the if statement you're on (O(n) or O(1)). Then you should prepare a reusable buffer for yourself using cv::copyMakeBorder(), and call medianBlur_8u_O1() or medianBlur_8u_Om() directly.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8391601194190482167?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8391601194190482167/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8391601194190482167' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8391601194190482167'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8391601194190482167'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2011/03/median-filtering-in-opencv.html' title='Median Filtering in OpenCV'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-671088972893775333</id><published>2011-03-14T22:04:00.002-04:00</published><updated>2011-03-14T22:11:39.223-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Social Media Predictors</title><content type='html'>&lt;p&gt;Who is winning on the internet right now?&lt;/p&gt;

&lt;p&gt;Let's say you watch a video on YouTube. You're the 500th viewer, and later that day it explodes to 100k views. This gives you a score of 500/100000 = .005. The next day you watch a video, you're the 500th viewer, but the video never goes beyond 1k views. So your score that day is 500/1000 = .5. Your average score is (.005 + .5) / 2 = ~.25.&lt;/p&gt;

&lt;p&gt;Let's say the person with the lowest score is winning. Unfortunately, the only institution that's really in a position to calculate this score is Google.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-671088972893775333?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/671088972893775333/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=671088972893775333' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/671088972893775333'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/671088972893775333'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2011/03/social-media-predictors.html' title='Social Media Predictors'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6801752425741564686</id><published>2011-02-10T22:28:00.006-05:00</published><updated>2011-02-10T22:49:11.061-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='interface'/><category scheme='http://www.blogger.com/atom/ns#' term='poetry'/><title type='text'>libfreenect, three months in</title><content type='html'>&lt;i&gt;

it's been &lt;a href="https://github.com/OpenKinect/libfreenect/commit/4094151eb0a8eb71f24df9d204e04b89b1724ea1"&gt;three months&lt;/a&gt;,&lt;br/&gt;
we're already telling students,&lt;br/&gt;
"you need to threshold the depth image"&lt;br/&gt;
and &lt;a href="http://nicolas.burrus.name/index.php/Research/KinectRgbDemoV4?from=Research.KinectRgbDemoV3"&gt;waving around our kinect&lt;/a&gt; for a more complete perspective&lt;br/&gt;
&lt;br/&gt;
now go get your kinect&lt;br/&gt;
and put it in the same spot you put it&lt;br/&gt;
when you first brought it home.&lt;br/&gt;
&lt;br/&gt;
do you remember the feeling&lt;br/&gt;
of a new eye in your house?&lt;br/&gt;
a welcome intruder?&lt;br/&gt;
&lt;br/&gt;
watch it sitting there and try to remember&lt;br/&gt;
the feeling that things are somehow "more 3d"&lt;br/&gt;
now that the computer can see it too.&lt;br/&gt;
&lt;br/&gt;
when you first brought it home&lt;br/&gt;
was it pointing away from you?&lt;br/&gt;
proving itself to you,&lt;br/&gt;
identifying the scale of a scene&lt;br/&gt;
larger than itself?&lt;br/&gt;
&lt;br/&gt;
it's been three months,&lt;br/&gt;
which direction are you pointing it now?&lt;br/&gt;
&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6801752425741564686?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6801752425741564686/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6801752425741564686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6801752425741564686'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6801752425741564686'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2011/02/libfreenect-three-months-later.html' title='libfreenect, three months in'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6614654189678267814</id><published>2010-11-10T17:35:00.004-05:00</published><updated>2010-11-10T18:22:12.941-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='interface'/><category scheme='http://www.blogger.com/atom/ns#' term='poetry'/><title type='text'>libfreenect</title><content type='html'>&lt;span style="font-style:italic;"&gt;

&lt;p&gt;is it just me, or is &lt;a href="http://git.marcansoft.com/?p=libfreenect.git"&gt;this&lt;/a&gt; kind of exciting?&lt;/p&gt;

&lt;p&gt;not exciting because it's a new "gadget",&lt;br/&gt;
but because it's different kind of tool.&lt;/p&gt;

&lt;p&gt;without the &lt;a href="https://secure.wikimedia.org/wikipedia/en/wiki/PlayStation_Eye#PC_drivers"&gt;ps3eye&lt;/a&gt;,&lt;br/&gt;
the &lt;a href="http://www.eyewriter.org/"&gt;eyewriter&lt;/a&gt; wouldn't exist in its current form.&lt;br/&gt;
what should we make with kinect?&lt;br/&gt;
is there anything we couldn't do before?&lt;/p&gt;

&lt;p&gt;how long until we tell students&lt;br/&gt;
"to detect someone,&lt;br/&gt;
first you need to &lt;a href="http://www.youtube.com/watch?v=EPUkueinGK4"&gt;threshold the depth image&lt;/a&gt;" or,&lt;br/&gt;
"for a full 3d map of a space,&lt;br/&gt;
you'll need about 4 kinects in the center of room"&lt;/p&gt;

&lt;p&gt;how long until the new posture is "hands forward" instead of "&lt;a href="http://www.flong.com/texts/essays/essay_pose/"&gt;hands up&lt;/a&gt;"?&lt;br/&gt;
"superman" instead of "surrender"?&lt;/p&gt;

&lt;p&gt;how long until we just wave a kinect around,&lt;br/&gt;
get a complete 3d map of a space&lt;br/&gt;
feed it into our projection mapping toolkit&lt;br/&gt;
and start making interesting work&lt;br/&gt;
instead of &lt;a href="http://vvvv.org/documentation/how-to-project-on-3d-geometry"&gt;worrying about the mapping&lt;/a&gt;?&lt;/p&gt;

&lt;p&gt;and finally, what kind of work is inevitable with 3d sensing?&lt;br/&gt;
how long until there is a clear 3d interaction aesthetic?&lt;br/&gt;
and we say "i've seen this before, i bet they did it with a kinect" ;)&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6614654189678267814?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6614654189678267814/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6614654189678267814' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6614654189678267814'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6614654189678267814'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/11/libfreenect.html' title='libfreenect'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5142010325496817655</id><published>2010-08-29T17:10:00.003-04:00</published><updated>2010-08-29T17:17:49.970-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='glitch'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='theory'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><title type='text'>In Response to "Glitching vs..."</title><content type='html'>&lt;p&gt;A couple of days ago &lt;a href="http://www.evanmeaney.com/"&gt;Evan Meaney&lt;/a&gt; wrote a blog post titled &lt;a href="http://gli.tc/h/blog/?p=55"&gt;"Glitching vs. Processing vs. Moshing vs. Signal Interference"&lt;/a&gt;. I really appreciate Evan's glitch work, from "Ceibas Cycle" to his writings in "on glitching", where he describes the inevitable collaboration with information theory present in all digital work. But this most recent post just doesn't make any sense.&lt;/p&gt;

&lt;p&gt;He states that the post is inspired by the diverse work submitted to &lt;a href="http://gli.tc/h"&gt;GLI.TC/H&lt;/a&gt;. I can understand wanting to make some loose categories to help group submissions, but the language in the post sounds like he's building a framework. He asks readers to "use this space as a means to explore and delineate, to observe and report, to enumerate...". But it's hard to do that with just four independent categories (with names like "glitching" and "processing") with no unifying structure other than the context of visual arts.&lt;/p&gt;

&lt;p&gt;I think I understand where Evan is coming from, so I'd like to try again.&lt;/p&gt;

&lt;p&gt;Let's start with noise.&lt;/p&gt;

&lt;p&gt;Noise is what happens when we don't understand something. Noise can be manifest in any media: confusion about the clothing of a particular culture, inability to separate a visual foreground from background, the misunderstanding of a foreign rhythm or melody as arrhythmic or atonal. In our failure to contextualize, we create noise.&lt;/p&gt;

&lt;p&gt;Glitch means finding noise when we expect to understand. Glitch is an experience, driven by expectation, emerging from consciousness rather than computation. Just as noise would not exist without us to misunderstand it, glitch would not exist without us to misexpect it.&lt;/p&gt;

&lt;p&gt;Glitch art is about dwelling in and exploring these experiences, which sometimes means attempting to reproduce them. These reproductions may be executed in a variety of ways. Sometimes it will involve imitating the processes that regularly lead to glitches. This includes direct memory corruption at the byte level, redirection of streams, removal of key frames, analog interference, and circuit bending. Other times it eschews these processes, and opts to evoke the sensation by other means: through the "Bad TV" effect, or in the choice of palette, shapes, motion, melody, etc.&lt;/p&gt;

&lt;p&gt;Most of the time, glitch art falls somewhere in between, drawing on the processes that give rise to glitches, but ultimately focused on evoking the experience by whatever means necessary.&lt;/p&gt;

&lt;p&gt;Evan suggests that "a true glitch is not reproducible". I believe "true" glitch is unrelated to reproducibility. "True" glitch is tied solely to expectation. The reason it seems like something "stable" is no longer a glitch is simply because it's packaged as such (i.e., a "glitch") removing the possibility of expecting anything else.&lt;/p&gt;

&lt;p&gt;That said, acknowledging that glitch is an experience gives us freedom as artists to share that experience regardless of the procedural purity of our practice. Saying that we're just "imperfect" is a cop-out based on a misguided understanding of what glitch artists are aiming for.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5142010325496817655?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5142010325496817655/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5142010325496817655' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5142010325496817655'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5142010325496817655'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/08/in-response-to-glitching-vs.html' title='In Response to &quot;Glitching vs...&quot;'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8749213498263391728</id><published>2010-05-10T16:38:00.005-04:00</published><updated>2010-05-10T17:55:17.104-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='video'/><category scheme='http://www.blogger.com/atom/ns#' term='3d'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><category scheme='http://www.blogger.com/atom/ns#' term='physics'/><title type='text'>3D Scanning as Dense Microphone Array</title><content type='html'>&lt;p&gt;Sound is the displacement of matter over time.&lt;/p&gt;

&lt;p&gt;A microphone detects sound at a single point, either via direct physical coupling, or using optical methods (as with &lt;a href="http://en.wikipedia.org/wiki/Laser_microphone"&gt;Laser microphones&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;3D scanning can also detect displacement of reflective matter over time. Using a 3D scanning setup with a very large angle between the camera and projector, very minor displacement variations can be detected. Using a high framerate camera, this displacement can be measured at audio frequencies. Every pixel then corresponds to a virtual laser microphone: instead of the usual microphone at a point, a fringe analysis microphone is comprised of N points as determined by the camera resolution.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8749213498263391728?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8749213498263391728/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8749213498263391728' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8749213498263391728'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8749213498263391728'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/05/3d-scanning-as-dense-contact-microphone.html' title='3D Scanning as Dense Microphone Array'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-1760544905705263662</id><published>2010-05-08T04:38:00.003-04:00</published><updated>2010-05-08T04:59:46.339-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='video'/><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='computer vision'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Gaze-informed Perceptual Compression</title><content type='html'>&lt;p&gt;A video chat program that tracks your eye movement and sends gaze information to the other user. The other user's computer compresses the entire image heavily, with the exception of what you're looking at. To you, it just looks like the entire image is clear.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-1760544905705263662?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/1760544905705263662/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=1760544905705263662' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1760544905705263662'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1760544905705263662'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/05/gaze-informed-perceptual-compression.html' title='Gaze-informed Perceptual Compression'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4680068081103029044</id><published>2010-04-19T01:47:00.005-04:00</published><updated>2010-04-19T01:54:50.120-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Piece for HTTP</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Post a link to a website online, but remove one of the Ts from "http" so it becomes "htp".&lt;/li&gt;
&lt;li&gt;When this link is clicked, the participant will be forced by their browser to pause for a moment and reflect on the syntax of URL, adding the missing "t" by hand&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4680068081103029044?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4680068081103029044/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4680068081103029044' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4680068081103029044'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4680068081103029044'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/04/piece-for-http.html' title='Piece for HTTP'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-2457549997522878583</id><published>2010-04-06T05:06:00.002-04:00</published><updated>2010-04-06T05:09:39.068-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Empty Art for the Web</title><content type='html'>&lt;p&gt;A web-enabled computer in a gallery, allowing visitors to browse the internet. A ready-made the information age.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-2457549997522878583?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/2457549997522878583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=2457549997522878583' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2457549997522878583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2457549997522878583'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/04/empty-art-for-web.html' title='Empty Art for the Web'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7620633064923913759</id><published>2010-03-24T13:04:00.002-04:00</published><updated>2010-03-24T13:21:41.123-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='distortion'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Eigenanalysis for Lossy Compression</title><content type='html'>&lt;p&gt;Eigenanalysis is a method for reducing a set of data to the principle dimensions along which that data varies. In the context of imaging data, it has been applied very successfully to &lt;a href="http://en.wikipedia.org/wiki/Eigenfaces"&gt;Eigenfaces&lt;/a&gt;:&lt;/p&gt;

&lt;img src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Eigenfaces.png/220px-Eigenfaces.png"/&gt;

&lt;p&gt;Where a set of faces is broken down into a smaller set of face "prototypes" that can recombined in varying portions to recreate the original data set with a limited accuracy.&lt;/p&gt;

&lt;p&gt;In the context of music, I can imagine that the spectral characteristics of songs have some self-similarity: portions repeat, chords are repeated in different voices and different octaves, rhythms repeat, etc. I can imagine a lossy compression algorithm that takes the frequency domain representation of a song, does Eigenanalysis on these vectors, and stores the song simply as the collection of N eigenvectors and the reduced representation of each frequency-domain chunk.&lt;/p&gt;

&lt;p&gt;Quantization methods may be employed for further reducing bit usage due to similarity between adjacent chunks. Or different portions of the spectrum can be analyzed separately, which allows for better representation of lower frequencies and less information dedicated to higher frequencies. This unfortunately does not account for the obvious relationship between the lower and higher frequencies.&lt;/p&gt;

&lt;p&gt;A more advanced implementation may involve doing eigenanalysis on mutiple chunks simultaneously in a moving window, or at different scales, which will help with rhythmic repetition.&lt;/p&gt;

&lt;p&gt;The octave or overtone relationship is a little more complicated, and would require something like a constant-Q transforms to get a logarithmic frequency domain.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7620633064923913759?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7620633064923913759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7620633064923913759' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7620633064923913759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7620633064923913759'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/03/eigenanalysis-for-lossy-compression.html' title='Eigenanalysis for Lossy Compression'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-244134364482533319</id><published>2010-03-16T15:13:00.002-04:00</published><updated>2010-03-16T15:27:04.233-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='space'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Google Earth Live</title><content type='html'>&lt;p&gt;"Google Earth Live" is a hypothetical service offered by Google in the not-to-distant future. It is predicated upon Google releasing a matrix of satellites into orbit that regularly poll large sections of the Earth at high resolution, and offering this data for free via the Google Earth interface.&lt;/p&gt;

&lt;p&gt;When this is available, how would you use it (practically)? And what sort of art would you make with it?&lt;/p&gt;

&lt;p&gt;The obvious: make timelapse videos of yourself as you go throughout your day, from the perspective of the satellite.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-244134364482533319?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/244134364482533319/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=244134364482533319' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/244134364482533319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/244134364482533319'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/03/google-earth-live.html' title='Google Earth Live'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-215137359728764007</id><published>2010-03-13T19:58:00.004-05:00</published><updated>2010-03-13T20:06:09.684-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='psychology'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><title type='text'>Non-Metamer Monochromes</title><content type='html'>&lt;a href="http://en.wikipedia.org/wiki/File:Marevich,_Suprematist_Composition-_White_on_White_1917.jpg"&gt;&lt;img src="http://upload.wikimedia.org/wikipedia/en/thumb/a/ad/Marevich%2C_Suprematist_Composition-_White_on_White_1917.jpg/300px-Marevich%2C_Suprematist_Composition-_White_on_White_1917.jpg"/&gt;&lt;/a&gt;

&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Monochrome_painting"&gt;Monochromatic paintings&lt;/a&gt; have a tradition going back to the early 1900s, exemplified by Malevich and Rodchenko, and later by Rauschenberg.&lt;/p&gt;

&lt;p&gt;I'd like to produce a series of monochromes that uses a single non-&lt;a href="http://en.wikipedia.org/wiki/Metamerism_%28color%29"&gt;metamer&lt;/a&gt;. By non-metamer, I mean a color that has the same frequency spectrum as the color being replicated. For example, the green of a leaf, the blue of the sky, or the red of a sunset. Instead of just resembling these colors, various paints would be analyzed for their spectral response and mixed in the correct proportions so they precisely recreated these colors.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-215137359728764007?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/215137359728764007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=215137359728764007' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/215137359728764007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/215137359728764007'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/03/non-metamer-monochromes.html' title='Non-Metamer Monochromes'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-360362217033526563</id><published>2010-03-12T21:07:00.003-05:00</published><updated>2010-03-12T21:20:48.921-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='math'/><title type='text'>Alternative Prime Spirals</title><content type='html'>&lt;p&gt;The &lt;a href="http://en.wikipedia.org/wiki/Ulam_spiral"&gt;Ulam spiral&lt;/a&gt; is based on the idea of arranging integers in a rectilinear 2D spiral.&lt;/p&gt;

&lt;img src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Ulam_spiral_howto_primes_only.svg/200px-Ulam_spiral_howto_primes_only.svg.png"/&gt;

&lt;p&gt;And noticing that certain diagonal patterns fall out that aren't explainable by simple equations that describe some of the "holes".&lt;/p&gt;

&lt;img src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Ulam_1.png/250px-Ulam_1.png"/&gt;

&lt;p&gt;What other orderings might reveal interesting patterns? How about a 2D &lt;a href="http://en.wikipedia.org/wiki/Hilbert_curve"&gt;Hilbert curve&lt;/a&gt;?&lt;/p&gt;

&lt;img src="http://upload.wikimedia.org/wikipedia/commons/4/46/Hilbert_curve.gif"/&gt;

&lt;p&gt;Or maybe a 3D one? How might you continue a spiral in a cubic 3D space? Would you get diagonal planes describing the primes? How about a higher dimensional space &amp;mdash; maybe higher dimensional planes?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-360362217033526563?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/360362217033526563/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=360362217033526563' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/360362217033526563'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/360362217033526563'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/03/alternative-prime-spirals.html' title='Alternative Prime Spirals'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-165724603086020898</id><published>2010-03-12T13:43:00.005-05:00</published><updated>2010-03-12T20:21:55.476-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='distortion'/><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><title type='text'>Jesus Glitch</title><content type='html'>&lt;p&gt;The holy is often found in unexpected places. Jesus in &lt;a href="http://www.metro.co.uk/weird/808516-face-of-jesus-appears-in-naan-bread"&gt;naan&lt;/a&gt;, Mary in a &lt;a href="http://www.cbsnews.com/stories/2005/04/20/national/main689630.shtml"&gt;Chicago underpass&lt;/a&gt;. Dan Paluska has immortalized this concept with his &lt;a href="http://plainfront.com/theholytoaster/"&gt;Holy Toaster&lt;/a&gt;.&lt;/p&gt;

&lt;a href="http://plainfront.com/theholytoaster/"&gt;&lt;img src="http://farm1.static.flickr.com/250/456124655_30491edce5_m.jpg"/&gt;&lt;/a&gt;

&lt;p&gt;Why don't we ever see Jesus in corrupted image files?&lt;/p&gt;

&lt;a href="http://www.flickr.com/photos/r00s/4360443285/"&gt;&lt;img src="http://farm5.static.flickr.com/4042/4360443285_eaab3d2f1d_m.jpg"/&gt;&lt;/a&gt;

&lt;p&gt;Image compression algorithms are generally rated on their ability to convincingly ignore non-perceptually-relevant features. I propose a new metric for these algorithms: how likely they are, when corrupted, to produce an image of a holy figure.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-165724603086020898?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/165724603086020898/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=165724603086020898' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/165724603086020898'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/165724603086020898'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/03/jesus-glitch.html' title='Jesus Glitch'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm1.static.flickr.com/250/456124655_30491edce5_t.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6600307517032751405</id><published>2010-03-12T13:43:00.001-05:00</published><updated>2010-03-12T13:43:26.469-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='life'/><title type='text'>Six Pieces for Life</title><content type='html'>&lt;p&gt;Live like you only have until the next:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;day&lt;/li&gt;
&lt;li&gt;week&lt;/li&gt;
&lt;li&gt;month&lt;/li&gt;
&lt;li&gt;year&lt;/li&gt;
&lt;li&gt;decade&lt;/li&gt;
&lt;li&gt;century&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6600307517032751405?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6600307517032751405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6600307517032751405' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6600307517032751405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6600307517032751405'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/03/six-pieces-for-life.html' title='Six Pieces for Life'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3344057438177217318</id><published>2010-02-24T09:59:00.000-05:00</published><updated>2010-06-13T21:57:45.180-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='science'/><title type='text'>Lossy Vector Compression</title><content type='html'>&lt;p&gt;An evenly sampled vector outline is essentially a 2D signal. This isn't the 2D of a raster image, where you have a 2D space with a 3D (RGB) value at each point. It's a 1D space with a 2D (XY) value at each point. You can do a frequency domain decomposition on this signal, which is the foundation for most image compression algorithms. What would it look like to do the usual compression tricks? Quantization of the amplitudes, high frequency removal, etc.?&lt;/p&gt;

&lt;p&gt;The interesting thing about this transformation is that line drawings as frequency-decomposable entities already have a tradition established in &lt;a href="http://en.wikipedia.org/wiki/Harmonograph"&gt;Harmonographs&lt;/a&gt;. To recreate any drawing with a harmonograph would simply require N pendulums on each axis, each with a length proportional to the square of the frequency represented (given the &lt;a href="http://en.wikipedia.org/wiki/Pendulum_%28mathematics%29"&gt;mathematical definition of a pendulum&lt;/a&gt;). You would give all the pendulums equal mass, place them at an angle corresponding to the amplitude, and then release them at the right time. This could recreate any line drawing.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3344057438177217318?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3344057438177217318/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3344057438177217318' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3344057438177217318'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3344057438177217318'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/02/lossy-vector-compression.html' title='Lossy Vector Compression'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6881811862451092032</id><published>2010-02-21T16:57:00.002-05:00</published><updated>2010-02-21T17:03:05.092-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><category scheme='http://www.blogger.com/atom/ns#' term='interface'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><title type='text'>The Real and the Virtual</title><content type='html'>&lt;p&gt;I'd like to create an installation using a standard multitouch interface. The interface would be approximately 1 m wide and fairly high resolution. It would be mounted in a table-top configuration. A small pool of water, of similar construction and equivalent size, would be sitting directly next to the interface. The interface would be running a water simulation that resembles the real water as much as possible.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6881811862451092032?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6881811862451092032/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6881811862451092032' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6881811862451092032'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6881811862451092032'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/02/real-and-virtual.html' title='The Real and the Virtual'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-2338441674403180385</id><published>2010-02-21T01:50:00.006-05:00</published><updated>2010-02-21T02:22:09.283-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='electronics'/><category scheme='http://www.blogger.com/atom/ns#' term='computer vision'/><category scheme='http://www.blogger.com/atom/ns#' term='3d'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><title type='text'>3D Video Scanner for Cheap</title><content type='html'>&lt;p&gt;Here's a way you might try making a 3D video scanner for the cost of a webcam:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Weccam with VSYNC broken out&lt;/li&gt;
&lt;li&gt;Bright LED or LED array&lt;/li&gt;
&lt;li&gt;Ambient illumination&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Mount the LED at approximately the same location as the camera lens. Turn the LED on for alternating VSYNC pulses. The 3D decoding process is as follows: the light intensity at every point can be modeled using the equation i = r * (a + s), where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;i is the captured intensity at that pixel&lt;/li&gt;
&lt;li&gt;r is the reflectivity at that point&lt;/li&gt;
&lt;li&gt;a is the ambient illumination at that point&lt;/li&gt;
&lt;li&gt;s is the illumination due to the LED source at that point&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sampling with the LED on and off yields two equations:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;i_on = r * (a + s)&lt;/li&gt;
&lt;li&gt;i_off = r * (a + 0)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;And s corresponds to distance proportionally to an inverse square law:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;s(d) = f / d^2&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Where f is a scaling factor that relates s to a. Solving for d yields:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;i_off = r * a&lt;/li&gt;
&lt;li&gt;i_off / a = r&lt;/li&gt;
&lt;li&gt;i_on = (i_off / a) * (a + (f / d^2))&lt;/li&gt;
&lt;li&gt;((a * i_on) / i_off) - a = f / d^2&lt;/li&gt;
&lt;li&gt;a * ((i_on / i_off) - 1) = f / d^2&lt;/li&gt;
&lt;li&gt;d = sqrt(f / (a * ((i_on / i_off) - 1)))&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The values for a and f can be approximated by hand, or calibrated based on a reference plane. a must be truly uniform, but if the LED is approximately at the same location as the lens then f can be calibrated for automatically to account for its non-point-source qualities.&lt;/p&gt;

&lt;p&gt;The disadvantages here are primarily the assumption about ambient illumination, and the simplified material model. The advantages would be the cost and utter simplicity. The fact that it relies on a non-coded point source for illumination means you can work with infrared just as easily as visible light. Furthermore, it actually relies on ambient illumination while many other systems try to minimize it.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-2338441674403180385?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/2338441674403180385/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=2338441674403180385' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2338441674403180385'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2338441674403180385'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/02/3d-video-scanner-for-cheap.html' title='3D Video Scanner for Cheap'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4561351274790318407</id><published>2010-02-16T19:25:00.000-05:00</published><updated>2010-06-13T21:57:45.201-04:00</updated><title type='text'>Google Insights</title><content type='html'>&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=internet+explorer%7Cfirefox%7Cchrome&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=afghanistan%7Ciraq%7Ciran%7Ckorea&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=12-m&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=three%7Cfour%7Cfive%7Csix%7Cseven&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=swine%7Cflu&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=yours%7Cmine%7C&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=kazaa%7Ctorrent&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=grandma%7Cgrandpa&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=photo%7Cmusic%7Cvideo&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=%7Csee%7Ctouch%7C%7C&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=legs%7Carms%7Cfeet%7Ceyes%7Chands&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=summer%7Cwinter%7C&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=hot+cocoa%7Cice+tea&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=coat%7Cbikini&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=skiing%7Cswimming&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=san+francisco%7Cnyc&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=north%7Csouth%7Cwest%7Ceast&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=breakfast%7Clunch%7Cdinner&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;

&lt;script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;amp;up__property=empty&amp;amp;up__search_terms=facebook%7Cporn&amp;amp;up__location=empty&amp;amp;up__category=0&amp;amp;up__time_range=empty&amp;amp;up__compare_to_category=false&amp;amp;synd=ig&amp;amp;w=320&amp;amp;h=350&amp;amp;lang=en-US&amp;amp;title=Google+Insights+for+Search&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4561351274790318407?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4561351274790318407/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4561351274790318407' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4561351274790318407'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4561351274790318407'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/02/google-insights.html' title='Google Insights'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-1209287325145194390</id><published>2010-02-11T17:25:00.004-05:00</published><updated>2010-02-11T17:44:16.844-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='3d'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Projection Mapping with a 3D Projector</title><content type='html'>&lt;p&gt;Projection mapping is the art of working with non planar projection surfaces.&lt;/p&gt;

&lt;object width="400" height="300"&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5374101&amp;amp;server=vimeo.com&amp;amp;show_title=0&amp;amp;show_byline=0&amp;amp;show_portrait=0&amp;amp;color=ffffff&amp;amp;fullscreen=1" /&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=5374101&amp;amp;server=vimeo.com&amp;amp;show_title=0&amp;amp;show_byline=0&amp;amp;show_portrait=0&amp;amp;color=ffffff&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;p&gt;&lt;a href="http://vimeo.com/5374101"&gt;APPARATI EFFIMERI Tetragram for Enlargment&lt;/a&gt; from &lt;a href="http://vimeo.com/user1284538"&gt;Apparati Effimeri&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I'd like to explore this idea with a 3D projector. Normally, 3D projection happens on a plane, which allows for a rectilinear 3D space. If you project onto anything but a plane, the 3D space will be distorted. But if you account for these distortions in advance (for example, with a 3D scan of the scene to be projected on) then you can augment the scene with an overlaid 3D form.&lt;/p&gt;

&lt;p&gt;While installations like the video above rely on the observer's large focal distance and visual tricks (like drop shadows) for implying a depth offset, with a 3D projector and shutter glasses you can create genuine depth offsets.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-1209287325145194390?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/1209287325145194390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=1209287325145194390' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1209287325145194390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1209287325145194390'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/02/projection-mapping-with-3d-projector.html' title='Projection Mapping with a 3D Projector'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5084976303732405504</id><published>2010-01-28T23:49:00.002-05:00</published><updated>2010-01-28T23:55:24.953-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='distortion'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><title type='text'>Precision CD Glitching</title><content type='html'>&lt;p&gt;"Wounded" CDs have been prepared by artists like &lt;a href="http://en.wikipedia.org/wiki/Yasunao_Tone"&gt;Yasunao Tone&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Oval_%28band%29"&gt;Oval&lt;/a&gt;, encompassing the experimental and pop domains of music, respectively. In both cases, the music has to be re-recorded from the glitched CD to be heard (and in Oval's case, it is subject to further production). Why not use a laser cutter to make precision glitched CDs, allowing them to be distributed directly?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5084976303732405504?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5084976303732405504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5084976303732405504' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5084976303732405504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5084976303732405504'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/01/precision-cd-glitching.html' title='Precision CD Glitching'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-1099051509983233408</id><published>2010-01-21T01:27:00.004-05:00</published><updated>2010-01-21T03:15:03.754-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><title type='text'>Chocolate WTC</title><content type='html'>&lt;a href="http://radicalart.info/destruction/ArtificialDisasters/WTC/index.html"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 250px; height: 307px;" src="http://1.bp.blogspot.com/_cW3PDUfh7bo/S1f0fgdx4dI/AAAAAAAAAB4/JtwWAjMGbFU/s320/CBoymSept11thMemSet-S.jpg" border="0" alt="September 11th, 2001 memorial" id="BLOGGER_PHOTO_ID_5429076697946382802"/&gt;&lt;/a&gt;

&lt;p&gt;This sculpture is a September 11th, 2001 memorial, designed by C. Boym. As best I can tell, it was cast in nickel. The color and texture gives me a wonderful, terrible idea: why not use chocolate? You know, the same way we have chocolate bunnies? The target market could be Al-Qaeda. Or, perhaps it would be cathartic for those who are still recovering to take a bite out of the past.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-1099051509983233408?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/1099051509983233408/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=1099051509983233408' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1099051509983233408'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1099051509983233408'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/01/chocolate-wtc.html' title='Chocolate WTC'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_cW3PDUfh7bo/S1f0fgdx4dI/AAAAAAAAAB4/JtwWAjMGbFU/s72-c/CBoymSept11thMemSet-S.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7651318398003217601</id><published>2010-01-20T16:50:00.000-05:00</published><updated>2010-06-13T21:57:45.227-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='existentialism'/><category scheme='http://www.blogger.com/atom/ns#' term='truth'/><category scheme='http://www.blogger.com/atom/ns#' term='christianity'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='buddhism'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><category scheme='http://www.blogger.com/atom/ns#' term='science'/><category scheme='http://www.blogger.com/atom/ns#' term='cognitive science'/><category scheme='http://www.blogger.com/atom/ns#' term='politics'/><title type='text'>Connected Everything</title><content type='html'>&lt;p&gt;Here are some things I'm going to be covering in my thesis.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;All possible enumerations: "Wishing Well" by Eijssen and Klopman, "Borges" by Jochem van der Spek, &lt;a href="http://www.numeral.com/eicon.html"&gt;Every Icon&lt;/a&gt;, &lt;a href="http://runme.org/project/+godseye/"&gt;God's Eye&lt;/a&gt;, &lt;a href="http://www.determinate.net/webdata/seg/imagen.php?redir_imagen"&gt;Imagen&lt;/a&gt;, &lt;a href="http://solaas.com.ar/outsource/node/27.html"&gt;Magic Mirror&lt;/a&gt;, &lt;a href="http://jimcampbell.tv/DU/DUTheEnd/index.html"&gt;The End&lt;/a&gt;, &lt;a href="http://m.ash.to/8-bit/"&gt;8-bit&lt;/a&gt;, &lt;a href="http://little-scale.blogspot.com/2009/03/all-4-bit-waveforms-that-have-32.html"&gt;4-bit waveforms&lt;/a&gt; (also in &lt;a href="http://little-scale.blogspot.com/2009/07/hardware-based-waveform-permutations.html"&gt;hardware&lt;/a&gt;). The legal-political implications of these projects. Stéphane Mallarmé's "[dream] of a universal work, capable of encompassing all the others". Ablinger's conception of &lt;a href="http://ablinger.mur.at/noise.html"&gt;"all notes" as "white noise"&lt;/a&gt;. Borges' &lt;a href="http://www.phinnweb.org/links/literature/borges/aleph.html"&gt;Aleph&lt;/a&gt;. &lt;a href="http://www.openprocessing.org/visuals/?visualID=1138"&gt;pppd&lt;/a&gt; and &lt;a href="http://www.instructables.com/id/Nandhopper_1_Bit_Noise_Synth/step4/Prototype-Make-the-Circuit/"&gt;RC/NAND combinations&lt;/a&gt; toward the idea of a "&lt;a href="http://en.wikipedia.org/wiki/Functional_completeness"&gt;functionally complete&lt;/a&gt;" synth.&lt;/li&gt;

&lt;li&gt;Possible permutations: &lt;a href="http://allrgb.com/"&gt;allRGB&lt;/a&gt;. If you're enumeration everything, how do you arrange it in an interesting way? Anti-&lt;a href="http://en.wikipedia.org/wiki/Gray_code"&gt;gray codes&lt;/a&gt;?&lt;/li&gt;

&lt;li&gt;Very long pieces: &lt;a href="http://www.noiseaddicts.com/2008/09/algorithmic-house-music-number-pi-paul-slocum/"&gt;Pi house music&lt;/a&gt; (indefinitely long), &lt;a href="http://stewdio.org/work/infinitec/"&gt;Infinite C&lt;/a&gt; (indefinitely long), &lt;a href="http://www.mathieucopeland.net/SoundtrackforanExhibitionMediaRelease.pdf"&gt;Soundtrack For An Exhibition&lt;/a&gt; (96 days), &lt;a href="http://home.att.net/%7Eamcnet2/album/shapes/intro.html"&gt;The Shapes Project&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/As_slow_as_possible"&gt;As Slow as Possible&lt;/a&gt; (639 years), &lt;a href="http://longplayer.org/"&gt;Longplayer&lt;/a&gt; (1000 years)&lt;/li&gt;

&lt;li&gt;What is music? Of all the sounds that can be made, which are musical? Is there a connection between meaningful sounds and musical sounds? Considering noise as a &lt;a href="http://passionandparadox.blogspot.com/2009/08/negativity-of-noise.html"&gt;human-centered phenomenon&lt;/a&gt;, or &lt;a href="http://passionandparadox.blogspot.com/2009/11/defining-music-again.html"&gt;otherwise&lt;/a&gt;.&lt;/li&gt;

&lt;li&gt;McLuhan's symbiotic &lt;a href="http://en.wikipedia.org/wiki/The_medium_is_the_message"&gt;medium/message relationship&lt;/a&gt;: &lt;a href="http://www.beigerecords.com/cory/Things_I_Made/PhotoshopDemonstrations"&gt;Photoshop Gradient and Smudge Tool Demonstrations&lt;/a&gt;. Glitch art as a method for uncovering a medium: &lt;a href="http://www.evanmeaney.com/ceibas/"&gt;Ceibas&lt;/a&gt;, &lt;a href="http://www.runme.org/project/+mpf/"&gt;MPF&lt;/a&gt;, CD-glitching from &lt;a href="http://en.wikipedia.org/wiki/Oval_%28band%29"&gt;Oval&lt;/a&gt; and &lt;a href="http://www.medienkunstnetz.de/works/wounded-many-o-2-2000/images/1/"&gt;Yasunao Tone&lt;/a&gt;. &lt;a href="http://mitpress.mit.edu/journals/COMJ/CMJ24_4Cascone.pdf"&gt;The aesthetics of failure.&lt;/a&gt; "Looking at what's broken" is a technique regularly used in cognitive neuroscience, outlined by V.S. Ramachandran in "Phantoms in the Brain". &lt;a href="http://www.bagatellen.com/archives/interviews/000974.html"&gt;Eigenradio&lt;/a&gt;. The role of transcription: ethnomusicology as a case study.&lt;/li&gt;

&lt;li&gt;The history of MP3, the language and the logistics behind glitching compressed formats. Remixing 4'33" for a new media (&lt;a href="http://www.flickr.com/photos/kylemcdonald/3502679224/"&gt;Only Everything Lasts Forever&lt;/a&gt;).&lt;/li&gt;

&lt;li&gt;&lt;a href="http://plato.stanford.edu/entries/truth-correspondence/"&gt;Correspondence&lt;/a&gt; theory of truth versus &lt;a href="http://plato.stanford.edu/entries/truth-coherence/"&gt;coherence&lt;/a&gt; theory of truth, the connection between truth and meaning, meaning and music. &lt;a href="http://www.flickr.com/photos/tags/mookdfjlal/"&gt;MOOKDFJLAL&lt;/a&gt; and &lt;a href="http://www.flickr.com/photos/tags/241543903"&gt;241543903&lt;/a&gt;. &lt;a href="http://en.wikipedia.org/wiki/Side_channel_attack"&gt;Side channel attacks&lt;/a&gt; (especially TEMPEST), &lt;a href="http://www.youtube.com/watch?v=9wI-9RJi0Qo"&gt;persistence hunting&lt;/a&gt;, and &lt;a href="http://www.searchlores.org/realicra/realicra.htm"&gt;reality cracking&lt;/a&gt;. Buddhist "&lt;a href="http://en.wikipedia.org/wiki/Prat%C4%ABtyasamutp%C4%81da"&gt;interdependent arising&lt;/a&gt;" as a "coherentist metaphysics". &lt;a href="http://www.rpi.edu/~mcdonk/AutoLoop/"&gt;Autoloop&lt;/a&gt; as purely sonic coherentism. Jean-Jacques Nattiez' "&lt;a href="http://books.google.com/books?id=RmAji7JQnAUC&amp;printsec=frontcover&amp;dq=inauthor:Jean+inauthor:Jacques+inauthor:Nattiez&amp;ei=2xRYS4e5Bo_OlQTA8NyxBA&amp;cd=1#v=onepage&amp;q=&amp;f=false"&gt;symbolic web&lt;/a&gt;".&lt;/li&gt;

&lt;li&gt;The role of illusion in meaning, finding patterns in noise, and the "edge of chaos": Kanizsa triangle, &lt;a href="http://www.michaelbach.de/ot/cog_dalmatian/index.html"&gt;dalmatian&lt;/a&gt; and &lt;a href="http://www.catscanman.net/blog/2006/08/optical-illusion/"&gt;cow&lt;/a&gt; illusions, &lt;a href="http://www.boston.com/news/local/massachusetts/gallery/100108_virgin_mary/"&gt;Christian iconography&lt;/a&gt;, &lt;a href="http://plainfront.com/theholytoaster/"&gt;The Holy Toaster&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Face_on_mars#.22Face_on_Mars.22_and_.22pyramids.22"&gt;the face on Mars&lt;/a&gt;, &lt;a href="http://people.ucalgary.ca/~einbrain/new/text/ghosts_in_the_machine.html"&gt;Einstein's Brain&lt;/a&gt;, the golden ratio as a guiding principle for &lt;a href="http://books.google.com/books?id=Vk_CQULdAssC&amp;pg=PA306&amp;dq=%22contained+the+ground-principle+of+all+formative+striving%22&amp;lr=&amp;as_drrb_is=q&amp;as_minm_is=0&amp;as_miny_is=&amp;as_maxm_is=0&amp;as_maxy_is=&amp;as_brr=0&amp;ei=waoxSsP7K4TkyATghMWZBg#v=onepage&amp;q=%22contained%20the%20ground-principle%20of%20all%20formative%20striving%22&amp;f=false"&gt;beauty in nature and art&lt;/a&gt;, prime numbers and the &lt;a href="http://mathworld.wolfram.com/PrimeSpiral.html"&gt;Ulam spiral&lt;/a&gt; and &lt;a href="http://www.naturalnumbers.org/sparticle.html"&gt;Sacks spiral&lt;/a&gt;, equidistant letter sequences and &lt;a href="http://projecteuclid.org/DPubS/Repository/1.0/Disseminate?view=body&amp;id=pdf_1&amp;handle=euclid.ss/1177010393"&gt;The Bible Code&lt;/a&gt;, &lt;a href="http://mrfeinberg.com/haikufinder"&gt;Haiku Finder&lt;/a&gt;, SETI@home and the &lt;a href="http://passionandparadox.blogspot.com/2009/07/signals-and-setihome.html"&gt;definition of a signal&lt;/a&gt;, astronomical &lt;a href="http://passionandparadox.blogspot.com/2009/08/stars-and-bubbles.html"&gt;patterns and constellations&lt;/a&gt;, geographic &lt;a href="http://passionandparadox.blogspot.com/2009/06/gods-geography.html"&gt;patterns&lt;/a&gt;, the &lt;a href="http://en.wikipedia.org/wiki/Voynich_manuscript#Hoax"&gt;Voynich manuscript as a hoax&lt;/a&gt;. Working with Mark Changizi on evolutionary psychology. &lt;a href="http://dynamica.org/HTM/DY_flash_nonoise.htm"&gt;No Noise&lt;/a&gt;.&lt;/li&gt;

&lt;li&gt;Emptiness, and art everywhere: Cage's 4'33", Duchamp's "Fountain", Rauschenberg's "White Paintings" and the monochromatic tradition, including &lt;a href="http://www.moma.org/collection/browse_results.php?object_id=80385"&gt;Malevich&lt;/a&gt; and &lt;a href="http://www.moma.org/interactives/exhibitions/1998/rodchenko/texts/death_of_painting.html"&gt;Rodchenko&lt;/a&gt;. Nietzsche's "will to power" and Sartre's "existence precedes essence" as models of self-created coherentist meaning.&lt;/li&gt;

&lt;li&gt;Noise and copyright: &lt;a href="http://en.wikipedia.org/wiki/Illegal_number"&gt;illegal numbers&lt;/a&gt;, &lt;a href="http://www.everything2.net/index.pl?node_id=1302963"&gt;pi in binary&lt;/a&gt;.&lt;/li&gt;

&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7651318398003217601?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7651318398003217601/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7651318398003217601' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7651318398003217601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7651318398003217601'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/01/connected-everything.html' title='Connected Everything'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5519172213190863674</id><published>2010-01-19T01:49:00.002-05:00</published><updated>2010-01-19T01:57:42.420-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><category scheme='http://www.blogger.com/atom/ns#' term='poetry'/><title type='text'>I Am Sitting in a Google Ad</title><content type='html'>&lt;p&gt;Set up simple web page with only the text of Alvin Lucier's &lt;a href="http://en.wikipedia.org/wiki/I_Am_Sitting_in_a_Room"&gt;famous composition&lt;/a&gt;, and Google text ads.&lt;/p&gt;

&lt;p&gt;Visit the page, and take note of the Google text ads. Create a copy of the page, replacing Lucier's text with the text from the ads. Repeat this process indefinitely, or until Google starts repeating itself.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5519172213190863674?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5519172213190863674/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5519172213190863674' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5519172213190863674'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5519172213190863674'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/01/i-am-sitting-in-google-ad.html' title='I Am Sitting in a Google Ad'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4264334523446555260</id><published>2010-01-19T00:58:00.003-05:00</published><updated>2010-01-19T01:57:58.824-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='economics'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><title type='text'>The Bucket Piece</title><content type='html'>&lt;p&gt;At a popular contemporary art gallery in a large city, in a small white room, place a nondescript bucket on a centered pedestal with a single light above it. A guard is stationed outside, allowing only one person in at a time. Next to the bucket is a plaque reading:&lt;/p&gt;

&lt;blockquote&gt;At the end of the day, any money collected in this bucket will be given to the artist. You are free to add or remove money as you wish.&lt;/blockquote&gt;

&lt;p&gt;This is the most elegant manifestation of the piece, but a better manifestation will get others involved. For example, donating the money to a charity instead of the artist. Or multiple buckets going to different causes. Or some kind of system measuring the contributions in real time and reporting how many children have been saved from starvation for another day.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4264334523446555260?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4264334523446555260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4264334523446555260' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4264334523446555260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4264334523446555260'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/01/bucket-piece.html' title='The Bucket Piece'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5611533990082078371</id><published>2010-01-17T21:39:00.000-05:00</published><updated>2010-06-13T21:57:45.256-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><category scheme='http://www.blogger.com/atom/ns#' term='beauty'/><category scheme='http://www.blogger.com/atom/ns#' term='existentialism'/><title type='text'>Big Wave Surfing</title><content type='html'>&lt;p&gt;Why is big wave surfing so engaging?&lt;/p&gt;

&lt;p&gt;There's something about huge waves that inspires fear. From the shore it's possible to write them off as passively destructive. But from the water, they can look positively evil. The wave itself can't even be identified &amp;mdash; it's no specific body of water, but a general force. A collective action of the entire ocean. An unseen force manifest in a mountain of water.&lt;/p&gt;

&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/IsHzU0ynRZk&amp;hl=en_US&amp;fs=1&amp;rel=0"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/IsHzU0ynRZk&amp;hl=en_US&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;

&lt;p&gt;The big wave surfer confronts this: an unidentifiable, shape-shifting, destructive force backed by the entire ocean. They collaborate, redirecting all of that destructive energy into a single creative action. They name the unnameable.&lt;/p&gt;

&lt;p&gt;From the shore, the ocean has no scale. There is nothing to be compared. But when you see a surfer on a wave, you know exactly big it is. Big wave surfing is the humanization of infinity.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5611533990082078371?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5611533990082078371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5611533990082078371' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5611533990082078371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5611533990082078371'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/01/big-wave-surfing.html' title='Big Wave Surfing'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-123088701900167307</id><published>2010-01-08T15:06:00.004-05:00</published><updated>2010-01-24T03:11:43.639-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='computer vision'/><category scheme='http://www.blogger.com/atom/ns#' term='3d'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Flash Mob 3D Scanning</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Pick a local monument.&lt;/li&gt;
&lt;li&gt;Organize a flash mob via Craigslist.&lt;/li&gt;
&lt;li&gt;Instruct everyone to take photos of the monument.&lt;/li&gt;
&lt;li&gt;Everyone then uploads and tags their photos.&lt;/li&gt;
&lt;li&gt;These photos are then uploaded to Photosynth for 3D reconstruction.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;As a variant, people can just record video and walk around. This relies on the videos being high resolution.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-123088701900167307?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/123088701900167307/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=123088701900167307' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/123088701900167307'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/123088701900167307'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2010/01/flash-mob-3d-scanning.html' title='Flash Mob 3D Scanning'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8194637760893618437</id><published>2009-12-05T12:30:00.002-05:00</published><updated>2009-12-05T12:36:59.476-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='computer vision'/><category scheme='http://www.blogger.com/atom/ns#' term='space'/><title type='text'>3D capture in performance</title><content type='html'>&lt;p&gt;Capturing 3D data from moving scenes is a hard problem in itself, but the harder problem is how to integrate it with a performance in real time. First you have to hide the 3D capture process from the audience, and then you need to present something related to the 3D capture in an engaging way.&lt;/p&gt;

&lt;p&gt;Re-projecting coarse effects can be approximated with a multi-camera system, and fine details are dangerous due to system latency.&lt;/p&gt;

&lt;p&gt;The real question is: what can you do with 3D data that you can't do with 2D images? The most interesting idea I have: you can cast shadows on a 3D form in a way you can't on a 2D form.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8194637760893618437?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8194637760893618437/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8194637760893618437' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8194637760893618437'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8194637760893618437'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/12/3d-capture-in-performance.html' title='3D capture in performance'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8760384663959705993</id><published>2009-12-05T11:03:00.004-05:00</published><updated>2009-12-05T12:10:46.942-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='computer vision'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Removing Image Noise</title><content type='html'>&lt;p&gt;Gray-level images for foreground/background are often afflicted by fine noise when they are thresholded.&lt;/p&gt;

&lt;a href="http://www.flickr.com/photos/kylemcdonald/4160662232/"&gt;&lt;img src="http://farm3.static.flickr.com/2675/4160662232_aa61e79e51_m.jpg"&gt;&lt;/a&gt;

&lt;p&gt;I've used a few different approaches to dealing with this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;blurring before thresholding&lt;/li&gt;
&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Median_filter"&gt;median filtering&lt;/a&gt; before thresholding&lt;/li&gt;
&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Morphological_image_processing"&gt;morphological filtering&lt;/a&gt; after thresholding&lt;/li&gt;
&lt;li&gt;&lt;a href="http://homepages.inf.ed.ac.uk/rbf/HIPR2/distance.htm"&gt;distance transform&lt;/a&gt; after thresholding, followed by thresholding again as a more continuous morphological filtering algorithm&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Unfortunately, these all have the same problem: inner corners are rounded. These algorithms can't tell the difference between a black pixel in an inner corner and a black pixel that is just noise.&lt;/p&gt;

&lt;p&gt;Perhaps what we should really be using is something like &lt;a href="http://homepages.inf.ed.ac.uk/rbf/CVonline/LOCAL_COPIES/MANDUCHI1/Bilateral_Filtering.html"&gt;bilateral filtering&lt;/a&gt; (in Photoshop, "Surface Blur"). Bilateral filtering preserves sharp edges, while blurring large undefined regions. Unfortunately, bilateral filtering creates a sort of "glow" that still has issues with corners.&lt;/p&gt;

&lt;p&gt;Maybe we need something more like "smart blur"? It seems to not propagate across edges...&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8760384663959705993?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8760384663959705993/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8760384663959705993' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8760384663959705993'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8760384663959705993'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/12/removing-image-noise.html' title='Removing Image Noise'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm3.static.flickr.com/2675/4160662232_aa61e79e51_t.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6225871903085422580</id><published>2009-11-27T01:41:00.000-05:00</published><updated>2010-06-13T21:57:45.278-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><title type='text'>Defining Music, Again</title><content type='html'>&lt;p&gt;I keep coming back to this issue (previously: &lt;a href="http://passionandparadox.blogspot.com/2008/11/defining-music.html"&gt;Defining Music&lt;/a&gt;). Which is fitting, considering it's a large part of my thesis. I explained the basic idea to a friend recently in a way that seemed clear, so I'd like to preserve that clarity in text.&lt;/p&gt;

&lt;p&gt;Before Ethnomusicology, western culture believed music to be universal amongst civilized peoples. Ethnomusicology helped people see that music was more local and less global. Around the same time, Cage encouraged people to hear things for themselves as music: saying that it is extremely local, to the point of being defined by an individual.&lt;/p&gt;

&lt;p&gt;I would like to propose a reversal to Cage's position (or, at least, his language). I believe music is built out of correspondences between sounds and other things. Over time, these "other things" have been comprised of innate human impulses, society-specific tradition, and individual preference, in that order. I would like to add "everything else" to that category of "other things". This means that music exists without humans, as sounds always have context. Individuals do not decide what is music (this is the reversal), we can only decide what is noise. We do this by identifying acontextual sounds &amp;mdash; and the context we use for understanding sounds is continually changing. Wind chimes ringing during a cool autumn walk have a different context to us than they do when we're trying to study next to them, or trying to hear past them.&lt;/p&gt;

&lt;p&gt;As context-creators, of the general category of conscious non-omniscient beings, we define music only insomuch as we misunderstand some of it as noise.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6225871903085422580?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6225871903085422580/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6225871903085422580' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6225871903085422580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6225871903085422580'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/11/defining-music-again.html' title='Defining Music, Again'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6103544610215166705</id><published>2009-11-27T01:36:00.003-05:00</published><updated>2009-11-27T01:38:53.700-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='interface'/><title type='text'>Face the Beat</title><content type='html'>&lt;p&gt;&lt;a href="http://www.vimeo.com/1781052"&gt;I See Beats&lt;/a&gt;, but with face tracking. This would solve dark room restriction, but create a host of other issues.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6103544610215166705?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6103544610215166705/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6103544610215166705' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6103544610215166705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6103544610215166705'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/11/face-beat.html' title='Face the Beat'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7237561011123188736</id><published>2009-09-23T11:31:00.000-04:00</published><updated>2010-06-13T21:57:45.300-04:00</updated><title type='text'>Recognizing Glitches</title><content type='html'>&lt;p&gt;Working with three-phase scanning a bit recently, I've become very familiar with the kind of glitches that emerge. Watching Radiohead's &lt;a href="http://www.youtube.com/watch?v=8nTFjVm9sTQ"&gt;"House of Cards" video&lt;/a&gt; again, I understand the glitches better now than when I first saw it:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;At :58-:59, Thom Yorke's neck separates from his head intermittently. This is due to the ambiguity of propagating a wrapped phase across shadows and depth discontinuities (from his jaw) which generally lend to a few possible interpretations of the data.&lt;/li&gt;
&lt;li&gt;At 1:29-1:31, someone waves their arms about a bit. If you look at the edges of their arms, you can see "barbs" coming out, something like 3d-interlacing. This is due to the nature of phase-shift scanning as a sequential structured light system rather than a continuous/fixed system. I'm a little amazed that these artifacts exist, as they were probably using a very high framerate camera.&lt;/li&gt;
&lt;li&gt;Throughout the video, entire scenes will jump forward and backward. This is due to the unwrapping algorithm again, and that it has to assume an absolute distance at a specific fixed point. If you get noise at that point, the entire image is shifted. I'm actually surprised this was a bug in the system they used.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7237561011123188736?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7237561011123188736/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7237561011123188736' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7237561011123188736'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7237561011123188736'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/09/recognizing-glitches.html' title='Recognizing Glitches'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7131979836785687307</id><published>2009-09-03T07:11:00.003-04:00</published><updated>2009-09-03T07:23:32.739-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><category scheme='http://www.blogger.com/atom/ns#' term='space'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Full Inbox</title><content type='html'>As of this moment, Gmail offers 7365 MB of storage. To me, 7365 MB looks like an open desert, or a desolate sea. I want to fill that up, or at least craft it. What would email &lt;a href="http://en.wikipedia.org/wiki/Land_art"&gt;land art&lt;/a&gt; look like? What is the architecture of an empty inbox? And how can it be shaped toward an aesthetic or conceptual goal?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7131979836785687307?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7131979836785687307/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7131979836785687307' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7131979836785687307'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7131979836785687307'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/09/full-inbox.html' title='Full Inbox'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3179894618962617369</id><published>2009-08-20T11:36:00.003-04:00</published><updated>2009-08-20T11:43:38.236-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Email To Real Mail Converter</title><content type='html'>&lt;p&gt;I like this idea for an iPhone app, "&lt;a href="http://www.shootit.com/"&gt;Shoot It&lt;/a&gt;". You take a picture on your iPhone, and they print it out and send it as a postcard for you.&lt;/p&gt;

&lt;p&gt;My favorite part is that this is an "algorithm" that involves both automated and non-automated actions. There are real people involved in pushing a postcard around. I'd like to start a service that send letters for you. You would send an email to a specific address, include a mailing address, and we would print out and mail the letter for you.&lt;/p&gt;

&lt;p&gt;This service actually exists in reverse for older folks that don't want to deal with the internet. They can have a service print out emails for them, and send out their handwritten letters as emails.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3179894618962617369?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3179894618962617369/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3179894618962617369' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3179894618962617369'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3179894618962617369'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/08/email-to-real-mail-converter.html' title='Email To Real Mail Converter'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6269128983576470001</id><published>2009-08-19T10:28:00.003-04:00</published><updated>2009-08-19T14:53:43.479-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><title type='text'>Every Every Icon</title><content type='html'>&lt;p&gt;John F. Simon Jr.'s "&lt;a href="http://numeral.com/appletsoftware/eicon.html"&gt;Every Icon&lt;/a&gt;" iterates through all the 32x32 black and white icons at approximately 100 icons per second. Sintron's "&lt;a href="http://runme.org/project/+godseye/"&gt;God's Eye&lt;/a&gt;" iterates through all the 800x600 color images at 97,000 images per second. Jim Campbell's "&lt;a href="http://jimcampbell.tv/DU/DUTheEnd/text.html"&gt;The End&lt;/a&gt;" iterates through grayscale images using custom electronics. Leonardo Solaas' "&lt;a href="http://solaas.com.ar/outsource/node/27.html"&gt;Magic Mirror&lt;/a&gt;" iterates through every 720x576 color image at 25 images per second.&lt;/p&gt;

&lt;p&gt;I propose a meta-Every Icon, "Every Every Icon". This work will include all of the above works, as well as any other variations that may be dreamed up in the future. It will accomplish this by iterating through every possible resolution, at every possible framerate, for every possible bit depth, in every possible order.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6269128983576470001?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6269128983576470001/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6269128983576470001' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6269128983576470001'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6269128983576470001'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/08/every-every-icon.html' title='Every Every Icon'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-604398168635672391</id><published>2009-08-18T17:49:00.000-04:00</published><updated>2010-06-13T21:57:45.318-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><title type='text'>The Negativity of Noise</title><content type='html'>&lt;p&gt;In "Noise", Jacques Attali proposes that noise is a simulacrum of murder.&lt;/p&gt;

&lt;blockquote&gt;We must establish two things: First, that &lt;em&gt;noise is violence&lt;/em&gt;: it disturbs. To make noise is to interrupt a transmission, to disconnect, to kill. It is a simulacrum of murder. Second, that &lt;em&gt;music is a channelization of noise&lt;/em&gt;, and therefore a simulacrum of the sacrifice. (p 26)&lt;/blockquote&gt;

&lt;p&gt;He goes on to provide a technical description for the uninitiated:&lt;/p&gt;

&lt;blockquote&gt;A noise is a resonance that interferes with the audition of a message in the process of emission. A resonance is a set of simultaneous, pure sounds of determined frequency and differing intensity. Noise, then, does not exist in itself, but only in relation to the system within which it is inscribed: emitter, transmitter, receiver. Information theory uses the concept of noise (or rather, metonymy) in a more general way: noise is the term for a signal that interferes with the reception of a message by a receiver, even if the interfering signal itself has a meaning for that receiver. Long before it was given this theoretical expression, noise had always been experienced as destruction, disorder, dirt, pollution, an aggression against the code-structuring messages. In all cultures, it is associated with the idea of the weapon, blasphemy, plague. (p 26-27)&lt;/blockquote&gt;

&lt;p&gt;I can't deny that there are technical definitions of noise that restrict it to the "undesired portion" of a signal. And I completely understand that a variety of cultures see noises as violent. And that we have an intuitive reaction to them as violent.&lt;/p&gt;

&lt;p&gt;But saying that noise "does not exist in itself", and advancing the technical definitions or intuitive folk-definitions as the final word on noise seems narrow minded to me. What about noise in an epistemological context, as a human creation: without humans, there is not only no music, but no noise. It's not that noise requires music in order to be differentiated, but it requires humans to do the differentiation. This act of sound-interpretation and categorization is equally important as our technical and folk definitions.&lt;/p&gt;

&lt;p&gt;Furthermore, I reject language like this:&lt;/p&gt;

&lt;blockquote&gt;In its biological reality, noise is a source of pain. Beyond a certain limit, it becomes an immaterial weapon of death. The ear, which transforms sound signals into electric impulses addressed to the brain, can be damaged, and even destroyed, when the frequency of a sound exceeds 20,000 hertz, or when its intensity exceeds 80 decibels. Diminished intellectual capacity, accelerated respiration and heartbeat, hypertension, slowed digestion, neurosis, altered diction: these are the consequences of excessive sound in the environment.&lt;/blockquote&gt;

&lt;p&gt;I reject it because it's conflating two very different phenomena: noise, and damaging sound. Saying that noise is a source of pain, and then giving examples of loud sounds and high pitched sounds is just giving noise a bad name by association. If I play a Bach chorale at 80 decibels, it's going to do just as much damage as "noise".&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-604398168635672391?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/604398168635672391/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=604398168635672391' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/604398168635672391'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/604398168635672391'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/08/negativity-of-noise.html' title='The Negativity of Noise'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7177486592232033055</id><published>2009-08-18T14:36:00.000-04:00</published><updated>2010-06-13T21:57:45.343-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><title type='text'>Ignoring Africa</title><content type='html'>I'm always a little surprised when I read things like this:

&lt;blockquote&gt;All music can be defined as noise given form according to a code (in other words, according to rules of arrangement and laws of succession, in a limited space, a space of sounds) that is theoretically knowable by the listener. Listening to music is to receive a message. Nevertheless, music cannot be equated with a language. Quite unlike the words of a language &amp;mdash; which refer to a signified &amp;mdash; music, though it has a precise operationality, never has a stable reference to a code of the linguistic type. Itis not "a myth coded in sounds instead of words," but rather a "language without meaning." It has neither meaning nor finality. (&lt;em&gt;Noise&lt;/em&gt; by Jacques Attali, p 25)&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7177486592232033055?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7177486592232033055/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7177486592232033055' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7177486592232033055'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7177486592232033055'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/08/ignoring-africa.html' title='Ignoring Africa'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-324950295776595597</id><published>2009-08-17T15:34:00.000-04:00</published><updated>2010-06-13T21:57:45.361-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='dance'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><category scheme='http://www.blogger.com/atom/ns#' term='metaphor'/><category scheme='http://www.blogger.com/atom/ns#' term='communication'/><title type='text'>Pranks and Pragmatism</title><content type='html'>&lt;p&gt;Some excerpts from "&lt;a href="http://www.amazon.com/African-Rhythm-Sensibility-Aesthetics-Musical/dp/0226103455"&gt;African Rhythm and African Sensibility&lt;/a&gt;" by John Miller Chernoff.&lt;/p&gt;

&lt;p&gt;African drumming is renowned for the ability to express the tonal structure of their spoken languages, to the point where rhythms are imbued with complex semantics. A great illustration:&lt;/p&gt;

&lt;blockquote&gt;During my first day practicing with Gideon, I was following him well until he suddenly performed a rather complicated series of rhythms and then went back to the basic rhythm he was showing me. A few minutes later a man who passed at that moment returned with two bottles of beer. (p 75)&lt;/blockquote&gt;

&lt;p&gt;There is a short passage discussing the difference between "false meaning" and "intended meaning", due to a prank:&lt;/p&gt;

&lt;blockquote&gt;Ibrahim Abdulai's son Alhassan, who was assisting in my instruction displayedgreat ingenuity duringan extended prank in which he tried to confude me in my work by inventing false meanings to fit many rhythms in Takai [a dance/beat from the &lt;a href="http://en.wikipedia.org/wiki/Dagomba"&gt;Dagomba&lt;/a&gt; in northern Ghana]. Many of the rhythmic styles a Takai drummer beats are played only to make the music more interesting, but the language Alhassan supplied matched the rhythms so perfectly that I began to think Ibrahim was withholding the meanings. When I persisted in my questions, he said, "We have a general name for the whole Takai drumming, but only a few of the rhythms have names. In Zhem [another Dagomba dance/beat, played "during the "installation or funeral of high chiefs"], all the drummers will be making speeches, but in Takai the rhythms are mainly to make the dancers strong. The name given Takai is for the different rhythms combined together, and all the rhythms are equal. Anyone who wants to tell you words for these rhythms is lying. Anytime I want, I can just listen to the sound of the dondon [an hourglass-shaped talking drum] or gondon [sic? "gongon"] and compare the music to something in the Dagbani language [of the Dagomba], but it is not the same as making speeches. As for the styles you have been learning, I am the one who has been bringing all these styles when drumming Takai, and I am the right person to give them meaning, but I have no name for them. So how can another person give them meaning or say that this style says this or that style says that while I was not making speeches when I got those very styles?" (p 76)&lt;/blockquote&gt;

&lt;p&gt;Another example is given of a "false meaning" for a dance, Bangumanga, that is regularly accepted by "junior players":&lt;/p&gt;

&lt;blockquote&gt;The drum language is &lt;em&gt;Bem bo ma, be pam boma je&lt;/em&gt; ("They will search for me, but they will not see me"). One false meaning is &lt;em&gt;Man daa yeli, mam bi lan yeli&lt;/em&gt; ("I said it; I don't say it again"). The meaning is a "secret" because of the seriousness of the war. In its truth, Bangumanga recalls the blood that was shed in the war... (p 206)&lt;/blockquote&gt;

&lt;p&gt;Sometimes the meaning of rhythms is simple misunderstood.&lt;/p&gt;

&lt;blockquote&gt;If you play &lt;em&gt;gagedega&lt;/em&gt; instead of &lt;em&gt;gagedegi&lt;/em&gt; when executing a phrase on Atsimewu [a tall drum that acts as a lead], or if you miss the pitch when beating a dondon, you may have a more serious mistake than you think. Indeed, one of the reasons why repetition is so important in African music is that repetition of a rhythm often serves to clarify its meaning. When rhythms change too abruptly, the music can lose some of its meaning... (p 80-81)&lt;/blockquote&gt;

&lt;p&gt;This tendency to court misinterpretation can be heard just by listening to the complex polyrhythms of any West African dance:&lt;/p&gt;

&lt;blockquote&gt;The effect of polymetric music is as if the different rhythms were competing for our attention. No sooner do we grasp one rhythm than we lose track of it and hear another. In something like Adzogbo or Zhe, it is not easy to find any constant beat at all. The Western conception of a main beat or pulse seems to disappear, and a Westerner who cannot appreciate the rhythmic complications and who maintains his habitual listening orientation quite simply gets lost. [...] Actually, if we try to apply Western notions of bars and time signatures, the music seems much more complicated than it really is. [...] The individual rhythms are simple, but the way they are combined can be confusing to Westerners. (p 46-47)&lt;/blockquote&gt;

I see these stories as beautiful metaphors for, and examples of:

&lt;ul&gt;
&lt;li&gt;Information having a noisy character (the beer story)&lt;/li&gt;
&lt;li&gt;The difference between intention in sending and receiving&lt;/li&gt;
&lt;li&gt;Our ability to find structures that have a different cause than we expect&lt;/li&gt;
&lt;li&gt;Repetition as the foundation of meaning, a type of contextualization that allows us to separate "signal" from noise&lt;/li&gt;
&lt;li&gt;The interaction of repetitions producing more complex structures than the sum of their parts (in the case of polyrhythms, it's their least common multiple)&lt;/li&gt;
&lt;li&gt;Our ability to misunderstand a system based on the wrong contextualization (the last example of Westerners misunderstanding polyrhythms)&lt;/li&gt;
&lt;li&gt;Combinatorial music in general&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-324950295776595597?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/324950295776595597/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=324950295776595597' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/324950295776595597'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/324950295776595597'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/08/pranks-and-pragmatism.html' title='Pranks and Pragmatism'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-531712299644777918</id><published>2009-08-16T02:02:00.004-04:00</published><updated>2009-08-16T02:26:01.615-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='distortion'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='time'/><category scheme='http://www.blogger.com/atom/ns#' term='memory'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Crowdsourcing Glitches</title><content type='html'>&lt;p&gt;I'm interested in the possibility of destroying data through natural processes. I've already explored this a bit with &lt;a href="http://www.flickr.com/photos/kylemcdonald/sets/72157608915887288/"&gt;Future Fragments&lt;/a&gt;, where quotes from friends were carried in their pockets and destroyed over the period of a summer.&lt;/p&gt;

&lt;p&gt;Another interesting system that naturally destroys information over time is the human mind (memory). Consider the possibility of crowdsourcing distortion: for example, with &lt;a href="http://en.wikipedia.org/wiki/Amazon_Mechanical_Turk"&gt;Mechanical Turk&lt;/a&gt;, create a task that plays a subset of a song that the worker is then asked to repeat. These responses are then averaged to create an approximation of the original tune.&lt;/p&gt;

&lt;p&gt;This task takes advantage of our ability to hear melodies. We can also treat the mind as a more generic digital signal processor: ask each worker to recall the midi pitches of each note. Or better: portions of the mp3 encoded audio in hex. Besides the auditory system, we can also take advantage of the visual system. Ask each worker to recall and draw the audio signal (at a sufficient scale).&lt;/p&gt;

&lt;p&gt;These tasks would be especially interesting in the case of people like &lt;a href="http://en.wikipedia.org/wiki/Ben_Pridmore"&gt;Ben Pridmore&lt;/a&gt;, who is able to quickly memorize large amounts of data (e.g.: 364 playing cards in 10 minutes). I imagine his memory slowly degrades. It'd be great to see what a compressed image looks like that is memorized slightly incorrectly, and watch it degrade over time.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-531712299644777918?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/531712299644777918/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=531712299644777918' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/531712299644777918'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/531712299644777918'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/08/crowdsourcing-glitches.html' title='Crowdsourcing Glitches'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6533040715144482531</id><published>2009-08-11T12:37:00.000-04:00</published><updated>2010-06-13T21:57:45.379-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='astrology'/><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><category scheme='http://www.blogger.com/atom/ns#' term='christianity'/><category scheme='http://www.blogger.com/atom/ns#' term='astronomy'/><title type='text'>Stars and Bubbles</title><content type='html'>&lt;p&gt;Astronomers have recently realized that galaxies are distributed in a sort of "frothy" or "bubbly" structure. That is, the &lt;a href="http://en.wikipedia.org/wiki/Large-scale_structure_of_the_cosmos"&gt;large scale structure of the universe&lt;/a&gt; can be described as consisting of strings of galaxies with big spaces in between.&lt;/p&gt;

&lt;a href="http://www2.iap.fr/users/lapparen/index_english.shtml"&gt;&lt;img src="http://www2.iap.fr/users/lapparen/CfA_Slice_65.png"&gt;&lt;/a&gt;

&lt;p&gt;A projection of this structure onto the sky of any planet should look highly web-like as well. From these webs, we've created constellations. One of the features that has helped give rise to similar constellations from separate traditions is locality: &lt;a href="http://en.wikipedia.org/wiki/Three_Stars_%28Chinese_constellation%29"&gt;參&lt;/a&gt;, the ancient "three stars" asterism from Chinese astrology, matched the belt of the Greek constellation &lt;a href="http://en.wikipedia.org/wiki/Orion_%28constellation%29"&gt;Orion&lt;/a&gt;. Within traditions, "&lt;a href="http://en.wikipedia.org/wiki/Big_Dipper#Guidepost"&gt;guideposts&lt;/a&gt;" are also established, creating a coherency to the stellar structures.&lt;/p&gt;

&lt;p&gt;Various religious traditions have identified constellations as prophetically or genetically relevant to their beliefs. In 1884, Joseph Seiss laid out his "&lt;a href="http://books.google.com/books?id=BrwnAAAAYAAJ&amp;printsec=titlepage&amp;source=gbs_v2_summary_r&amp;cad=0#v=onepage&amp;q=&amp;f=false"&gt;Gospel In The Stars&lt;/a&gt;" system, describing the relevance of the zodiac to Christianity. Authors like &lt;a href="http://www.amazon.com/Socrates-New-York-John-Kotselas/dp/0966231694"&gt;John Kotselas&lt;/a&gt; will argue that the structures act to justify belief in Christianity. Today, new patterns are &lt;a href="http://www.pakhomov.com/seals.html"&gt;identified&lt;/a&gt; and the old ones still &lt;a href="http://ldolphin.org/zodiac/"&gt;argued&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6533040715144482531?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6533040715144482531/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6533040715144482531' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6533040715144482531'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6533040715144482531'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/08/stars-and-bubbles.html' title='Stars and Bubbles'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-1204627520038179774</id><published>2009-08-05T15:38:00.003-04:00</published><updated>2009-08-05T15:45:45.480-04:00</updated><title type='text'>Salience as Local Entropy</title><content type='html'>Based on a suggestion by Romann Weber, regarding an alternative definition of visual salience.

&lt;ol&gt;
&lt;li&gt;There is an image &lt;em&gt;I&lt;/em&gt; comprised of integers in the range &lt;em&gt;R&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;The probability of a specific value &lt;em&gt;c&lt;/em&gt; from &lt;em&gt;R&lt;/em&gt; occurring in &lt;em&gt;I&lt;/em&gt;, &lt;em&gt;Pr&lt;sub&gt;I&lt;/sub&gt;(c)&lt;/em&gt;, equals the number of pixels with the value &lt;em&gt;c&lt;/em&gt; in &lt;em&gt;I&lt;/em&gt; divided by the total number of pixels in &lt;em&gt;I&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;There is an image &lt;em&gt;S&lt;/em&gt; that is a sub region within &lt;em&gt;I&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;The entropy of &lt;em&gt;S&lt;/em&gt; with respect to &lt;em&gt;I&lt;/em&gt; is equal to the negative sum of &lt;em&gt;Pr&lt;sub&gt;I&lt;/sub&gt;(p)&lt;/em&gt; * &lt;em&gt;log(Pr&lt;sub&gt;I&lt;/sub&gt;(c))&lt;/em&gt; for every pixel &lt;em&gt;p&lt;/em&gt; in &lt;em&gt;S&lt;/em&gt;&lt;/li&gt;
&lt;/ol&gt;

Using this metric, an entire image may be analyzed by moving the sub region &lt;em&gt;S&lt;/em&gt; about the image. Also consider different sizes of &lt;em&gt;S&lt;/em&gt;, and the possibility of use both a moving &lt;em&gt;S&lt;/em&gt; and &lt;em&gt;I&lt;/em&gt; within the actual image.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-1204627520038179774?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/1204627520038179774/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=1204627520038179774' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1204627520038179774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1204627520038179774'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/08/salience-as-local-entropy.html' title='Salience as Local Entropy'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-328624529400342305</id><published>2009-07-27T21:17:00.000-04:00</published><updated>2010-06-13T21:57:45.401-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><title type='text'>Instruction Pieces are Self Destructive</title><content type='html'>Not directly destructive, but they can inspire the audience to create similar work. This happens in the DIY community as well: not only does it provide inspiration, but also encouragement. Art transcends its usual limitations when it is re-appropriated by non-artists and integrated into a life practice. Furthermore, when individuals look to "art" and see only their life practice, the "art" loses its audience. I would like to make more self destructive art.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-328624529400342305?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/328624529400342305/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=328624529400342305' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/328624529400342305'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/328624529400342305'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/07/instruction-pieces-are-self-destructive.html' title='Instruction Pieces are Self Destructive'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6886701884313754419</id><published>2009-07-23T00:49:00.000-04:00</published><updated>2010-06-13T21:57:45.424-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><title type='text'>Signals and SETI@home</title><content type='html'>&lt;a href="http://setiathome.berkeley.edu/"&gt;SETI@home&lt;/a&gt; is a distributed computing project scanning the sky for radio transmissions that bear traces of extra terrestrial intelligence. They &lt;a href="http://seticlassic.ssl.berkeley.edu/about_seti/about_seti_at_home_4.html"&gt;define a "signal"&lt;/a&gt; as:

&lt;ul&gt;
&lt;li&gt;Spikes in power spectra&lt;/li&gt;
&lt;li&gt;Gaussian rises and falls in transmission power&lt;/li&gt;
&lt;li&gt;Triplets (three power spikes in a row)&lt;/li&gt;
&lt;li&gt;Pulsing signals&lt;/li&gt;
&lt;/ul&gt;

Some of these are domain specific (Gaussian rises and falls are due to the telescope passing over a signal source), while others can be generalized. For example, triplets represent a kind of repetition. When you have two of something, there is ambiguity about whether it is chance or not. You can always fit a line to two data points. When there are three events, you can measure the similarity of the two intervals, and make at least three comparisons. Pulsing signals represent another kind of macroscopic repetition. There are really just two types of features: general (repetition), and domain specific (power spikes, Gaussian rises and falls).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6886701884313754419?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6886701884313754419/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6886701884313754419' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6886701884313754419'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6886701884313754419'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/07/signals-and-setihome.html' title='Signals and SETI@home'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7220318067165387890</id><published>2009-07-07T03:51:00.000-04:00</published><updated>2010-06-13T21:57:45.438-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><category scheme='http://www.blogger.com/atom/ns#' term='beauty'/><category scheme='http://www.blogger.com/atom/ns#' term='sociology'/><title type='text'>Magical Situations</title><content type='html'>When you see a tightrope walker, no one needs to explain what is happening. You immediately understand the risk and skill involved, and you are transfixed by it. I'd say this is a "magical" situation: understood intuitively, without explanation, with minimal cultural context. Nature creates a lot of magical things, but I have trouble thinking of many magical human creations. Fireworks? Percussion? What else?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7220318067165387890?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7220318067165387890/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7220318067165387890' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7220318067165387890'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7220318067165387890'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/07/magical-situations.html' title='Magical Situations'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5775440761807989783</id><published>2009-07-05T01:44:00.002-04:00</published><updated>2009-07-05T01:54:43.559-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Privacy Art</title><content type='html'>Whenever you point your browser to an https page, or type your password into a box with asterisks instead of clear text, or see a small lock icon next to a form, you get a feeling of security. In these situations, a language of reassurance has evolved: lock icons, for example, tend to be &lt;a href="http://images.google.com/images?imgsz=icon&amp;&amp;q=lock+icon"&gt;golden-yellow or blue-gray&lt;/a&gt;. Unlike other icons, which are free to be multi-colored, locks have a restricted palette that has evolved to remind us of the physical objects, "real locks", that we trust from day to day.

I propose work that takes advantage of these features in the collective net-unconscious. For example: an https website that promises to keep your data secure, while requesting only random pieces of banal information.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5775440761807989783?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5775440761807989783/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5775440761807989783' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5775440761807989783'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5775440761807989783'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/07/privacy-art.html' title='Privacy Art'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-744183686553675555</id><published>2009-06-16T01:43:00.000-04:00</published><updated>2010-06-13T21:57:45.452-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='existentialism'/><title type='text'>Other/Self and Noise/Music</title><content type='html'>Trying to understand the noise/music discussion in the language of &lt;a href="http://en.wikipedia.org/wiki/Other"&gt;other/self&lt;/a&gt;: traditionally (e.g., &lt;a href="http://www.cobussen.com/proefschrift/300_john_cage/315_silence_noise_ethics/silence_noise_ethics.htm"&gt;Jacques Attali&lt;/a&gt;), music is to the self as noise is to the other. The primary deficit in this analogy is the non-consciousness of sound. One sound cannot approach another sound and have the realization of the "other", but an external entity is required to create and collapse distinctions.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-744183686553675555?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/744183686553675555/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=744183686553675555' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/744183686553675555'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/744183686553675555'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/06/otherself-and-noisemusic.html' title='Other/Self and Noise/Music'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-9113647749446157506</id><published>2009-06-12T21:51:00.000-04:00</published><updated>2010-06-13T21:57:45.468-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><title type='text'>God's Geography</title><content type='html'>Clouds are perhaps the most timeless noise source ripe for induction, but with the advent of accurate mapmaking and satellite photography we can look to geography as well.

&lt;a href="http://www.godsgeography.com/australia/australia1.html"&gt;&lt;img src="http://www.godsgeography.com/australia/austdog.gif"&gt;&lt;/a&gt;

&lt;p&gt;From &lt;i&gt;God's Geography&lt;/i&gt;:&lt;/p&gt;

&lt;blockquote&gt;Spiritually speaking, the Australian dog doesn't have eyes to see or ears to hear (Isaiah 6:9-10). Additionally, most of Australia's interior is desert or outback, so this dog's head doesn't have much for a brain either.&lt;/blockquote&gt;

&lt;p&gt;Also see &lt;a href="http://strangemaps.wordpress.com/2009/10/31/420-the-afro-latinosaurus-rex/"&gt;&lt;i&gt;The Afro-Latinosaurus Rex&lt;/i&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-9113647749446157506?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/9113647749446157506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=9113647749446157506' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/9113647749446157506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/9113647749446157506'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/06/god-geography.html' title='God&amp;#39;s Geography'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-270342147205621077</id><published>2009-06-09T00:05:00.000-04:00</published><updated>2010-06-13T21:57:45.483-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='beauty'/><category scheme='http://www.blogger.com/atom/ns#' term='physics'/><title type='text'>The Best Hack</title><content type='html'>&lt;p&gt;Fold a single piece of paper down the center, length wise. Open it up, and fold two corners from one short side to the center, so that the short side is parallel to the center line. Fold the two corners this creates to the center in the same manner. Repeat this once more, but folding in the opposite direction. A section of the structure should create a T shape. Throw the piece of paper with the smallest end facing forward, and it will glide.&lt;/p&gt;

&lt;p&gt;This is the most elegant repurposing of an everyday object I know: the paper airplane.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-270342147205621077?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/270342147205621077/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=270342147205621077' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/270342147205621077'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/270342147205621077'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/06/best-hack.html' title='The Best Hack'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-205934981059113514</id><published>2009-05-27T17:17:00.000-04:00</published><updated>2010-06-13T21:57:45.497-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><title type='text'>Strange Loops</title><content type='html'>&lt;a href="http://en.wikipedia.org/wiki/Droste_effect"&gt;&lt;img src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Droste.jpg/180px-Droste.jpg" style="margin:10px;float:left;"/&gt;&lt;/a&gt;Hofstadter's &lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Strange_loop"&gt;strange loops&lt;/a&gt;&lt;/i&gt; are a very accessible subset of coherentism. I say "subset" because self-reference, at first glance, seems to be a only one type of reference. This is only true if you make claims from a perspective. If you make non-perspectival claims, there is only self-reference (meaning is only established recursively).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-205934981059113514?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/205934981059113514/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=205934981059113514' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/205934981059113514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/205934981059113514'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/strange-loops.html' title='Strange Loops'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7329461535371069085</id><published>2009-05-26T14:01:00.000-04:00</published><updated>2010-06-13T21:57:45.514-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Closer Than Any Other</title><content type='html'>One of the reasons I appreciate Java is the way the documentation is written. Consider their definition of &lt;i&gt;e&lt;/i&gt; from &lt;a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Math.html"&gt;java.lang.Math&lt;/a&gt;:

&lt;blockquote&gt;&lt;b&gt;static double &lt;a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Math.html#E"&gt;E&lt;/a&gt;&lt;/b&gt; The double value that is closer than any other to e, the base of the natural logarithms.&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7329461535371069085?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7329461535371069085/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7329461535371069085' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7329461535371069085'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7329461535371069085'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/closer-than-any-other.html' title='Closer Than Any Other'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4723554491012411361</id><published>2009-05-23T02:25:00.000-04:00</published><updated>2010-06-13T21:57:45.529-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><category scheme='http://www.blogger.com/atom/ns#' term='christianity'/><title type='text'>Helter Skelter</title><content type='html'>Charles Manson had an intricate interpretation of Revelations 9 that predicted he was the returning Jesus Christ, and that the Beatles were somehow involved in the coming apocalypse. From &lt;a href="http://en.wikipedia.org/wiki/Helter_Skelter_(Manson_scenario)#Book_of_Revelation.2C_as_interpreted_by_Manson"&gt;Wikipedia&lt;/a&gt;:

&lt;blockquote&gt;
&lt;i&gt;Verse 17&lt;/i&gt;: "And thus I saw the horses in the vision, and them that sat on them, having breastplates of fire, and of jacinth, and brimstone: and the heads of the horses were as the heads of lions; and out of their mouths issued fire and smoke and brimstone."
&lt;/blockquote&gt;

&lt;blockquote&gt;
breastplates of fire = the Beatles' electric guitars&lt;br/&gt;
fire and smoke and brimstone out of their mouths = the Beatles' powerful lyrics, the power of their music to ignite &lt;a href="http://en.wikipedia.org/wiki/Helter_Skelter_(Manson_scenario)"&gt;Helter Skelter&lt;/a&gt;
&lt;/blockquote&gt;

A reminder that some more ambiguous prophetic texts are notoriously difficult to discuss in a non-coherentist manner.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4723554491012411361?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4723554491012411361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4723554491012411361' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4723554491012411361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4723554491012411361'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/helter-skelter.html' title='Helter Skelter'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-2069172441969083107</id><published>2009-05-21T17:15:00.000-04:00</published><updated>2010-06-13T21:57:45.544-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><title type='text'>Positively Divine Understanding</title><content type='html'>&lt;a href="http://en.wikipedia.org/wiki/File:Hokusai-fuji-koryuu.png"&gt;&lt;img src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/15/Hokusai-fuji-koryuu.png/140px-Hokusai-fuji-koryuu.png" style="float:left; margin: 10px;"/&gt;&lt;/a&gt;

&lt;p&gt;From the Wikipedia article on the Japanese painter &lt;a href="http://en.wikipedia.org/wiki/Hokusai#Later_life"&gt;Hokusai&lt;/a&gt;, some thoughts on understanding and sharing the natural world:&lt;/p&gt;

&lt;blockquote&gt;"From around the age of six, I had the habit of sketching from life. I became an artist, and from fifty on began producing works that won some reputation, but nothing I did before the age of seventy was worthy of attention. At seventy-three, I began to grasp the structures of birds and beasts, insects and fish, and of the way plants grow. If I go on trying, I will surely understand them still better by the time I am eighty-six, so that by ninety I will have penetrated to their essential nature. At one hundred, I may well have a positively divine understanding of them, while at one hundred and thirty, forty, or more I will have reached the stage where every dot and every stroke I paint will be alive. May Heaven, that grants long life, give me the chance to prove that this is no lie."&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-2069172441969083107?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/2069172441969083107/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=2069172441969083107' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2069172441969083107'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2069172441969083107'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/positively-divine-understanding.html' title='Positively Divine Understanding'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3397892021301825469</id><published>2009-05-20T01:49:00.000-04:00</published><updated>2010-06-13T21:57:45.561-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='existentialism'/><title type='text'>The Projector's Trance</title><content type='html'>The proliferation of Powerpoint and other projection-based media in both the corporate world and academia has created a subtle but persistent phenomena. Think back to the last time you saw someone prepare a projector before a presentation. There is a moment, anywhere from an instant to dozens of minutes, where the unfamiliar device is connected and turned on. This moment is not sustained solely by the person preparing the projector; it emerges from the audience's collective gaze. In this situation, the audience finds themselves in a trance-like state: eyes darting from the projector, to the the cable, to the laptop, to the presenter. They are completely transfixed by the ritual &amp;mdash; momentarily, being-in-itself. And then, without warning, the image provides some sort of affirmation that, indeed, all is in working order. The crowd recollects their freedom. They remember that they're watching a presentation, and that they can stop paying attention whenever they want.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3397892021301825469?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3397892021301825469/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3397892021301825469' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3397892021301825469'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3397892021301825469'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/projector-trance.html' title='The Projector&amp;#39;s Trance'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6614396413058468941</id><published>2009-05-18T02:47:00.000-04:00</published><updated>2010-06-13T21:57:45.579-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><title type='text'>MOOKDFJLAL</title><content type='html'>&lt;blockquote&gt;Take a photograph in your bedroom with a pillow on your head. Upload this photo to the internet (like on Flickr). Tag the file with: &lt;a href="http://www.google.com/search?q=MOOKDFJLAL"&gt;MOOKDFJLAL&lt;/a&gt;. When you search for MOOKDFJLAL you will find photographs of people wearing pillows on their head. &lt;i&gt;&lt;a href="http://www.davidhorvitz.com/2009/"&gt;David Horvitz, May 18, 2009&lt;/a&gt;&lt;/i&gt;&lt;/blockquote&gt;

If you search for &lt;a href="http://www.google.com/search?hl=en&amp;q=241543903"&gt;241543903&lt;/a&gt;, you'll find another Horvitz creation ("people putting their head in the freezer."). It's been called a "meme", but I feel like that's a secondary characteristic of this entity. Memes have origins you can point to and say, "There, look at that &amp;mdash; isn't it funny? That's why everybody's been copying it." But 241543903 and MOOKDFJLAL exist primarily because of the photos, not because of David's original instructions. This is &lt;a href="http://plato.stanford.edu/entries/justep-coherence/"&gt;coherentism&lt;/a&gt; in action.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6614396413058468941?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6614396413058468941/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6614396413058468941' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6614396413058468941'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6614396413058468941'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/mookdfjlal.html' title='MOOKDFJLAL'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4928074370568358904</id><published>2009-05-14T16:28:00.000-04:00</published><updated>2010-06-13T21:57:45.594-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='thesis'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Aaron Koblin Interview</title><content type='html'>Aaron Koblin &lt;a href="http://processing.org/exhibition/features/koblin/"&gt;discussing Processing&lt;/a&gt;, and "Flight Patterns":

&lt;blockquote&gt;I remember the first day that I looked at the data. Within about fifteen minutes I went from cryptic numbers and letters to easily recognizable patterns. It was a thrilling experience.&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4928074370568358904?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4928074370568358904/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4928074370568358904' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4928074370568358904'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4928074370568358904'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/aaron-koblin-interview.html' title='Aaron Koblin Interview'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-1844407189468950400</id><published>2009-05-11T17:18:00.005-04:00</published><updated>2009-05-11T17:29:47.210-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='electronics'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Snail Mail Machine</title><content type='html'>&lt;p&gt;I propose a machine for fueling the enduring nostalgia associated with paper envelopes. It will sit next to your computer, and every time you receive an email it will drop a real envelope through a small slot. Every envelope will have your name on it.&lt;/p&gt;

&lt;p&gt;It's essential to keep the technology as invisible as possible. It should not be complicated by a printer that prints the name of the sender on the envelope, for example. The idea is that someone has just dropped off a letter by your computer for you to read.&lt;/p&gt;

&lt;p&gt;When you remove the envelope from its holder (or, perhaps, place it back inside the machine) a window should pop up on your computer that shows you the email.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-1844407189468950400?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/1844407189468950400/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=1844407189468950400' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1844407189468950400'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1844407189468950400'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/snail-mail-machine.html' title='Snail Mail Machine'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3022966675223662109</id><published>2009-05-02T20:41:00.002-04:00</published><updated>2009-05-02T20:54:38.775-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='electronics'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='psychology'/><category scheme='http://www.blogger.com/atom/ns#' term='space'/><title type='text'>Popularity Machine</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Collect a bunch of used disposable cameras (at least 20).&lt;/li&gt;
&lt;li&gt;Wire simple timers (555s, 4093 RC oscillator) to the flash.&lt;/li&gt;
&lt;li&gt;Deploy them in a crowded room during a party.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3022966675223662109?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3022966675223662109/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3022966675223662109' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3022966675223662109'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3022966675223662109'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/popularity-machine.html' title='Popularity Machine'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8889052504563649895</id><published>2009-05-01T00:49:00.004-04:00</published><updated>2009-05-01T01:01:13.158-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='music'/><title type='text'>Autotune the Past</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Pick a famous speech (e.g.: "&lt;a href="http://www.youtube.com/watch?v=PbUtL_0vAJk"&gt;I Have A Dream&lt;/a&gt;")&lt;/li&gt;
&lt;li&gt;Run it through Anteres' autotune.&lt;/li&gt;
&lt;li&gt;Run the result through Microsoft's SongSmith&lt;/li&gt;
&lt;li&gt;Share&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8889052504563649895?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8889052504563649895/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8889052504563649895' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8889052504563649895'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8889052504563649895'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/autotune-past.html' title='Autotune the Past'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-2140305635649702003</id><published>2009-05-01T00:45:00.000-04:00</published><updated>2010-06-13T22:03:58.138-04:00</updated><title type='text'>Hiatus</title><content type='html'>I've been keeping a much more regularly updated list of links, sans descriptions and analysis, on my &lt;a href="http://delicious.com/kylemcdonald/transcoding/"&gt;delicious bookmarks&lt;/a&gt;. Perhaps I'll come back here for some analysis as I develop my master's thesis?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-2140305635649702003?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/2140305635649702003/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=2140305635649702003' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2140305635649702003'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2140305635649702003'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/05/hiatus.html' title='Hiatus'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4857735730205462685</id><published>2009-04-30T20:33:00.000-04:00</published><updated>2010-06-13T21:57:45.609-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='games'/><title type='text'>Two Ball Game</title><content type='html'>&lt;p&gt;This happened earlier today.&lt;/p&gt;

&lt;p&gt;Get a wiffle ball and a soccer ball. Divide approximately 12 people into two teams. At any moment, one is offense and the other is defense. One of the players (the "goalie") on the defensive team guards themselves with a wiffle ball bat inside an equilateral triangle approximately 12 feet on each side. The offensive team is trying to throw the wiffle ball at the goalie. The defensive team is trying to kick the soccer ball at the player in possession of the wiffle ball.&lt;/p&gt;

&lt;p&gt;Points are scored when the offense hits the goalie with the wiffle ball (throwing underhand from outside the triangle), or the defense hits the offensive player in possession of the wiffle ball with the soccer ball. Because the latter is a bit more difficult than the former, it might be assigned more points (but we never got that far). When a point is scored, the player it was scored by/against becomes the goalie. The former goalie throws in the wiffle ball.&lt;/p&gt;

&lt;p&gt;Additionally: it might make more sense if both balls may be either kicked or thrown. It might also be easiest to play this in a court, where the soccer ball cannot be lost when it misses a target (or with multiple soccer balls).&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4857735730205462685?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4857735730205462685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4857735730205462685' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4857735730205462685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4857735730205462685'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/04/two-ball-game.html' title='Two Ball Game'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5917284315425168466</id><published>2009-04-28T19:21:00.010-04:00</published><updated>2009-07-16T02:00:47.514-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Indirect Indirection</title><content type='html'>&lt;p&gt;Along the lines of &lt;a href="http://www.fffff.at/kopyfamo/"&gt;Kopyfamo'&lt;/a&gt; (or at least sharing the aesthetic): use the various "this is a hosted image" images as profile/avatar images. Alternatively, collect these images and upload them to various image hosting sites. For example (Hosted on &lt;a href="http://tinypic.com/"&gt;tinypic.com&lt;/a&gt;):&lt;/p&gt;

&lt;img src="http://i39.tinypic.com/2cgizdl.jpg"/&gt;
&lt;img src="http://i44.tinypic.com/29y4ks4.jpg"/&gt;
&lt;img src="http://i30.tinypic.com/2hyhtvr.gif"/&gt;
&lt;img src="http://i32.tinypic.com/143g8rr.jpg"/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5917284315425168466?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5917284315425168466/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5917284315425168466' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5917284315425168466'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5917284315425168466'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/04/along-lines-of-kopyfamo-or-at-least.html' title='Indirect Indirection'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://i39.tinypic.com/2cgizdl_th.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5100277490058616910</id><published>2009-04-22T23:40:00.003-04:00</published><updated>2009-05-01T01:01:38.504-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='electronics'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><category scheme='http://www.blogger.com/atom/ns#' term='conceptual'/><title type='text'>Energy Meter</title><content type='html'>Hack multimeter such that:

&lt;ol&gt;
&lt;li&gt;It runs off an adapter that plugs into the wall.&lt;/li&gt;
&lt;li&gt;It senses and displays the current flowing into it.&lt;/li&gt;
&lt;/ol&gt;

An energy visualization that fulfills its purpose whether plugged in or unplugged. One of those near-paradoxes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5100277490058616910?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5100277490058616910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5100277490058616910' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5100277490058616910'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5100277490058616910'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/04/energy-meter.html' title='Energy Meter'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6815141135342870318</id><published>2009-04-20T00:19:00.001-04:00</published><updated>2009-04-20T00:21:12.455-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><title type='text'>Piece for Ingenuity</title><content type='html'>Count every hair on your head.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6815141135342870318?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6815141135342870318/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6815141135342870318' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6815141135342870318'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6815141135342870318'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/04/piece-for-ingenuity.html' title='Piece for Ingenuity'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5466017836088397736</id><published>2009-04-11T13:10:00.000-04:00</published><updated>2009-04-11T13:11:15.224-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Piece for Internet</title><content type='html'>Click on every advertisement you see.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5466017836088397736?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5466017836088397736/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5466017836088397736' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5466017836088397736'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5466017836088397736'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/04/piece-for-internet.html' title='Piece for Internet'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6410565788925968695</id><published>2009-04-06T08:46:00.000-04:00</published><updated>2010-06-13T21:57:45.629-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sociology'/><title type='text'>Cheap Fraud</title><content type='html'>From the &lt;a href="http://en.wikipedia.org/wiki/Talk:One_red_paperclip"&gt;wikipedia talk page&lt;/a&gt; on Kyle MacDonald, my &lt;a href="http://www.google.com/search?hl=en&amp;q=kyle%20mcdonald"&gt;Google-rankings arch-nemesis&lt;/a&gt; and proponent of the "one red paperclip" project:

&lt;blockquote&gt;
&lt;p&gt;
how can one man get all kinds of attenoin because of a paper clip when there are starving and dieing every day this gives the message that if you do a cheap trick you will be rewarded but if you live a honest life and try to work for what you have you get scorned
&lt;/p&gt;

&lt;p&gt;
No it doesn't. &lt;a href="http://en.wikipedia.org/wiki/User:Cardboard_boxA"&gt;Cardboard boxA&lt;/a&gt; 17:40, 28 September 2006 (UTC)
&lt;/p&gt;
&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6410565788925968695?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6410565788925968695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6410565788925968695' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6410565788925968695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6410565788925968695'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/04/cheap-fraud.html' title='Cheap Fraud'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4253417827303759403</id><published>2009-03-28T23:34:00.003-04:00</published><updated>2009-03-28T23:56:58.200-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='psychology'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='philosophy'/><category scheme='http://www.blogger.com/atom/ns#' term='religion'/><category scheme='http://www.blogger.com/atom/ns#' term='science'/><title type='text'>Piece for ESP</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Focus on the idea, "odd numbers".&lt;/li&gt;
&lt;li&gt;Continue focusing, and roll a die.&lt;/li&gt;
&lt;li&gt;If the outcome is odd, today is a day for ESP!&lt;/li&gt;
&lt;li&gt;Do this each day, and keep a running tally of your results.&lt;/li&gt;
&lt;li&gt;If the outcome keeps moving towards "odd", this life is a life for ESP!&lt;/li&gt;
&lt;li&gt;Or you need new dice.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4253417827303759403?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4253417827303759403/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4253417827303759403' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4253417827303759403'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4253417827303759403'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/03/piece-for-esp.html' title='Piece for ESP'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4064457783528501097</id><published>2009-03-22T01:13:00.005-04:00</published><updated>2009-03-22T01:17:14.843-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Piece for Anonymous</title><content type='html'>Next time you come across a personal blog of someone you've never met, bookmark it and check it frequently. Do your best to understand where the person is coming from, and leave thoughtful comments. Do this without letting it become creepy.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4064457783528501097?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4064457783528501097/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4064457783528501097' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4064457783528501097'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4064457783528501097'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/03/instruction-piece-for-anonymous.html' title='Piece for Anonymous'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8521694112912157113</id><published>2009-03-14T19:33:00.005-04:00</published><updated>2009-03-22T01:17:07.874-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><title type='text'>Piece for a Car Thief</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Discover a defining characteristic of &lt;a href="http://dsc.discovery.com/videos/tech-is-it-future-yet-car-thief-catcher.html"&gt;these cars&lt;/a&gt; used to catch car thieves. (Perhaps RF signals used for controlling and monitoring the car.)&lt;/li&gt;
&lt;li&gt;If it is possible, enter the car without breaking into it.&lt;/li&gt;
&lt;li&gt;Say: "This is not my car." loud enough for the embedded microphone to record it.&lt;/li&gt;
&lt;li&gt;Exit the car.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8521694112912157113?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8521694112912157113/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8521694112912157113' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8521694112912157113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8521694112912157113'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/03/piece-for-car-thief.html' title='Piece for a Car Thief'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-944568039038594263</id><published>2009-03-08T16:53:00.000-04:00</published><updated>2010-06-13T21:57:45.647-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='metaphor'/><category scheme='http://www.blogger.com/atom/ns#' term='poetry'/><title type='text'>Four and a Half Billion Years of Solitude</title><content type='html'>This is the only good poem I've ever written.

&lt;pre&gt;
cinder in the sky;
enrapt by the earth,
sighs for a suicidal
 slip.

(the moon one night
 stared back at me
 with blood on its face,
 awaiting another wedding)

(2006)
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-944568039038594263?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/944568039038594263/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=944568039038594263' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/944568039038594263'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/944568039038594263'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/03/four-and-half-billion-years-of-solitude.html' title='Four and a Half Billion Years of Solitude'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7898343289594315976</id><published>2009-03-07T14:49:00.000-05:00</published><updated>2010-06-13T21:57:45.666-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='beauty'/><title type='text'>Harry Houdini</title><content type='html'>Things I learned from the &lt;a href="http://en.wikipedia.org/wiki/Harry_Houdini"&gt;Wikipedia article on Harry Houdini&lt;/a&gt;:

&lt;ol&gt;
&lt;li&gt;Sometimes things work, but they don't always&lt;/li&gt;
&lt;li&gt;When they don't work, the solution may be hidden in a kiss; or not working may have been part of the plan in the first place&lt;/li&gt;
&lt;li&gt;Sometimes it's important for people to see the process, and other times it's more alluring for it to be hidden&lt;/li&gt;
&lt;li&gt;The possibility of death is intriguing&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7898343289594315976?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7898343289594315976/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7898343289594315976' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7898343289594315976'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7898343289594315976'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/03/harry-houdini.html' title='Harry Houdini'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-2628507549332698270</id><published>2009-02-19T21:21:00.002-05:00</published><updated>2009-03-22T01:16:56.751-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><title type='text'>Piece for Beer and Keyboard</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Spill beer on your keyboard.&lt;/li&gt;
&lt;li&gt;Open a text editor.&lt;/li&gt;
&lt;li&gt;Clean beer off your keyboard.&lt;/li&gt;
&lt;li&gt;Save the text.&lt;/li&gt;
&lt;/ol&gt;

Realization, 2/19/09:

&lt;blockquote&gt;yt czzz SWE3 de CDaqdzcdzDSAcx n bvcvcxz vr5 CDSZAZSAsadaSADAAsazzsaASDaasdsZzxczrewazzxA&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-2628507549332698270?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/2628507549332698270/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=2628507549332698270' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2628507549332698270'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2628507549332698270'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/02/instruction-piece-for-beer-and-keyboard.html' title='Piece for Beer and Keyboard'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-5183907599283320614</id><published>2009-02-12T03:51:00.000-05:00</published><updated>2010-06-13T21:57:45.679-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><category scheme='http://www.blogger.com/atom/ns#' term='poetry'/><category scheme='http://www.blogger.com/atom/ns#' term='language'/><title type='text'>Unknown Passwords</title><content type='html'>My friend &lt;a href="bsjeon.net"&gt;Byeong Sam&lt;/a&gt; sometimes uses his Latin-covered keyboard to type &lt;a href="http://en.wikipedia.org/wiki/Hangul"&gt;Hangul&lt;/a&gt;. I asked if there are any connections between the Latin consonants and the way they are used to form the Korean characters &amp;mdash; he said no. Furthermore, there are some passwords that he knows in Korean but are stored using Latin characters. He doesn't really pay attention to what these passwords are, just the gestures that form them.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-5183907599283320614?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/5183907599283320614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=5183907599283320614' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5183907599283320614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/5183907599283320614'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/02/unknown-passwords.html' title='Unknown Passwords'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7104819731693296427</id><published>2009-01-26T11:01:00.000-05:00</published><updated>2010-06-13T21:57:45.697-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><title type='text'>Cage vs. Pascal</title><content type='html'>&lt;blockquote&gt;Wherever we are, what we hear is mostly noise. When we ignore it, it disturbs us. When we listen to it, we find it fascinating... We want to capture and control these sounds, to use them not as sound effects but as musical instruments. (&lt;i&gt;John Cage, 1961&lt;/i&gt;)&lt;/blockquote&gt;

Le bruit a sa musique que la musique ne connaît point. (&lt;a href="http://www.google.com/search?hl=en&amp;q=Le%20coeur%20a%20ses%20raisons%20que%20la%20raison%20ne%20connait%20point"&gt;Pascal&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7104819731693296427?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7104819731693296427/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7104819731693296427' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7104819731693296427'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7104819731693296427'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/01/cage-vs-pascal.html' title='Cage vs. Pascal'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-9044606743669537150</id><published>2009-01-26T02:16:00.002-05:00</published><updated>2009-01-26T02:21:04.183-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Piece for DNS</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Register the shortest possible domain name you can.&lt;/li&gt;
&lt;/ol&gt;

Potential additional constraints:

&lt;ul&gt;
&lt;li&gt;You are limited to the .com top level domain.&lt;/li&gt;
&lt;li&gt;Domain names may include a-z, 0-9 and the hyphen, must start with a-z and may not end with a hyphen. (See &lt;a href="http://tools.ietf.org/html/rfc1034"&gt;RFC 1034&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Get kicked out of domaintools.com's &lt;a href="http://www.domaintools.com/bulk-check/"&gt;bulk check&lt;/a&gt;:
&lt;blockquote&gt;Security : Client may be too resource intensive.
You have reached your daily lookup limit. &lt;/blockquote&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-9044606743669537150?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/9044606743669537150/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=9044606743669537150' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/9044606743669537150'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/9044606743669537150'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/01/piece-for-dns.html' title='Piece for DNS'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-1174113923855139583</id><published>2009-01-21T12:55:00.000-05:00</published><updated>2010-06-13T21:57:45.714-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linguistics'/><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='critical thinking'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='morality'/><title type='text'>Ways of Defining Music</title><content type='html'>&lt;p&gt;The "is-ought" problem is common to meta-ethics and linguistics. In meta-ethics: are we describing how people act, or how they ought to act? In linguistics, some people describe grammar while other prescribe grammar. I imagine the same approaches to understanding music:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Descriptive definitions of music, which take into account various musical traditions and extrapolate common themes within and between them.&lt;/li&gt;
&lt;li&gt;Prescriptive definitions of music, which involve reflection and thought-experiments &amp;mdash; philosophy, really &amp;mdash; sometimes accompanied by experimental compositions.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;To explore the first without the second is superficial, and to philosophize without context is unrealistic.&lt;/p&gt;

&lt;p&gt;
&lt;i&gt;1/26/08&lt;/i&gt;: "Noise" has the same issue, describing how the word "noise" is used is very different from prescribing definitions. Describing things can be difficult, but prescriptions can get really messy. It's probably best to set out a goal for a prescriptive definition before seeking/giving one. Prescriptions might be about: unifying themes of descriptions, offering a new definition that illuminates others, expanding or restricting the dominant contemporary definition...
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-1174113923855139583?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/1174113923855139583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=1174113923855139583' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1174113923855139583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1174113923855139583'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/01/ways-of-defining-music.html' title='Ways of Defining Music'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8850474913880065389</id><published>2009-01-18T19:03:00.003-05:00</published><updated>2009-01-18T19:08:41.955-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='distortion'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='transcoding'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='space'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><category scheme='http://www.blogger.com/atom/ns#' term='language'/><title type='text'>Naked Mail Distortion</title><content type='html'>A method for destroying data: send optical discs in the mail, with no protection, back and forth between two locations. The data may be collected each time and noted for future reference. Potential subjects include compressed and uncompressed media (audio, video) and written texts. Consider also a iterative/recursive algorithm where the distortion provides a decision for a chance operation: the CD contains a list of addresses, and every time an address is lost the CD is sent to that address.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8850474913880065389?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8850474913880065389/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8850474913880065389' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8850474913880065389'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8850474913880065389'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/01/naked-mail-distortion.html' title='Naked Mail Distortion'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-174763437896995539</id><published>2009-01-15T22:12:00.000-05:00</published><updated>2010-06-13T21:57:45.731-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><title type='text'>Travis the Arborist</title><content type='html'>Travis, from Moorhead Minnesota, is spending the night in my apartment. He's looking for work protecting things from breaking branches covered in ice. I asked him "What are the strangest problems you've run into?" and he said:

&lt;ol&gt;
&lt;li&gt;People think they own trees.&lt;/li&gt;
&lt;li&gt;People think they can control nature.&lt;/li&gt;
&lt;/ol&gt;

He seemed to be really into the trees he worked with, but was excited about the prospect of going to school for business administration. So I asked him: if he didn't have to work, what would he do?

&lt;blockquote&gt;It's hard work, so if I didn't have to then I wouldn't. I'd take care of my own, of course, but I already do: mostly, I leave them alone.&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-174763437896995539?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/174763437896995539/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=174763437896995539' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/174763437896995539'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/174763437896995539'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/01/travis-arborist.html' title='Travis the Arborist'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-2500309044654412045</id><published>2009-01-10T12:58:00.005-05:00</published><updated>2009-04-29T03:16:45.734-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='space'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>From-To</title><content type='html'>Half-formed instruction piece using directions from Google Maps.

&lt;ul&gt;
&lt;li&gt;In the form of images (paths) or as text (directions).&lt;/li&gt;
&lt;li&gt;Cities might be chosen at random or based on some principle.&lt;/li&gt;
&lt;/ul&gt;

Principles:

&lt;ul&gt;
&lt;li&gt;Only very small cities.&lt;/li&gt;
&lt;li&gt;Only capitols.&lt;/li&gt;
&lt;li&gt;Cities with the same name.&lt;/li&gt;
&lt;li&gt;Cities with some other shared characteristic: crime rate, population, longitude...&lt;/li&gt;
&lt;/ul&gt;

Presented as prints or on a screen/projection, rotating through possibilities. These things make me think about how we can get from one place to another, and the ways in which we connect things in time, space, and using other labels.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-2500309044654412045?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/2500309044654412045/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=2500309044654412045' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2500309044654412045'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2500309044654412045'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/01/from-to.html' title='From-To'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4560579301823431558</id><published>2009-01-01T14:00:00.000-05:00</published><updated>2010-06-13T21:57:45.751-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><category scheme='http://www.blogger.com/atom/ns#' term='contentness'/><title type='text'>Let Go</title><content type='html'>Only everything lasts forever.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4560579301823431558?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4560579301823431558/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4560579301823431558' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4560579301823431558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4560579301823431558'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2009/01/let-go.html' title='Let Go'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6162695431023134509</id><published>2008-12-27T15:08:00.000-05:00</published><updated>2010-06-13T21:57:45.769-04:00</updated><title type='text'>Ablinger, Repetition, and Meaning</title><content type='html'>&lt;blockquote&gt;...redundancy produces information. And from here, it is not a long way to entropic noise as information in Shannon's sense.

It was Arnold Schönberg who stated that variation is necessarily a form of repetition as at least something must return between variation and variation. And he thus shifted his attention from the changing aspect of music to the continuous, the repeated. Ablinger's attitude is something like the hidden, reverse secret of the same story: that each repetition is also variation, that there is necessarily always something changing—that, in other words: repetition does not exist except as an abstraction.&lt;/blockquote&gt;

&lt;p&gt;&lt;i&gt;From &lt;a href="http://ablinger.mur.at/noise.html"&gt;"Static's Music - Noise Inquiries"&lt;/a&gt; by Christian Scheib&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;Repetition and redundancy do produce information, and information is meaning. However, this ability is not unique to repetition. Repetition is a subset of a larger meaning-producing process: the formation of relationships. I would argue all meaning comes from relations and connections; epistemology is relational. Repetition is a method of creating relations by separating similar events in space and time.&lt;/p&gt;

&lt;p&gt;Taken loosely, repetition may be considered relation-formation in its entirety. There is a good reason not to define repetition loosely, however: we have an intuition for the "abstraction" of perfect repetition. This intuition might be defined as: multiple events produced as similarly as possible to each other, varying only in their spatio-temporal manifestation. When Mozart is performed today, it is contextualized (and thus meaningful) in relation to every other Mozart performance past (as well as many other things, including all of music history). However, these modern performances are not repetitions of previous performances &amp;mdash; and any new performance is not a repetition of the theory and influences related to it &amp;mdash; but it is still meaningful.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6162695431023134509?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6162695431023134509/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6162695431023134509' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6162695431023134509'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6162695431023134509'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/12/ablinger-repetition-and-meaning.html' title='Ablinger, Repetition, and Meaning'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8614118342548983749</id><published>2008-12-26T20:16:00.006-05:00</published><updated>2008-12-27T11:36:55.649-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='time'/><category scheme='http://www.blogger.com/atom/ns#' term='memory'/><title type='text'>Piece for Post</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Mail an empty envelope to a friend.&lt;/li&gt;
&lt;li&gt;Without opening the envelope, they should put it in a new envelope and send it back to you.&lt;/li&gt;
&lt;li&gt;Without opening their envelope, you should put their envelope in a new envelope and send it back to them.&lt;/li&gt;
&lt;li&gt;Repeat until the Post loses the envelopes, or refuses to carry it.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8614118342548983749?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8614118342548983749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8614118342548983749' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8614118342548983749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8614118342548983749'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/12/piece-for-post.html' title='Piece for Post'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-1642413114162917425</id><published>2008-12-17T00:12:00.000-05:00</published><updated>2010-06-13T21:57:45.786-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sociology'/><title type='text'>How to Save Your Life</title><content type='html'>Two approaches to saving all of your experiences on a hard drive somewhere:

&lt;ol&gt;
&lt;li&gt;Create a device that is able to capture any experience and store it to a remote location.&lt;/li&gt;
&lt;li&gt;Take a tool that already stores every action performed while using it, and reshape your life until all your experiences surround that tool.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-1642413114162917425?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/1642413114162917425/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=1642413114162917425' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1642413114162917425'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/1642413114162917425'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/12/how-to-save-your-life.html' title='How to Save Your Life'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6462482790041364225</id><published>2008-12-14T19:52:00.003-05:00</published><updated>2008-12-14T20:02:19.064-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='electronics'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><category scheme='http://www.blogger.com/atom/ns#' term='poetry'/><category scheme='http://www.blogger.com/atom/ns#' term='language'/><title type='text'>Speech</title><content type='html'>Using a &lt;a href="http://members.tripod.com/werdav/t2smicrv.html"&gt;Microvox&lt;/a&gt; text-to-speech module, generate every possible vocal sound sequence. Potential interpretations:

&lt;ol&gt;
&lt;li&gt;A panoglot box.&lt;/li&gt;
&lt;li&gt;A lying box.&lt;/li&gt;
&lt;li&gt;A truth-telling box.&lt;/li&gt;
&lt;li&gt;A future-predicting box.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6462482790041364225?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6462482790041364225/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6462482790041364225' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6462482790041364225'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6462482790041364225'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/12/speech.html' title='Speech'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3744375786167358498</id><published>2008-11-28T00:21:00.002-05:00</published><updated>2008-11-28T11:56:22.269-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><title type='text'>Instruction Piece for Printer</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Find a paper towel.&lt;/li&gt;
&lt;li&gt;Remove the carriage from your printer.&lt;/li&gt;
&lt;li&gt;Clean the carriage with the paper towel.&lt;/li&gt;
&lt;li&gt;Return the carriage to the printer.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3744375786167358498?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3744375786167358498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3744375786167358498' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3744375786167358498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3744375786167358498'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/11/instruction-piece-for-paper-towel.html' title='Instruction Piece for Printer'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8696481230889652193</id><published>2008-11-12T22:39:00.000-05:00</published><updated>2010-06-13T21:57:45.804-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='noise'/><category scheme='http://www.blogger.com/atom/ns#' term='existentialism'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><title type='text'>Defining Music</title><content type='html'>&lt;p&gt;"Music" has always been "meaningful sound"; but the definition of "meaningful sound" has not always been the same.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pre-Cage: meaning is found in your local culture. One culture's music is another culture's noise.&lt;/li&gt;
&lt;li&gt;Cage: meaning is found in your personal experience. One person's music is another person's noise.&lt;/li&gt;
&lt;li&gt;Post-Cage: meaning is found in contextualization. There is no noise, only sound that is more or less contextualized.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;i&gt;12/27/08&lt;/i&gt;: I still agree with the distinction between the three stages above. I'm less certain about "music" being "meaningful sound". By extension, "art" is anything with meaning. However, there are many things that people with pre-Cage (pre-Duchamp) &amp;mdash; or even Cagian/Duchampian definitions of art &amp;mdash; would call "meaningful" but not "art". The beep of a crosswalk has a meaning, but is not often called "music". Is there anything in common between Cage calling the crosswalk beep "music", and a pre-Cage audience calling Debussy "music"?&lt;/p&gt;

&lt;p&gt;Have we ever called meaningless things "art"? Very briefly, when Cage or Duchamp were busy with 4'33" or "The Fountain". With those transitional exceptions, then, "art" is a subset of "meaningful things".&lt;/p&gt;

&lt;p&gt;Three sets:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;i&gt;A&lt;/i&gt; Art.&lt;/li&gt;
&lt;li&gt;&lt;i&gt;M&lt;/i&gt; Meaningful things.&lt;/li&gt;
&lt;li&gt;&lt;i&gt;U&lt;/i&gt; The universal set.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Three steps (where ⊂ means "strict subset"):&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Pre-Cage: &lt;i&gt;A&lt;/i&gt;⊂&lt;i&gt;M&lt;/i&gt;, &lt;i&gt;M&lt;/i&gt;⊂&lt;i&gt;U&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;Cage: &lt;i&gt;A&lt;/i&gt;=&lt;i&gt;M&lt;/i&gt;, &lt;i&gt;M&lt;/i&gt;⊂&lt;i&gt;U&lt;/i&gt; (not quite right, because of the crosswalk problem)&lt;/li&gt;
&lt;li&gt;Post-Cage: &lt;i&gt;A&lt;/i&gt;=&lt;i&gt;M&lt;/i&gt;, &lt;i&gt;M&lt;/i&gt;=&lt;i&gt;U&lt;/i&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;i&gt;1/22/09&lt;/i&gt;: Music is not necessarily "meaningful sound", but music is "named" the same way meaning is "named". Naming, and meaning, has always come from contextualization, but we've imagined contextualization differently over time.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Pre-Cage: societies are the contextualizers, deciding what is meaningful, what is music, etc.&lt;/li&gt;
&lt;li&gt;Cage: individuals are the contextualizers (remove society).&lt;/li&gt;
&lt;li&gt;Post-Cage: nature itself is the contextualizer (remove the individual), and humans identify subsets of these relationships.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Transcoding-based art (i.e., visualization, sonification...) and highly analogical explorations (e.g., VJing as an analog to DJing) can be heavily Post-Cage in that they acknowledge the many possibilities, and that they are sampling a subset of those relationships.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;8/18/09&lt;/em&gt;: Attali has a note on these ideas in &lt;em&gt;Noise&lt;/em&gt;, p 25:&lt;/p&gt;

&lt;blockquote&gt;In fact, the signification of music is far more complex. Although the value of a sound, like that of a phoneme, is determined by its relations with other sounds, it is, more than that, a relation embedded in a specific culture; the "meaning" of the musical message is expressed in a global fashion, in its operationality, and not in the juxtaposed signification of each sound element.&lt;/blockquote&gt;

&lt;p&gt;In short, while considering the origins of music, he identifies the pre-Cage contextualizers (society/culture) as bestowing meaning upon music.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8696481230889652193?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8696481230889652193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8696481230889652193' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8696481230889652193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8696481230889652193'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/11/defining-music.html' title='Defining Music'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6541651160899073039</id><published>2008-11-11T06:06:00.002-05:00</published><updated>2009-08-18T15:16:35.996-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='electronics'/><category scheme='http://www.blogger.com/atom/ns#' term='interface'/><category scheme='http://www.blogger.com/atom/ns#' term='design'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><title type='text'>Capacitive 3D Screen</title><content type='html'>&lt;p&gt;Lay strips of a transparent, conductive material behind a sheet of glass onto which you are rear-projecting. Use the conductive strips for capacitive sensing, and recovering distance and position from the screen.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;8/18/09&lt;/em&gt;: This is actually really common, I just hadn't heard of it. Whoops.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6541651160899073039?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6541651160899073039/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6541651160899073039' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6541651160899073039'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6541651160899073039'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/11/capacitive-3d-screen.html' title='Capacitive 3D Screen'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4539508789673611025</id><published>2008-11-02T14:52:00.003-05:00</published><updated>2008-11-02T15:05:19.900-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ai'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Escape Time Life Visualization</title><content type='html'>Use an &lt;a href="http://en.wikipedia.org/wiki/Mandelbrot_set#Escape_time_algorithm"&gt;escape time algorithm&lt;/a&gt; to visualize the distribution of boards for the game of life. The main issue: identifying two independent variables that can be used to generate the boards. One approach is to use subdivision: look at the {x, y} point in binary and interlace the bits.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4539508789673611025?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4539508789673611025/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4539508789673611025' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4539508789673611025'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4539508789673611025'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/11/escape-time-life-visualization.html' title='Escape Time Life Visualization'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-8506716146448433039</id><published>2008-10-31T06:12:00.003-04:00</published><updated>2009-04-12T11:49:53.851-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='music'/><title type='text'>The Same Old Song</title><content type='html'>An instruction piece and concept album:

&lt;ol&gt;
&lt;li&gt;Make friends with 3 street musicians.&lt;/li&gt;
&lt;li&gt;Record them every day for 3 weeks.&lt;/li&gt;
&lt;li&gt;Make 3 songs, where each song consists of the 3 weeks mixed together.&lt;/li&gt;
&lt;li&gt;Do this in 3 different cities.&lt;/li&gt;
&lt;/ol&gt;

&lt;i&gt;April 12, 2009: &lt;a href="http://www.playingforchange.com/pop2.html"&gt;The accessible version&lt;/a&gt;.&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-8506716146448433039?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/8506716146448433039/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=8506716146448433039' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8506716146448433039'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/8506716146448433039'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/10/same-old-song.html' title='The Same Old Song'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7356254989444077678</id><published>2008-10-20T14:26:00.003-04:00</published><updated>2008-10-20T14:33:27.176-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='electronics'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='interface'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Slow Motion via Bandwidth Throttling</title><content type='html'>Create a film meant to be viewed in slow motion. Stream it across a connection that is throttled at exactly the right bandwidth so the video plays in slow motion. Alternatively: add an element of interactivity by creating a force-sensitive sheath for the network cable running to the display computer. When a participant steps on the sheath, the bandwidth is further throttled &amp;mdash; "choking" the network connection. Instead of creating a video, consider using YouTube videos. Every time a video loads completely, choose a new one at random.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7356254989444077678?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7356254989444077678/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7356254989444077678' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7356254989444077678'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7356254989444077678'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/10/slow-motion-via-bandwidth-throttling.html' title='Slow Motion via Bandwidth Throttling'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3814062178231372517</id><published>2008-10-10T10:48:00.002-04:00</published><updated>2008-10-10T10:51:02.695-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ai'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='experimental'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Bring the Noise</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Pick a YouTube video.&lt;/li&gt;
&lt;li&gt;Train a Markov chain on the comments.&lt;/li&gt;
&lt;li&gt;Generate a new comment with the Markov chain.&lt;/li&gt;
&lt;li&gt;Post that comment to the video.&lt;/li&gt;
&lt;li&gt;Pick a new YouTube video and repeat.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3814062178231372517?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3814062178231372517/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3814062178231372517' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3814062178231372517'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3814062178231372517'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/10/bring-noise.html' title='Bring the Noise'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3010302461433713038</id><published>2008-09-28T16:22:00.004-04:00</published><updated>2008-11-28T00:24:33.503-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='psychology'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Piece for Facebook</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Register a Facebook account.&lt;/li&gt;
&lt;li&gt;Friend request only your real-life best friend.&lt;/li&gt;
&lt;li&gt;Confirm every person who sends you a friend request.&lt;/li&gt;
&lt;li&gt;That real-life best friend is not allowed to answer your request.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3010302461433713038?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3010302461433713038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3010302461433713038' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3010302461433713038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3010302461433713038'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/09/piece-for-facebook.html' title='Piece for Facebook'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6647288696486985967</id><published>2008-09-20T15:22:00.004-04:00</published><updated>2008-10-12T21:40:20.068-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction piece'/><title type='text'>Two Pieces for the Louvre</title><content type='html'>&lt;ol&gt;
&lt;li&gt;Cover every piece in the Louvre except the Mona Lisa.&lt;/li&gt;
&lt;li&gt;Cover the Mona Lisa.&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6647288696486985967?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6647288696486985967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6647288696486985967' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6647288696486985967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6647288696486985967'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/09/two-pieces-for-louvre.html' title='Two Pieces for the Louvre'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-239652514959992623</id><published>2008-09-12T16:43:00.001-04:00</published><updated>2008-09-12T16:45:10.236-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Craigslist Matchmaker</title><content type='html'>Apply &lt;a href="http://en.wikipedia.org/wiki/TheGreatHatsby"&gt;TheGreatHatsby&lt;/a&gt; principle to Cragslist personals. Conversations would probably have to be filtered manually.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-239652514959992623?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/239652514959992623/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=239652514959992623' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/239652514959992623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/239652514959992623'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/09/craigslist-matchmaker.html' title='Craigslist Matchmaker'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3653819166169031969</id><published>2008-09-12T14:42:00.003-04:00</published><updated>2008-09-20T16:55:47.114-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ai'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='computer science'/><title type='text'>Automated End User</title><content type='html'>Record key presses and mouse movements over a long period of time for a single user. Then, simulate the user using a Markov model acting as an attractor.

Variation: No modeling, just repeating. Record mouse movements and key presses while writing an application to play back mouse movements and key presses. When complete, start the playback program based on the recorded data. The program will write itself, and then execute itself, indefinitely.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3653819166169031969?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3653819166169031969/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3653819166169031969' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3653819166169031969'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3653819166169031969'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/09/automated-end-user.html' title='Automated End User'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-4050612378949939804</id><published>2008-09-12T13:34:00.002-04:00</published><updated>2008-09-12T13:36:30.423-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='video'/><category scheme='http://www.blogger.com/atom/ns#' term='visual'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><title type='text'>Faux Stereo Video</title><content type='html'>To get stereo video you normally need two cameras. Another alternative: for a static scene, move one camera in a straight line to the right and play back the video twice, with the left one delayed slightly.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-4050612378949939804?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/4050612378949939804/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=4050612378949939804' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4050612378949939804'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/4050612378949939804'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/09/faux-stereo-video.html' title='Faux Stereo Video'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-2696178529180815275</id><published>2008-08-23T21:19:00.000-04:00</published><updated>2010-06-13T21:57:45.826-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='epistemology'/><category scheme='http://www.blogger.com/atom/ns#' term='existentialism'/><category scheme='http://www.blogger.com/atom/ns#' term='truth'/><category scheme='http://www.blogger.com/atom/ns#' term='religion'/><category scheme='http://www.blogger.com/atom/ns#' term='hope'/><category scheme='http://www.blogger.com/atom/ns#' term='morality'/><category scheme='http://www.blogger.com/atom/ns#' term='physics'/><category scheme='http://www.blogger.com/atom/ns#' term='mind'/><category scheme='http://www.blogger.com/atom/ns#' term='freewill'/><category scheme='http://www.blogger.com/atom/ns#' term='hinduism'/><category scheme='http://www.blogger.com/atom/ns#' term='redemption'/><category scheme='http://www.blogger.com/atom/ns#' term='pride'/><category scheme='http://www.blogger.com/atom/ns#' term='love'/><category scheme='http://www.blogger.com/atom/ns#' term='science'/><category scheme='http://www.blogger.com/atom/ns#' term='logic'/><category scheme='http://www.blogger.com/atom/ns#' term='politics'/><title type='text'>The Eternal Questions</title><content type='html'>I've had a text file by this name sitting on my desktop for a while. It's a big list. Here's an excerpt:

&lt;ul&gt;
&lt;li&gt;love and hate. how do you explain them? what inspires them?&lt;/li&gt;
&lt;li&gt;humility and selflessness, and evil, sin, and pride&lt;/li&gt;
&lt;li&gt;knowledge, and wisdom&lt;/li&gt;
&lt;li&gt;what is god? christianity, spinoza/buddhism, hiduism, taoism and pantheism&lt;/li&gt;
&lt;li&gt;faith as something reassuring&lt;/li&gt;
&lt;li&gt;free will and determinism&lt;/li&gt;
&lt;li&gt;redemption and salvation&lt;/li&gt;
&lt;li&gt;suffering and misunderstanding&lt;/li&gt;
&lt;li&gt;epistemology: what is the foundation of logic? does every epistemology making a negative claim contradict itself? what axioms do we start with? do we take in everything, or a subset?&lt;/li&gt;
&lt;li&gt;desire&lt;/li&gt;
&lt;li&gt;can we overcome confirmation bias?&lt;/li&gt;
&lt;li&gt;what can we do? for the starving? the hurt? the egotistical?&lt;/li&gt;
&lt;li&gt;interdependence and independence: is one an illusion?&lt;/li&gt;
&lt;li&gt;do we have an essensce? why do we feel like we do?&lt;/li&gt;
&lt;li&gt;morality/shoulds/"supposed to". origins and humanism&lt;/li&gt;
&lt;li&gt;the nature of time. cosmological origins and the present (is time an illusion?)&lt;/li&gt;
&lt;li&gt;evolution&lt;/li&gt;
&lt;li&gt;the brain and consciousness&lt;/li&gt;
&lt;li&gt;government and anarchy&lt;/li&gt;
&lt;li&gt;originality and newness&lt;/li&gt;
&lt;li&gt;naivete and optimism&lt;/li&gt;
&lt;li&gt;sincerity&lt;/li&gt;
&lt;li&gt;do people change? what causes people to change?&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-2696178529180815275?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/2696178529180815275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=2696178529180815275' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2696178529180815275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/2696178529180815275'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/08/eternal-questions.html' title='The Eternal Questions'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-6188028057292251223</id><published>2008-08-17T23:22:00.000-04:00</published><updated>2010-06-13T21:57:45.849-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mortality'/><title type='text'>One Rule</title><content type='html'>You may&lt;br/&gt;
grow&lt;br/&gt;
barter&lt;br/&gt;
buy&lt;br/&gt;
inherit&lt;br/&gt;
anything&lt;br/&gt;
except&lt;br/&gt;
time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-6188028057292251223?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/6188028057292251223/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=6188028057292251223' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6188028057292251223'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/6188028057292251223'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/08/one-rule.html' title='One Rule'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-7908135102322625786</id><published>2008-07-16T16:38:00.000-04:00</published><updated>2010-06-13T21:57:45.864-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='nature'/><title type='text'>The Earth has a Rash</title><content type='html'>&lt;img src="http://www.nightskynation.com/pics/earth-at-night.jpg" alt="North America at night"/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-7908135102322625786?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/7908135102322625786/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=7908135102322625786' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7908135102322625786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/7908135102322625786'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/07/earth-has-rash.html' title='The Earth has a Rash'/><author><name>Kyle</name><uri>http://www.blogger.com/profile/15336246897173047011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_cW3PDUfh7bo/SpgIgAa-KXI/AAAAAAAAAAM/3vU1pRw5ZhA/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33892275.post-3681809386278364724</id><published>2008-07-01T18:39:00.002-04:00</published><updated>2008-07-01T18:42:44.957-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><title type='text'>Most Spam Ever</title><content type='html'>&lt;p&gt;Make a mission out of receiving spam. Distribute an email address all around the internet. Register with as many forums as possible, and make your profile public. Ask people to forward spam to you, and write to the original address indicating you would like to receive their notifications.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33892275-3681809386278364724?l=erraticsemaphore.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erraticsemaphore.blogspot.com/feeds/3681809386278364724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33892275&amp;postID=3681809386278364724' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3681809386278364724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33892275/posts/default/3681809386278364724'/><link rel='alternate' type='text/html' href='http://erraticsemaphore.blogspot.com/2008/07/most-spam-ever.html' title='Most Spam Ever'/><author><name>Kyle</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_JtlOZnvA-MI/SpgKEvSrS9I/AAAAAAAAABc/CkAjGsSMcL8/S220/kyle-mcdonald.jpg'/></author><thr:total>0</thr:total></entry></feed>
