<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>quoteunquote | anil bawa cavia</title>
<link>http://www.quotesque.net/blog/</link>
<description>I build social software for Last.fm. Based in Hackney, London.</description>
<language>en-us</language>
<copyright>Copyright 2008</copyright>
<lastBuildDate>Sun, 11 May 2008 10:49:00 +0000</lastBuildDate>
<pubDate>Mon, 12 May 2008 18:01:34 +0000</pubDate>
<generator>http://www.movabletype.org/?v=3.2</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs> 

<item>
<title>century</title>
<description><![CDATA[<p><img src="http://www.quotesque.net/images/century.jpg" width="500" height="500" /></p>

<p><a href="http://www.amazon.co.uk/Century-Alain-Badiou/dp/0745636322/ref=sr_1_1?ie=UTF8&s=books&qid=1210503319&sr=8-1" />Century</a> is almost definitely the best 'introduction' to the philosophy of <a href="http://en.wikipedia.org/wiki/Alain_Badiou">Alain Badiou</a>. Compiled from a set of lectures taking as their subject the 20th Century, it makes for some remarkable reading and gently introduces aspects of his wider philosophical vision. What I'm most struck by is the Lacanian influences and his ability to examine the Century in terms of what it <i>says about itself</i>. It's tantamount to the psychoanalysis of an epoch and illuminates his central thesis that the common thread behind the significant developments of the century is a <i>passion for the real</i> (where the 'real' takes a Lacanian meaning). His mathematically grounded ontology (based on <a href="http://en.wikipedia.org/wiki/Georg_Cantor">Cantor</a>-fuelled set theory), thoughts on multiplicity and Marxism are also subtly on display in these lectures.</p>

<p>Badiou is passionate, highly readable, succinct and immensely knowledgeable on the literature, visual art, poetry and politics of the Century. He makes seemingly simple, profound statements over and over again whilst examining <a href="http://en.wikipedia.org/wiki/Bertolt_Brecht">Brecht</a>, <a href="http://en.wikipedia.org/wiki/Andr%C3%A9_Breton">Breton</a>, <a href="http://en.wikipedia.org/wiki/Mao_Zedong">Mao</a>, <a href="http://en.wikipedia.org/wiki/Osip_Mandelstam">Mandelstam</a>, <a href="http://en.wikipedia.org/wiki/Paul_Celan">Celan</a>, <a href="http://en.wikipedia.org/wiki/St%C3%A9phane_Mallarm%C3%A9">Mallarme</a> and others. If you've trawled through your fair share of Derrida and Foucault, Badiou is a refreshing, brilliant counterpoint with an astoundingly complete and mature ontology of his own.  </p>

<p>I leave you with this drawing by Badiou himself, produced during a lecture entitled 'Truth procedure in politics':</p>

<p><ahref="http://upload.wikimedia.org/wikipedia/en/9/9a/Badiou-an_original_drawing.jpg"><img src="http://upload.wikimedia.org/wikipedia/en/9/9a/Badiou-an_original_drawing.jpg" width="500" border="0" /></a></p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/05/century.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/05/century.html</guid>
<category>Publishing</category>
<pubDate>Sun, 11 May 2008 10:49:00 +0000</pubDate>
</item>
<item>
<title>AS#Enumerable</title>
<description><![CDATA[<style type="text/css">ul.methods {
 list-style-type:none;
list-style-position:inside; 
}

.content ul.methods li {
 display:inline;
}
</style> AS#Enumerable is a port of the <a href="http://www.ruby-doc.org/core/classes/Enumerable.html">Ruby Enumerable API</a> for Actionscript 2.0. It provides the following enumerable methods for use in your flash applications:
                    <ul class="methods">
                   <li>
<a href="http://prototypejs.org/api/enumerable#method-all">all</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-any">any</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-collect">collect</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-detect">detect</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-each">each</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-find">find</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-findall">findAll</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-include">include</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-inject">inject</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-map">map</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-max">max</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-member">member</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-min">min</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-pluck">pluck</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-reject">reject</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-select">select</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-size">size</a>, </li>
                 <li>
<a href="http://prototypejs.org/api/enumerable#method-sortby">sortBy</a></li>
          </ul>
<p>It's provided as a subclass of the native Array object, but if you want all native Arrays to inherit the enumerable interface (a la Prototype) just add:<pre>Array.prototype = new Enumerable();</pre> to your Flash application. Some basic sample uses of Enumerable:</p>
<pre>var enum = [];
enum.push(0.2);
enum.push(0.3);
enum.each(function(item,index) {
  trace(item + ':' + index);
});
</pre>
(Using each for basic iteration).
<pre>var enum = [];
enum.push({value:'foo'});
enum.push({value:'bar'});
enum.push({value:'camp'});		
var item = enum.find(function(item,index) {
  return item.value == 'bar';
});
</pre>
(Using find to fetch an object from a collection).
<pre>var enum = [];
enum.push('foo');
enum.push('bar');
enum.push('camp');	
trace(Math.floor(enum.inject(0,function(strlen,string) {
	return strlen + string.length;
})/enum.size()));
</pre> 
(Using inject and size to fetch the average string length in a collection of strings).
<p>
Go ahead and <a href="/code/Enumerable.as">grab the source code</a>, which will find its permanent home at <a href="/code">/code</a>, should you want to check back.</p><p>
                See the <a href="http://prototypejs.org/api/enumerable">prototype enumerable API doc</a> for further documentation, as the usage examples are identical in Actionscript 2.0. Thanks to <a href="http://conio.net/">Sam Stephenson</a> of Prototype for the JS port.
            </p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/05/asenumerable.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/05/asenumerable.html</guid>
<category>Software</category>
<pubDate>Mon, 05 May 2008 17:44:31 +0000</pubDate>
</item>
<item>
<title>another thought</title>
<description><![CDATA[<p><object width="350" height="60" type="application/x-shockwave-flash" data="http://www.quotesque.net/media/lfmPlayer2.swf" id="lfmPlayer" name="lfmPlayer"><param name="quality" value="high"/><param name="wmode" value="transparent"/><param name="bgcolor" value="#FFF"/><param name="flashvars" value="resourceID=81260973&firstTrackName=Another Thought (Keeping Up)&firstArtistName=Arthur Russell"/><param name="allowscriptaccess" value="always"/><param name="swliveconnect" value="true"/></object></p>

<p><a href="http://www.last.fm/music/arthur russell">Arthur Russell</a> - Another Thought (Keeping Up)</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/04/another_thought.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/04/another_thought.html</guid>
<category>Music</category>
<pubDate>Sun, 27 Apr 2008 20:45:26 +0000</pubDate>
</item>
<item>
<title>#last.fm</title>
<description><![CDATA[<p>[7:02pm] alex: Haskell users are all pretty nuts.<br />
[7:02pm] johan: when the revolution comes they're first up against the wall<br />
[7:02pm] alex: johan: Actually, they won't.<br />
[7:02pm] alex: Haskell does not guarantee execution order.</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/04/lastfm_4.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/04/lastfm_4.html</guid>
<category>Development</category>
<pubDate>Thu, 24 Apr 2008 18:20:57 +0000</pubDate>
</item>
<item>
<title>tropisms (part II)</title>
<description><![CDATA[<p><a href="http://farm4.static.flickr.com/3150/2427731824_8822000960_o.jpg" title="Cacao - Tropisms (Part II)"><img src="http://farm4.static.flickr.com/3150/2427731824_401ef489a2.jpg" width="500" height="250" alt="Tropisms (Part II)" border="0" /></a></p>

<p>The second release in our series of Tropisms is now available as a high quality download. This one contains the next three Tropisms. <a href="/cacao">Download it here</a>.</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/04/tropisms_part_i.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/04/tropisms_part_i.html</guid>
<category>Media</category>
<pubDate>Sun, 20 Apr 2008 11:24:07 +0000</pubDate>
</item>
<item>
<title>takashi homma</title>
<description><![CDATA[<p><img src="http://www.quotesque.net/images/takashi3.jpg" width="500px" /><br />
<br /><br />
<img src="http://www.quotesque.net/images/takashi4.jpg" /><br />
<br /><br />
<i>Above: Spread from 'Tokyo and my Daughter'. Below: Images from 'Tokyo Suburbia'</i><br />
<p><br />
Takashi Homma is a japanese photographer. I really like '<A href="http://www.amazon.co.uk/Tokyo-My-Daughter-Takashi-Homma/dp/3905714108/ref=sr_1_9?ie=UTF8&s=books&qid=1207477917&sr=8-9">Tokyo And My Daughter</a>' and '<a href="http://www.amazon.co.uk/Tokyo-Suburbia-Takashi-Homma/dp/4771303444/ref=sr_1_6?ie=UTF8&s=books&qid=1207477917&sr=8-6">Tokyo Suburbia</a>'.  He's about to publish a volume which aggregates <a href="http://www.amazon.co.uk/Takashi-Homma-Tokyo/dp/1597110590/ref=sr_1_3?ie=UTF8&s=books&qid=1207479013&sr=8-3">a selection of his work on Tokyo to date</a>.<br />
</p></p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/04/takashi_homma.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/04/takashi_homma.html</guid>
<category>Design</category>
<pubDate>Sun, 06 Apr 2008 10:35:31 +0000</pubDate>
</item>
<item>
<title>tomita</title>
<description><![CDATA[<p><a href="http://www.flickr.com/photos/kontent/2373146163/" title="tomita by joanofarctan, on Flickr"><img src="http://farm3.static.flickr.com/2097/2373146163_9bc0f4db01.jpg" width="500" height="492" alt="tomita" border=")" /></a><br /></p>

<p><a href="http://flickr.com/photos/kontent/2373985758/sizes/l/" title="tomita by joanofarctan, on Flickr"><img src="http://farm3.static.flickr.com/2288/2373985758_be0d75f139.jpg" width="500" height="495" alt="tomita" border="0" /></a></p>

<p><a href="http://www.last.fm/music/Tomita">Tomita</a> does synth-<a href="http://www.last.fm/music/debussy">debussy</a>. Top.</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/04/tomita.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/04/tomita.html</guid>
<category>Design</category>
<pubDate>Wed, 02 Apr 2008 08:21:46 +0000</pubDate>
</item>
<item>
<title>physics-sun</title>
<description><![CDATA[<p><a href="http://flickr.com/photos/22988688@N00/221904120/in/set-72157594247148473"><img src="http://farm1.static.flickr.com/80/221904120_3894817435.jpg" border="0" /></a></p>

<p>"Physics-Sun" Scientific Production Union in Parkent, Uzbekistan (photo by <a href="http://flickr.com/photos/22988688@N00/">pluvialis</a>)</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/03/physicssun.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/03/physicssun.html</guid>
<category>Design</category>
<pubDate>Sat, 29 Mar 2008 10:04:17 +0000</pubDate>
</item>
<item>
<title>daydream nation</title>
<description><![CDATA[<p><a href="http://www.flickr.com/photos/kontent/2351606859/" title="sonic youth - daydream nation (russian edition) by joanofarctan, on Flickr"><img src="http://farm3.static.flickr.com/2104/2351606859_79ba91458d.jpg" width="500" height="500" alt="sonic youth - daydream nation (russian edition)" border="0" /></a></p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/03/daydream_nation.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/03/daydream_nation.html</guid>
<category>Music</category>
<pubDate>Sun, 23 Mar 2008 12:19:21 +0000</pubDate>
</item>
<item>
<title>fugue</title>
<description><![CDATA[<p><a href="http://www.flickr.com/photos/kontent/2336601477/" title="Josef Albers, Fugue by joanofarctan, on Flickr"><img src="http://farm3.static.flickr.com/2152/2336601477_1a8858263d.jpg" width="500" height="179" alt="Josef Albers, Fugue" border="0" /></a></p>

<p> <i>- Josef Albers, Fugue (about 1925)</i></p>

<p><a href="http://www.flickr.com/photos/kontent/2336601039/" title="Henri Nouveau, plastic representation of the Fugue in E Flat Minor by JS Bach by joanofarctan, on Flickr"><img src="http://farm4.static.flickr.com/3010/2336601039_81ec7717a5.jpg" width="411" height="500" alt="Henri Nouveau, plastic representation of the Fugue in E Flat Minor by JS Bach" border="0" /></a></p>

<p><i>- Henri Nouveau, plastic representation of the Fugue in E Flat Minor by JS Bach, 1928</i></p>

<p>I'm consistently drawn to expressions of music in other media. Here's two expressions of the structural properties of the Fugue from the Bauhaus period. </p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/03/fugue.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/03/fugue.html</guid>
<category>Architecture</category>
<pubDate>Sun, 16 Mar 2008 11:54:28 +0000</pubDate>
</item>
<item>
<title>heartbreak</title>
<description><![CDATA[<p><a href="http://www.flickr.com/photos/russss/2333085188/"><img src="http://farm3.static.flickr.com/2128/2333085188_650886c787.jpg" width="500" border="0" /></a></p>

<p><a href="http://www.last.fm/music/heartbreak">Heartbreak</a> live @ Bethnal Green Working Men's Club (Last.fm presents), photo by <a href="http://www.flickr.com/photos/russss/">Russ</a>. </p>

<p>Just perfect.<br />
</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/03/heartbreak.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/03/heartbreak.html</guid>
<category>London</category>
<pubDate>Sat, 15 Mar 2008 14:09:17 +0000</pubDate>
</item>
<item>
<title>beck</title>
<description><![CDATA[<blockquote>
it's not enough to just instruct a machine to do something that you need also to think about what will people read in what I write here, so it's programming more like a writer would write, than just thinking of a set of instructions for a machine.
</blockquote>

<p> - Kent Beck, <a href="http://www.infoq.com/interviews/beck-implementation-patterns">OOPSLA interview</a></p>

<p>Kent has been the biggest single influence on my programming.</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/03/beck.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/03/beck.html</guid>
<category>Software</category>
<pubDate>Thu, 13 Mar 2008 10:36:35 +0000</pubDate>
</item>
<item>
<title>babel</title>
<description><![CDATA[<blockquote>
The certitude that everything has been written annuls us or turns us into phantoms.
</blockquote>

<p> - Jorge Luis Borges, <a href="http://en.wikipedia.org/wiki/The_Library_of_Babel">The Library of Babel</a> (<a href="http://jubal.westnet.com/hyperdiscordia/library_of_babel.html">full text</a>)</p>

<p>One of my favourite short stories.</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/03/babel.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/03/babel.html</guid>
<category>Culture</category>
<pubDate>Sat, 08 Mar 2008 17:44:12 +0000</pubDate>
</item>
<item>
<title>primates</title>
<description><![CDATA[<blockquote>
I’ve been thinking: let’s rate our technologies for how much they help us as <em>primates</em>, rather than how they can put us further into this dream of being powerful gods who stalk around on a planet that doesn’t really matter to us.
</blockquote>

<p>- Kim Stanley Robinson, from an interview on bldgblg, <a href="http://bldgblog.blogspot.com/2007/12/comparative-planetology-interview-with.html">Comparative Planetology</a></p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/03/primates.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/03/primates.html</guid>
<category>Architecture</category>
<pubDate>Sat, 08 Mar 2008 11:17:58 +0000</pubDate>
</item>
<item>
<title>craftsman</title>
<description><![CDATA[<p><img src="http://ecx.images-amazon.com/images/I/416pAD%2BT0BL._SS500_.jpg" alt="Sennett - The Craftsman" /></p>

<p><a href="http://en.wikipedia.org/wiki/Richard_Sennett">Sennett</a> describes craftsmanship as "an enduring, basic human impulse, the desire to do a job well for its own sake". It's a great topic, which has come to my mind a lot with respect to software design. I have always viewed programming as a craft, amongst other things. There are reviews from  <a href="http://entertainment.timesonline.co.uk/tol/arts_and_entertainment/books/non-fiction/article3328493.ece"> The Times</a> & <a href="http://books.guardian.co.uk/review/story/0,,2254702,00.html">The Guardian</a>. I've ordered my copy. <a href="http://www.amazon.co.uk/Craftsman-Richard-Sennett/dp/0713998733/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1204809386&sr=8-1">Grab yours</a>.</p>]]></description>
<link>http://www.quotesque.net/blog/archives/2008/03/craftsman_1.html</link>
<guid>http://www.quotesque.net/blog/archives/2008/03/craftsman_1.html</guid>
<category>Software</category>
<pubDate>Thu, 06 Mar 2008 13:35:24 +0000</pubDate>
</item>


</channel>
</rss>