<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Steve Cooper</title>
	<atom:link href="http://www.stevecooper.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stevecooper.org</link>
	<description>Programming, writing, programming about writing.</description>
	<pubDate>Sat, 16 Jan 2010 21:44:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8216;This&#8217; in Javascript and C#</title>
		<link>http://www.stevecooper.org/2010/01/16/this-in-javascript-and-csharp/</link>
		<comments>http://www.stevecooper.org/2010/01/16/this-in-javascript-and-csharp/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 21:44:17 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/?p=159</guid>
		<description><![CDATA[I noticed something today while learning jQuery, and that&#8217;s the way the keyword this differs between C# and JavaScript. It suprised me when I saw some javascript that looked like;

01 $(document).ready(function() { 
02   $('div').each(function() { 
03     this.style.color = 'blue'; 
04   });
05 ));


and I realised that this wouldn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I noticed something today while learning jQuery, and that&#8217;s the way the keyword <code>this</code> differs between C# and JavaScript. It suprised me when I saw some javascript that looked like;</p>

<pre><code>01 $(document).ready(function() { 
02   $('div').each(function() { 
03     this.style.color = 'blue'; 
04   });
05 ));
</code></pre>

<p>and I realised that this wouldn&#8217;t work in C# &#8212; at least, not the same way it works in JavaScript. In the JavaScript above, the <code>this</code> on like 03 refers to each <code>div</code> element that&#8217;s being iterated over.</p>

<p>Now consider similar C# code;</p>

<pre><code>class Document
{
   List&lt;DOMElement&gt; divList = ...;

   void Ready()
   {
      divs.foreach(delegate () { 
        this.style.color = "blue";
      });
   }
}
</code></pre>

<p>In C#, <code>this</code> doesn&#8217;t refer to the div, but to the Document class.</p>

<p>In both pieces of code, we&#8217;re creating a function with a reference to <code>this</code>, but they mean different things;</p>

<ul>
<li>In C#, <code>this</code> means <code>the object that declares the function</code></li>
<li>In JS, <code>this</code> means <code>the object the function is being invoked on.</code></li>
</ul>

<p>To see the difference, realize that you can attach the same function to two different javascript objects, and you&#8217;ll see <code>this</code> referring to each one in turn. Here&#8217;s a piece of javascript to illustrate;</p>

<pre><code>var func = function() { 
  alert(this.name); 
}

var obj1 = { 'name': 'first object', 'func': func };
var obj2 = { 'name': 'second object', 'func': func };

obj1.func();
obj2.func();
</code></pre>

<p>When you run this; you get two alerts: <code>first object</code> and <code>second object</code>. But when you run this in C#</p>

<pre><code>Action func = delegate() {
  MessageBox.Show(this.GetHashCode());
};

var obj1 = new { func = func };
var obj2 = new { func = func };

obj1.func();
obj2.func();
</code></pre>

<p>You see the same hashcode in both message boxes. It&#8217;s the hashcode of the object that contains this method.</p>

<p>So. Don&#8217;t confuse the meaning of <code>this</code> in C# and JavaScript. They are very different beasts.</p>

<p>Now, if you want C#&#8217;s semantics in Javascript, you have to take account of this behaviour. With my C# head on, I was tempted to understand &#8216;<code>this</code>&#8216; as a <em>variable name</em>, but it isn&#8217;t. It&#8217;s a keyword, and not a variable name. To make it work like C#, you need to create a <em>real</em> variable, and use the variable in the function. Like so;</p>

<pre><code>var outerThis = this; // declare a real variable
func = function() { alert(outerThis.name); } 
</code></pre>

<p>And this will give you C# semantics in Javascript.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=%27%3BThis%27+in+Javascript+and+C%23+http://956sn.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=%27%3BThis%27+in+Javascript+and+C%23+http://956sn.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2010/01/16/this-in-javascript-and-csharp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bonfires and Bon Jovi</title>
		<link>http://www.stevecooper.org/2009/11/05/york-maze-fireworks/</link>
		<comments>http://www.stevecooper.org/2009/11/05/york-maze-fireworks/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 20:16:35 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/2009/11/05/york-maze-fireworks/</guid>
		<description><![CDATA[Huge firework display, candy floss, and an eighties medley. Perfect.


 Tweet This Post]]></description>
			<content:encoded><![CDATA[<p>Huge firework display, candy floss, and an eighties medley. Perfect.</p>

<p><a href="http://www.stevecooper.org/wp-content/uploads/2009/11/p-2048-1536-5739b2bc-da33-46d5-92dd-daf0bdb2bfbe.jpeg" rel="lightbox[157]"><img src="http://www.stevecooper.org/wp-content/uploads/2009/11/p-2048-1536-5739b2bc-da33-46d5-92dd-daf0bdb2bfbe.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Bonfires+and+Bon+Jovi+http://nt9ei.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Bonfires+and+Bon+Jovi+http://nt9ei.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/11/05/york-maze-fireworks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IPhone app review: RedLaser</title>
		<link>http://www.stevecooper.org/2009/10/12/iphone-app-review-redlaser/</link>
		<comments>http://www.stevecooper.org/2009/10/12/iphone-app-review-redlaser/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 21:43:52 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/2009/10/12/iphone-app-review-redlaser/</guid>
		<description><![CDATA[This is a capsule review of the iPhone app, RedLaser. It&#8217;s a barcode-scanning application which looks up scanned products on amazon and google. In short; start the app, point your phone at the barcode, get online price comparisons.

The app is extremely simple to use, and cheap, too. It can save you money in a purchase [...]]]></description>
			<content:encoded><![CDATA[<p>This is a capsule review of the iPhone app, <a href="http://www.redlaser.com/">RedLaser</a>. It&#8217;s a barcode-scanning application which looks up scanned products on amazon and google. In short; start the app, point your phone at the barcode, get online price comparisons.</p>

<p>The app is extremely simple to use, and cheap, too. It can save you money in a purchase or two. I used it at Borders the other day, scanned a book, and found a copy six quid cheaper somewhere else online. Since the app costs less than two quid, it&#8217;s a great little moneysaver. It also acts as a nice &#8216;outboard memory,&#8217; storing a list which can form a wishlist. Scan in books you want to remember, and it&#8217;ll keep the list and let you email it off.</p>

<p>Because it uses amazon amd google product search, it doesn&#8217;t work well with things that are very cheap, or own-brand products. I wondered if I could use it as a shopping list (scan stuff as it runs out) but, well, no-one sells paxo stuffing on the Internet, so no dice.</p>

<p>What it seems to excel at is products that make good presents; books, DVDs, xbox games, and board games all worked well. I think I will be using it for my own christmas wishlist, and for keeping track of presents for friends and family.</p>

<p>PS: a little tip. I had a couple of books fail to scan properly, until I noticed that the books had <em>two</em> adjascent barcodes. Cover up the smaller one with your thumb and it&#8217;ll work perfectly.</p>

<p><a href="http://www.stevecooper.org/wp-content/uploads/2009/10/p-480-320-6edfdf25-1dc7-4690-8262-7bcf19932be4.jpeg" rel="lightbox[155]"><img src="http://www.stevecooper.org/wp-content/uploads/2009/10/p-480-320-6edfdf25-1dc7-4690-8262-7bcf19932be4.jpeg" alt="" width="200" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=IPhone+app+review%3A+RedLaser+http://hresi.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=IPhone+app+review%3A+RedLaser+http://hresi.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/10/12/iphone-app-review-redlaser/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My derren brown sletches</title>
		<link>http://www.stevecooper.org/2009/09/25/my-derren-brown-sletches/</link>
		<comments>http://www.stevecooper.org/2009/09/25/my-derren-brown-sletches/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 20:28:09 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/2009/09/25/my-derren-brown-sletches/</guid>
		<description><![CDATA[Here they are before the reveal. Let&#8217;s see how close I got&#8230;



Also added Clare&#8217;s image;




 Tweet This Post]]></description>
			<content:encoded><![CDATA[<p>Here they are before the reveal. Let&#8217;s see how close I got&#8230;</p>

<p><a href="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-c5dd244d-6ca4-4e56-9056-432c6c84ac34.jpeg" rel="lightbox[142]"><img src="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-c5dd244d-6ca4-4e56-9056-432c6c84ac34.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a><br /><br /><a href="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-f2df9a36-0759-492d-a0a3-6caa07a3ab14.jpeg" rel="lightbox[142]"><img src="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-f2df9a36-0759-492d-a0a3-6caa07a3ab14.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a><br /><br /><a href="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-dfee40fa-2c45-4017-9da9-e4a96f9dde23.jpeg" rel="lightbox[142]"><img src="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-dfee40fa-2c45-4017-9da9-e4a96f9dde23.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a><br /><br /><a href="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-280689e3-fc11-442d-8459-bfa1516e9b37.jpeg" rel="lightbox[142]"><img src="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-280689e3-fc11-442d-8459-bfa1516e9b37.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>

<p>Also added Clare&#8217;s image;</p>

<p><a href="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-0e240009-d9e5-424c-b415-9399c0729759.jpeg" rel="lightbox[142]"><img src="http://www.stevecooper.org/wp-content/uploads/2009/09/l-2048-1536-0e240009-d9e5-424c-b415-9399c0729759.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>

<p><a href="http://www.stevecooper.org/wp-content/uploads/2009/09/p-2048-1536-d1c50445-95f9-47c2-8780-ed359f82438a.jpeg" rel="lightbox[142]"><img src="http://www.stevecooper.org/wp-content/uploads/2009/09/p-2048-1536-d1c50445-95f9-47c2-8780-ed359f82438a.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=My+derren+brown+sletches+http://d3efm.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=My+derren+brown+sletches+http://d3efm.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/09/25/my-derren-brown-sletches/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grammar Rant #1: &#8216;More Unique&#8217;</title>
		<link>http://www.stevecooper.org/2009/09/01/grammar-rant-1-more-unique/</link>
		<comments>http://www.stevecooper.org/2009/09/01/grammar-rant-1-more-unique/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 11:42:15 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/?p=131</guid>
		<description><![CDATA[With a title like that, you may expect me to rant about the terrible phrase &#8216;more unique,&#8217; and why you should never use it. It&#8217;s one of those long-held orthodoxies about English that &#8216;more unique&#8217; is illogical, because something is either unique, or it isn&#8217;t, and thus &#8216;more unique&#8217; is nonsense. The same advice holds [...]]]></description>
			<content:encoded><![CDATA[<p>With a title like that, you may expect me to rant about the terrible phrase &#8216;more unique,&#8217; and why you should never use it. It&#8217;s one of those long-held orthodoxies about English that &#8216;more unique&#8217; is illogical, because something is either unique, or it isn&#8217;t, and thus &#8216;more unique&#8217; is nonsense. The same advice holds for absolutes like &#8216;perfect,&#8217; &#8216;full,&#8217; or &#8216;fatal&#8217;. (Various examples; <a href="http://en.wikipedia.org/wiki/Comparison_%28grammar%29">Wikipedia</a>, <a href="http://www.drgrammar.org/faqs/#53">Dr Grammar</a>, <a href="http://grammar.quickanddirtytips.com/modifying-absolutes.aspx">Grammar Girl</a>)</p>

<p>This isn&#8217;t true. There are times when you can use the phrase, and this post covers those situations.</p>

<p>Uniqueness describes how one thing in a group has a property exhibited by no other; &#8216;the only left-handed pupil in the class,&#8217; or &#8216;the only green apple in the orchard.&#8217; Uniqueness always exists within a set of things. In the preceding examples, pupils in a class or apples in an orchard. That set of things, however, may be part of a larger set. A class of pupils is part of a school, a district, and all the kids of the same age. Sets of apples may be found in baskets, orchards, or supermarkets.</p>

<p>When you move from comparing a small set to a larger set, you find that the rules of uniqueness change. Left-handedness may be unique in a class but not in a school. Blue eyes may be unique in a family of brown-eyed children, but red eyes may be unique within a much larger grouping (for example, from rare cases of <a href="http://en.wikipedia.org/wiki/Albinism">albinism</a>)</p>

<p>When you shift from a small set to a larger set, then, the rules of comparison change; in doing so, the phrase &#8216;more unique&#8217; reflects a <em>new kind of uniqueness</em> &#8212; uniqueness in the larger set. So it becomes reasonable, though not very stylish, to say;</p>

<blockquote>
  <p>No-one in the family had blue eyes except John, but Jane&#8217;s more unique red eyes entranced him.</p>
</blockquote>

<p>or</p>

<blockquote>
  <p>Every child in the race had already won the blue ribbon for being the fastest in their class, but now they were competing for the prestigious and far more unique Flanders Cup, awarded to the fastest of the fast.</p>
</blockquote>

<p>So, in summary; if the set changes from a small to a large, &#8216;more unique&#8217; makes logical sense, and means &#8216;unique within the larger set.&#8217;</p>

<p>Of course, the main reason to challenge any orthodoxy is when it impedes eloquence. While <a href="http://englishhistory.net/keats/poetry/odeonagrecianurn.html">Truth is beauty and beauty truth</a>, <em>beauty should always be allowed to win</em>.  Otherwise we would never have this;</p>

<blockquote>
  <p>We the People of the United States, in Order to form a <a href="http://en.wikipedia.org/wiki/Preamble_to_the_United_States_Constitution">more perfect Union</a>, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America.</p>
</blockquote>

<p>Which is a glorious sentence. Fie upon those who would have us write &#8216;in Order to form a better union.&#8217;</p>

<p>I may tackle other orthodoxies in the future. Stay tuned.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Grammar+Rant+%231%3A+%27%3BMore+Unique%27+http://s7ygm.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Grammar+Rant+%231%3A+%27%3BMore+Unique%27+http://s7ygm.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/09/01/grammar-rant-1-more-unique/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fantasia on a theme by Samuel Delaney</title>
		<link>http://www.stevecooper.org/2009/08/28/fantasia-on-a-theme-by-samuel-delaney/</link>
		<comments>http://www.stevecooper.org/2009/08/28/fantasia-on-a-theme-by-samuel-delaney/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 00:38:45 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/?p=129</guid>
		<description><![CDATA[This year, my long-time friend Derek Muir attended the Clarion writer&#8217;s workshop. One thing he brought back was an essay called &#8216;Thickening the Plot&#8217; by Samuel R Delaney, who had been an instructor at Clarion in the 70s. I bought the larger book that contains it &#8212; &#8216;About Writing: 7 essays, 4 letters, and 5 [...]]]></description>
			<content:encoded><![CDATA[<p>This year, my long-time friend Derek Muir attended the Clarion writer&#8217;s workshop. One thing he brought back was <a href="http://books.google.co.uk/books?id=FYD26bt8Wz0C&amp;pg=PA69&amp;lpg=PA69&amp;dq=delaney+thickening+the+plot&amp;source=bl&amp;ots=3REApfQal-&amp;sig=FCXanSN7dkRhIgmpa-C7ce-Jrm8&amp;hl=en&amp;ei=6AeXSu6UK9KNjAfZg_iQDQ&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=1#v=onepage&amp;q=&amp;f=false">an essay called &#8216;Thickening the Plot&#8217;</a> by Samuel R Delaney, who had been an instructor at Clarion in the 70s. I bought the larger book that contains it &#8212; &#8216;About Writing: 7 essays, 4 letters, and 5 interviews.&#8217;</p>

<p>It&#8217;s a wonderful book. In the essay that follows, I have taken some of his ideas, mixed in my own interpretations and thoughts, and generally corrupted and polluted his work to create my own synthesis. What follows, then, should not be taken as his views, but my own.</p>

<p>In the introduction to the book, Samuel R Delaney makes a distinction between three levels of literary skill: those who can&#8217;t write, good writers, and talented writers. The first group is basically most people; not illiterate, but people who have neither inclination nor aptitude nor necessity.  The next group &#8212; good writers &#8212; are those who can write grammatically, want to put down fiction, and may have done so. We can imagine that maybe they have done well during English lessons at school and were told they were better than their peers, or had been encouraged by parents. They are probably avid readers. The talented group are people with something extra beyond competence and desire.</p>

<p>It&#8217;s the middle group &#8212; the good writers &#8212; who produce generally poor fiction. How could they not? Who else produces it? Certainly not the non-writers, because they aren&#8217;t producing anything, and not the talented, because their stuff is the really good fiction. For me, it was counterintuitive that competent writers are &#8212; must be &#8212; responsible for bad fiction. Now that that idea is in my head, I can&#8217;t seem to shake it.</p>

<p>Delaney writes:</p>

<p>&#8220;However paradoxical it sounds, <em>good writing</em> as a set of strictures (that is, when the writing is good and nothing more) produces most bad fiction. On one level or another, the realization of this is finaly what turns most writes away from writing. <em>Talented writing</em> is, however, something else. You need talent to write fiction.&#8221;</p>

<p>If you can string a sentence together, but you know you&#8217;re not writing to the same standard as the authors of the great classics &#8212; authors like Milton, Austen, Dickens, Melville, Hemingway, Lovecraft, Orwell &#8212; then you are a Good Writer. And you are probably producing dross.</p>

<p>This comparison with the greatest authors of all time should loom over you and oppress your soul. You must be crushed down by the weight of a thousand masterpieces, each one pressing upon your soul and leaving you awestruck. Then, you must take these great works and absorb them, read them to find their secrets, learning from them what you need to first do as well as them, and then surpass them. Without the visceral, breathless need to reach the very pinnacle of excellence, and without the knowledge of what constitutes that pinnacle, chances are you will not succeed.</p>

<p>Why must you strive to reach so high? Isn&#8217;t it enough to be merely good? No. Here&#8217;s why.</p>

<p>Let&#8217;s imagine you&#8217;re a science fiction writer, and you want to write novels, have them published, and see them sell. What you want specifically is this; you want your novel shelved alongside <em>Neuromancer</em> and <em>1984</em> and <em>The Hitchhiker&#8217;s Guide to the Galaxy</em> and <em>The Moon is a Harsh Mistress</em>. You want me to flick through all these books, and yours, and for me to put those books back on the shelf and take yours to the tills. Well, then you&#8217;d better write better cyberpunk than Bill Gibson, or better distopias that George Orwell, or I&#8217;ll just buy their books instead. You must aspire to beat the best authors in history at their own game; you are in competition with them. It is not viable to attempt anything less.</p>

<p>For myself, I imagine some avid reader, entering a bookshop and glancing, by chance, at the spine of my book, shelved there under &#8216;Cooper&#8217;. Just to the left are books by C.J Cherryh and Orson Scott Card. To the right, Samuel Delaney and Philip K. Dick. <em>Even while staring at my book,</em> his peripheral vision hits four Hugo-award winning novels. When he reaches out his hand to pick up my book, with the smallest twitch his fingers brush <em>Ender&#8217;s Game</em> and <em>Do Androids Dream of Electric Sheep?</em>.</p>

<p>My book has to be very good indeed to make that sale.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Fantasia+on+a+theme+by+Samuel+Delaney+http://i265z.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Fantasia+on+a+theme+by+Samuel+Delaney+http://i265z.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/08/28/fantasia-on-a-theme-by-samuel-delaney/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Dark Matter of Writing</title>
		<link>http://www.stevecooper.org/2009/08/21/the-dark-matter-of-writing/</link>
		<comments>http://www.stevecooper.org/2009/08/21/the-dark-matter-of-writing/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 23:13:31 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/?p=126</guid>
		<description><![CDATA[I just did an on-line typing speed test, and it turns out I managed 54 words per minute. Which made me wonder &#8212; at that speed, how much time would it take me to get a novel written? If I could operate at that rate while writing fiction, what could I get done?

Turns out 24 [...]]]></description>
			<content:encoded><![CDATA[<p>I just did an on-line typing speed test, and it turns out I managed 54 words per minute. Which made me wonder &#8212; at that speed, how much time would it take me to get a novel written? If I could operate at that rate while writing fiction, what could I get done?</p>

<p>Turns out 24 hours of typing at that speed gets 78,000 words down on paper. That&#8217;s a good sized novel, in 24 hours.</p>

<p>Now, if you can actually type out the contents of a novel in 24 hours, what does it mean when someone says they spent 6 months writing a novel? Because it certainly doesn&#8217;t mean they spent six months typing. (Butt on seat for two hours a day, that&#8217;d be about a million words.)</p>

<p>In fact, it makes you wonder why we call it &#8216;writing&#8217; in the first place. There may have been a time, I suppose, back when we pressed styluses into clay, when the content we were writing was simple and the process of making marks was laborious. Back then it was reasonable to say we were spending our time writing. But that&#8217;s not so any more. With a comfortable word processor, getting words down is trivial. So calling ourselves &#8216;writers&#8217; is perhaps disingenuous. What we&#8217;re doing isn&#8217;t writing &#8212; can&#8217;t be, or we&#8217;d be finished much sooner. People would comfortably knock out a novel in a weekend. The bulk of the activity has to be something else; imagining, maybe? daydreaming?</p>

<p>This is one of those posts where I don&#8217;t have the answers, but I hope an interesting question. Like dark matter, the real activities of writing fiction are somewhat invisible to us, but constitute the vast majority of the whole. Because from the outside we just look like we&#8217;re typing, what we do is called writing. But I feel that might be like calling the act of driving &#8217;seatbelt-wearing.&#8217; Sure, you wear your seatbelt throughout the whole process, but that&#8217;s not where your attention is. It&#8217;s not what you&#8217;re doing.</p>

<p>So there are some consequences. If writing time is trivial, then any idea which uses the word &#8216;writing&#8217; to describe fiction-creation is literally incorrect.</p>

<p>For example, a piece of advice handed down with great regularity is this; &#8216;write every day.&#8217; Is it because the act of committing words is important <em>per se</em>? No . The other &#8216;dark matter&#8217; fiction-making activities must be engaged on a regular basis. &#8216;Write every day&#8217; gets us sitting down and our heads running the processes that create scenes and characters and drama.</p>

<p>What&#8217;s worth considering, then &#8212; what constitutes story-making and literature-creation &#8212; is a series of processes, mostly mental, mostly transitory, the <em>final</em> process being the mechanical typing of words. I can think of three main processes;</p>

<ol>
<li>Imagine a scene in your story-world.</li>
<li>Convert the scene to language in your mind&#8217;s ear.</li>
<li>Transcribe the language onto paper or computer.</li>
</ol>

<p>But note how step 3, the writing, is the thing we&#8217;re urged to do. It&#8217;s backwards. We should be advised to daydream every day. We should be told to babble about what we see in our minds every day. I suppose it&#8217;s not surprising that we don&#8217;t hear this advice, but these things are the core processes of fiction.</p>

<p>I suppose what I&#8217;m looking for, after all this, is an understanding of the mental processes that make up fiction writing. And I don&#8217;t what it described in terms of the end results. &#8216;writing&#8217; creates written words. &#8216;characterisation&#8217; creates characters. &#8216;plotting&#8217; creates plot. But words, character, and plot are all artefacts, the output of something, and it doesn&#8217;t much help to just make nouns into verbs and talk about writing and characterisation and plotting. I want to talk, and think, about causes, the things that cause plot and cause character and cause language.</p>

<p>PS: It took me exactly 1 hour to write this post of 662 words. Which means only 20% of the time was taken by writing &#8212; 80% of the time taken was taken by these other processes.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=The+Dark+Matter+of+Writing+http://bti54.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=The+Dark+Matter+of+Writing+http://bti54.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/08/21/the-dark-matter-of-writing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Clare is now an MCTS, too!</title>
		<link>http://www.stevecooper.org/2009/08/10/clare-is-now-an-mcts-too/</link>
		<comments>http://www.stevecooper.org/2009/08/10/clare-is-now-an-mcts-too/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 14:36:09 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/?p=122</guid>
		<description><![CDATA[Clare has just passed her second exam, which means she now holds the same qualification I earned last week &#8212; she&#8217;s now a Microsoft Certified Technical Specialist in ASP.NET applications.

Go Clare!
 Tweet This Post]]></description>
			<content:encoded><![CDATA[<p>Clare has just passed her second exam, which means she now holds the same qualification <a href="http://www.stevecooper.org/2009/08/06/i-qualified-as-a-microsoft-certified-technical-specialist/">I earned last week</a> &#8212; she&#8217;s now a <a href="http://www.microsoft.com/learning/en/us/certification/cert-vstudio.aspx">Microsoft Certified Technical Specialist</a> in ASP.NET applications.</p>

<p>Go Clare!</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Clare+is+now+an+MCTS%2C+too%21+http://m9xfk.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Clare+is+now+an+MCTS%2C+too%21+http://m9xfk.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/08/10/clare-is-now-an-mcts-too/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Translation Party</title>
		<link>http://www.stevecooper.org/2009/08/08/translation-party/</link>
		<comments>http://www.stevecooper.org/2009/08/08/translation-party/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 23:34:08 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/?p=116</guid>
		<description><![CDATA[The rather marvellous Translation Party allows you to enter an english phrase, which gets translated to japanese, then back to english, then back to japanese, continuing until it reaches equilibrium. It&#8217;s fun.

Here&#8217;s the best I&#8217;ve found so far. Sorta explains the WWII war in the pacific;

pearl harbour is heavily defended
パールハーバー強く擁護され
Pearl Harbor is a strong advocate
真珠湾の強い支持者です
Pearl [...]]]></description>
			<content:encoded><![CDATA[<p>The rather marvellous <a href="http://translationparty.com/tp/">Translation Party</a> allows you to enter an english phrase, which gets translated to japanese, then back to english, then back to japanese, continuing until it reaches equilibrium. It&#8217;s fun.</p>

<p>Here&#8217;s the best I&#8217;ve found so far. Sorta explains the WWII war in the pacific;</p>

<p>pearl harbour is heavily defended<br />
パールハーバー強く擁護され<br />
Pearl Harbor is a strong advocate<br />
真珠湾の強い支持者です<br />
Pearl Harbor is a strong supporter of<br />
真珠湾攻撃の強力な支持者であること<br />
Be a strong supporter of the attack on Pearl Harbor<br />
真珠湾攻撃を強く支持して<br />
Strongly support the attack on Pearl Harbor<br />
真珠湾攻撃を強く支持<br />
Strongly supports the attack on Pearl Harbor<br />
真珠湾攻撃を強くサポートしています<br />
We strongly support the attack on Pearl Harbor</p>

<p>Some other good ones;</p>

<p>&#8220;better to rule in hell than serve in heaven&#8221;</p>

<blockquote>
  <p>We do recommend that you provide the rule of hell in heaven</p>
</blockquote>

<p>&#8220;and behold, a pale horse, and him that rode him was death&#8221;</p>

<blockquote>
  <p>He is a pale horse death</p>
</blockquote>

<p>&#8220;to be or not to be&#8221;</p>

<blockquote>
  <p>please.</p>
</blockquote>

<p>&#8220;cry havoc, and let slip the dogs of war&#8221;</p>

<blockquote>
  <p>Shouting, confused, throwing the dogs of war</p>
</blockquote>

<p>&#8220;shall I compare thee to a summer&#8217;s day?&#8221;</p>

<blockquote>
  <p>Summer 2006, any comparison of him?</p>
</blockquote>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Translation+Party+http://km5e6.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Translation+Party+http://km5e6.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/08/08/translation-party/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I Qualified as a Microsoft Certified Technical Specialist</title>
		<link>http://www.stevecooper.org/2009/08/06/i-qualified-as-a-microsoft-certified-technical-specialist/</link>
		<comments>http://www.stevecooper.org/2009/08/06/i-qualified-as-a-microsoft-certified-technical-specialist/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 15:42:01 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.stevecooper.org/?p=113</guid>
		<description><![CDATA[On tuesday I passed my MCTS exam in web development.

This is basically the certification that I can put a website together. I think I&#8217;m getting a bit of a taste for these qualifications&#8230;
 Tweet This Post]]></description>
			<content:encoded><![CDATA[<p>On tuesday I passed my MCTS exam in web development.</p>

<p><div id="attachment_112" class="wp-caption aligncenter" style="width: 371px"><img src="http://www.stevecooper.org/wp-content/uploads/2009/08/mcts.png" alt="MCTS logo" title="MCTS qualified" width="361" height="80" class="size-full wp-image-112" /><p class="wp-caption-text">MCTS logo</p></div></p>

<p>This is basically the certification that I can put a website together. I think I&#8217;m getting a bit of a taste for these qualifications&#8230;</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=I+Qualified+as+a+Microsoft+Certified+Technical+Specialist+http://58gby.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.stevecooper.org/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=I+Qualified+as+a+Microsoft+Certified+Technical+Specialist+http://58gby.th8.us" title="Post to Twitter">Tweet This Post</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.stevecooper.org/2009/08/06/i-qualified-as-a-microsoft-certified-technical-specialist/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
