<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<title>quoteunquote | anil bawa cavia</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/" />
<modified>2008-05-11T11:17:52Z</modified>
<tagline>I build social software for Last.fm. Based in Hackney, London.</tagline>
<id>tag:www.quotesque.net,2008:/blog//8</id>
<generator url="http://www.movabletype.org/" version="3.2">Movable Type</generator>
<copyright>Copyright (c) 2008, anil</copyright>
<entry>
<title>century</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/05/century.html" />
<modified>2008-05-11T11:17:52Z</modified>
<issued>2008-05-11T10:49:00Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.842</id>
<created>2008-05-11T10:49:00Z</created>
<summary type="text/plain"> Century is almost definitely the best &apos;introduction&apos; to the philosophy of Alain Badiou. 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...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Publishing</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>AS#Enumerable</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/05/asenumerable.html" />
<modified>2008-05-05T20:03:34Z</modified>
<issued>2008-05-05T17:44:31Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.841</id>
<created>2008-05-05T17:44:31Z</created>
<summary type="text/plain">ul.methods { list-style-type:none; list-style-position:inside; } .content ul.methods li { display:inline; } AS#Enumerable is a port of the Ruby Enumerable API for Actionscript 2.0. It provides the following enumerable methods for use in your flash applications: all, any, collect, detect, each,...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Software</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>another thought</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/04/another_thought.html" />
<modified>2008-04-27T20:58:48Z</modified>
<issued>2008-04-27T20:45:26Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.840</id>
<created>2008-04-27T20:45:26Z</created>
<summary type="text/plain"> Arthur Russell - Another Thought (Keeping Up)...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Music</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>#last.fm</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/04/lastfm_4.html" />
<modified>2008-04-24T18:23:54Z</modified>
<issued>2008-04-24T18:20:57Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.839</id>
<created>2008-04-24T18:20:57Z</created>
<summary type="text/plain">[7:02pm] alex: Haskell users are all pretty nuts. [7:02pm] johan: when the revolution comes they&apos;re first up against the wall [7:02pm] alex: johan: Actually, they won&apos;t. [7:02pm] alex: Haskell does not guarantee execution order....</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Development</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>tropisms (part II)</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/04/tropisms_part_i.html" />
<modified>2008-04-20T14:14:43Z</modified>
<issued>2008-04-20T11:24:07Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.838</id>
<created>2008-04-20T11:24:07Z</created>
<summary type="text/plain"> The second release in our series of Tropisms is now available as a high quality download. This one contains the next three Tropisms. Download it here....</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Media</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>takashi homma</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/04/takashi_homma.html" />
<modified>2008-04-06T11:02:21Z</modified>
<issued>2008-04-06T10:35:31Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.837</id>
<created>2008-04-06T10:35:31Z</created>
<summary type="text/plain"> Above: Spread from &apos;Tokyo and my Daughter&apos;. Below: Images from &apos;Tokyo Suburbia&apos; Takashi Homma is a japanese photographer. I really like &apos;Tokyo And My Daughter&apos; and &apos;Tokyo Suburbia&apos;. He&apos;s about to publish a volume which aggregates a selection of...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Design</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>tomita</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/04/tomita.html" />
<modified>2008-04-02T08:23:46Z</modified>
<issued>2008-04-02T08:21:46Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.836</id>
<created>2008-04-02T08:21:46Z</created>
<summary type="text/plain"> Tomita does synth-debussy. Top....</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Design</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>physics-sun</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/03/physicssun.html" />
<modified>2008-03-29T10:06:00Z</modified>
<issued>2008-03-29T10:04:17Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.835</id>
<created>2008-03-29T10:04:17Z</created>
<summary type="text/plain"> &quot;Physics-Sun&quot; Scientific Production Union in Parkent, Uzbekistan (photo by pluvialis)...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Design</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>daydream nation</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/03/daydream_nation.html" />
<modified>2008-03-23T12:20:03Z</modified>
<issued>2008-03-23T12:19:21Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.834</id>
<created>2008-03-23T12:19:21Z</created>
<summary type="text/plain"></summary>
<author>
<name>anil</name>

</author>
<dc:subject>Music</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>fugue</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/03/fugue.html" />
<modified>2008-03-16T12:07:21Z</modified>
<issued>2008-03-16T11:54:28Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.833</id>
<created>2008-03-16T11:54:28Z</created>
<summary type="text/plain"> - Josef Albers, Fugue (about 1925) - Henri Nouveau, plastic representation of the Fugue in E Flat Minor by JS Bach, 1928 I&apos;m consistently drawn to expressions of music in other media. Here&apos;s two expressions of the structural properties...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Architecture</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>heartbreak</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/03/heartbreak.html" />
<modified>2008-03-15T14:18:05Z</modified>
<issued>2008-03-15T14:09:17Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.832</id>
<created>2008-03-15T14:09:17Z</created>
<summary type="text/plain"> Heartbreak live @ Bethnal Green Working Men&apos;s Club (Last.fm presents), photo by Russ. Just perfect....</summary>
<author>
<name>anil</name>

</author>
<dc:subject>London</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>beck</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/03/beck.html" />
<modified>2008-03-13T10:40:56Z</modified>
<issued>2008-03-13T10:36:35Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.831</id>
<created>2008-03-13T10:36:35Z</created>
<summary type="text/plain"> it&apos;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&apos;s programming more like a writer would write, than just thinking...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Software</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>babel</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/03/babel.html" />
<modified>2008-03-08T17:49:43Z</modified>
<issued>2008-03-08T17:44:12Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.830</id>
<created>2008-03-08T17:44:12Z</created>
<summary type="text/plain"> The certitude that everything has been written annuls us or turns us into phantoms. - Jorge Luis Borges, The Library of Babel (full text) One of my favourite short stories....</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Culture</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>primates</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/03/primates.html" />
<modified>2008-03-08T17:48:45Z</modified>
<issued>2008-03-08T11:17:58Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.829</id>
<created>2008-03-08T11:17:58Z</created>
<summary type="text/plain"> I’ve been thinking: let’s rate our technologies for how much they help us as primates, 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...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Architecture</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>
<entry>
<title>craftsman</title>
<link rel="alternate" type="text/html" href="http://www.quotesque.net/blog/archives/2008/03/craftsman_1.html" />
<modified>2008-03-06T13:38:05Z</modified>
<issued>2008-03-06T13:35:24Z</issued>
<id>tag:www.quotesque.net,2008:/blog//8.828</id>
<created>2008-03-06T13:35:24Z</created>
<summary type="text/plain"> Sennett describes craftsmanship as &quot;an enduring, basic human impulse, the desire to do a job well for its own sake&quot;. It&apos;s a great topic, which has come to my mind a lot with respect to software design. I have...</summary>
<author>
<name>anil</name>

</author>
<dc:subject>Software</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.quotesque.net/blog/">
<![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>]]>

</content>
</entry>

</feed>