<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Deadpan Sincerity &#187; wishful thinking</title>
	<atom:link href="http://blog.deadpansincerity.com/category/wishful-thinking/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.deadpansincerity.com</link>
	<description>a weblog by david miller</description>
	<lastBuildDate>Fri, 09 Dec 2011 12:03:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Mercurial Hook to ensure issue references in Trac/Redmine</title>
		<link>http://blog.deadpansincerity.com/2011/06/mercurial-hook-to-ensure-issue-references-in-tracredmine/</link>
		<comments>http://blog.deadpansincerity.com/2011/06/mercurial-hook-to-ensure-issue-references-in-tracredmine/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 10:41:07 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[something's burning]]></category>
		<category><![CDATA[technical]]></category>
		<category><![CDATA[wishful thinking]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[hg]]></category>
		<category><![CDATA[hook]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[redmine]]></category>
		<category><![CDATA[trac]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=400</guid>
		<description><![CDATA[As much as I love the version control integration of the bug trackers I use (Redmine and Trac) I find myself forgetting to include the issue reference more often than I&#8217;d like to admit. Add to this the merry dance you have to go through to ammend commit messages in Mercurial and things get even [...]]]></description>
			<content:encoded><![CDATA[<p>As much as I love the version control integration of the bug trackers I use (<a href="http://www.redmine.org/">Redmine</a> and <a href="http://trac.edgewall.org/">Trac</a>) I find myself forgetting to include the issue reference more often than I&#8217;d like to admit.</p>
<p>Add to this the <a href="http://stackoverflow.com/questions/623052/how-to-edit-incorrect-commit-message-in-mercurial">merry dance</a> you have to go through to ammend commit messages in <a href="http://mercurial.selenic.com/">Mercurial</a> and things get even worse. (Oh how I&#8217;d love for hg to implement something similar to <a href="http://www.kernel.org/pub/software/scm/git/docs/git-commit.html">git&#8217;s</a> $ git commit &#8211;amend )</p>
<p>Hence, a Pre-transaction-commit hook for hg that will ask me if I&#8217;m sure I want to commit without an issue number. If want to commit anyway, it&#8217;s just two extra keystrokes, and saves a whole lot of rollback/apply nonsense.</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">os</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">re</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">subprocess</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">sys</span>
&nbsp;
<span style="color: #dc143c;">cmd</span> = <span style="color: #dc143c;">subprocess</span>.<span style="color: black;">Popen</span><span style="color: black;">&#40;</span><span style="color: black;">&#91;</span><span style="color: #483d8b;">'hg'</span>, <span style="color: #483d8b;">'log'</span>, <span style="color: #483d8b;">'-vr'</span>, <span style="color: #dc143c;">os</span>.<span style="color: black;">environ</span><span style="color: black;">&#91;</span><span style="color: #483d8b;">'HG_NODE'</span><span style="color: black;">&#93;</span><span style="color: black;">&#93;</span>,
                       stdout=<span style="color: #dc143c;">subprocess</span>.<span style="color: black;">PIPE</span><span style="color: black;">&#41;</span>.<span style="color: black;">communicate</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span>
msg = <span style="color: #dc143c;">cmd</span>.<span style="color: black;">split</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'description:'</span><span style="color: black;">&#41;</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span>
issue_regexes = <span style="color: black;">&#91;</span>
    <span style="color: #808080; font-style: italic;"># Trac</span>
    r<span style="color: #483d8b;">'#<span style="color: #000099; font-weight: bold;">\d</span>+'</span>,
    <span style="color: #808080; font-style: italic;"># Redmine</span>
    r<span style="color: #483d8b;">'fixes #<span style="color: #000099; font-weight: bold;">\d</span>+'</span>,
    r<span style="color: #483d8b;">'refs #<span style="color: #000099; font-weight: bold;">\d</span>+'</span>,
    <span style="color: black;">&#93;</span>
<span style="color: #ff7700;font-weight:bold;">if</span> <span style="color: #ff7700;font-weight:bold;">not</span> <span style="color: #008000;">filter</span><span style="color: black;">&#40;</span><span style="color: #ff7700;font-weight:bold;">lambda</span> x: <span style="color: #dc143c;">re</span>.<span style="color: black;">search</span><span style="color: black;">&#40;</span>x, msg<span style="color: black;">&#41;</span>, issue_regexes<span style="color: black;">&#41;</span>:
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;No issue ref or fix... message is:&quot;</span>
    <span style="color: #ff7700;font-weight:bold;">print</span> msg
    <span style="color: #dc143c;">sys</span>.<span style="color: black;">stdout</span>.<span style="color: black;">write</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;Continue? [y/n] &quot;</span><span style="color: black;">&#41;</span>
    resp = <span style="color: #008000;">raw_input</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>.<span style="color: black;">lower</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">if</span> resp == <span style="color: #483d8b;">'n'</span>:
        <span style="color: #dc143c;">sys</span>.<span style="color: black;">exit</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">9</span><span style="color: black;">&#41;</span></pre></div></div>

<p>Then add the following to your project&#8217;s .hg/hgrc:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #009900;">&#91;</span>hooks<span style="color: #009900;">&#93;</span>
pretxncommit <span style="color: #339933;">=</span> path<span style="color: #339933;">/</span>to<span style="color: #339933;">/</span>your<span style="color: #339933;">/</span>pretxncommit.<span style="color: #660066;">py</span></pre></div></div>

<p>Saving you endless embarrassment:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">davidmiller<span style="color: #000000; font-weight: bold;">@</span>pascal:~<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>buggy_repo$ hg commit <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;A context-less void&quot;</span>
No issue ref or fix... message is:
&nbsp;
A context-less void
&nbsp;
&nbsp;
&nbsp;
Continue? <span style="color: #7a0874; font-weight: bold;">&#91;</span>y<span style="color: #000000; font-weight: bold;">/</span>n<span style="color: #7a0874; font-weight: bold;">&#93;</span> n
transaction abort<span style="color: #000000; font-weight: bold;">!</span>
rollback completed
abort: pretxncommit hook exited with status <span style="color: #000000;">9</span></pre></div></div>

<p>Love regards etc</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2011/06/mercurial-hook-to-ensure-issue-references-in-tracredmine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mass buffer revert in emacs</title>
		<link>http://blog.deadpansincerity.com/2011/05/mass-buffer-revert-in-emacs/</link>
		<comments>http://blog.deadpansincerity.com/2011/05/mass-buffer-revert-in-emacs/#comments</comments>
		<pubDate>Sat, 21 May 2011 09:52:43 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[wishful thinking]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[hg]]></category>
		<category><![CDATA[lisp]]></category>
		<category><![CDATA[M-x]]></category>
		<category><![CDATA[vcs]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=441</guid>
		<description><![CDATA[One of the problems with doing branchy development in Emacs is that when you have lots of files open and then switch branches, the bufer contents stay on the previous branch. Thankfully Emacs will warn you that the file&#8217;s contents have changed before you edit/save the file, but calling M-x revert-buffer on lots of open [...]]]></description>
			<content:encoded><![CDATA[<p>One of the problems with doing branchy development in Emacs is that when you have lots of files open and then switch branches, the bufer contents stay on the previous branch. Thankfully Emacs will warn you that the file&#8217;s contents have changed before you edit/save the file, but calling M-x revert-buffer on lots of open files gets old very fast.</p>
<p>This being Emacs though, the natural solution to any irritation is to program your way out of it. M-x regexp-revert let&#8217;s you enter a regexp, and then reverts any buffer with a file location matching that regexp to the file&#8217;s current state on disk.</p>

<div class="wp_syntax"><div class="code"><pre class="lisp" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> regexp-revert <span style="color: #66cc66;">&#40;</span>regexp<span style="color: #66cc66;">&#41;</span>
  <span style="color: #ff0000;">&quot;Revert all buffers whose path matches regexp&quot;</span>
  <span style="color: #66cc66;">&#40;</span>interactive <span style="color: #ff0000;">&quot;sPath Regexp: &quot;</span><span style="color: #66cc66;">&#41;</span>
  <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">dolist</span> <span style="color: #66cc66;">&#40;</span>buffer <span style="color: #66cc66;">&#40;</span>buffer-<span style="color: #b1b100;">list</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>string-match-p regexp <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">or</span> <span style="color: #66cc66;">&#40;</span>buffer-file-<span style="color: #b1b100;">name</span> buffer<span style="color: #66cc66;">&#41;</span> <span style="color: #ff0000;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">progn</span>
          <span style="color: #66cc66;">&#40;</span>set-buffer buffer<span style="color: #66cc66;">&#41;</span>
          <span style="color: #66cc66;">&#40;</span>revert-buffer <span style="color: #b1b100;">nil</span> t<span style="color: #66cc66;">&#41;</span>
          <span style="color: #66cc66;">&#40;</span>message <span style="color: #ff0000;">&quot;Reverting %s&quot;</span> <span style="color: #66cc66;">&#40;</span>buffer-file-<span style="color: #b1b100;">name</span> buffer<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>Love regards etc</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2011/05/mass-buffer-revert-in-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security and freedoms</title>
		<link>http://blog.deadpansincerity.com/2010/10/security-and-freedoms/</link>
		<comments>http://blog.deadpansincerity.com/2010/10/security-and-freedoms/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 12:05:12 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[favourite things]]></category>
		<category><![CDATA[wishful thinking]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[Popper]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/2010/10/security-and-freedoms/</guid>
		<description><![CDATA[We must plan for freedom, and not only for security, if for no other reason than that only freedom can make security secure. Karl Popper &#8211; The Open Society and its Enemies]]></description>
			<content:encoded><![CDATA[<blockquote><p>We must plan for freedom, and not only for security, if for no other reason than that only freedom can make security secure.</p></blockquote>
<p>Karl Popper &#8211; The Open Society and its Enemies</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2010/10/security-and-freedoms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Popper: Rulers</title>
		<link>http://blog.deadpansincerity.com/2010/06/popper-rulers/</link>
		<comments>http://blog.deadpansincerity.com/2010/06/popper-rulers/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 12:45:22 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[wishful thinking]]></category>
		<category><![CDATA[Karl Popper]]></category>
		<category><![CDATA[leaders]]></category>
		<category><![CDATA[madness]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[rulers]]></category>
		<category><![CDATA[The Open Society and its Enemies]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=291</guid>
		<description><![CDATA[It appears to me madness to base all our political efforts upon the faint hope that we shall be successful in obtaining excellent, or even competent rulers. The Open Society &#038; It&#8217;s Enemies &#8211; Popper]]></description>
			<content:encoded><![CDATA[<blockquote><p>It appears to me madness to base all our political efforts upon the faint hope that we shall be successful in obtaining excellent, or even competent rulers.</p></blockquote>
<p>The Open Society &#038; It&#8217;s Enemies &#8211; Popper</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2010/06/popper-rulers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Economy, Britain, Post General Election Circa 6th May</title>
		<link>http://blog.deadpansincerity.com/2010/04/digital-economy-britain-post-general-election-circa-6th-may/</link>
		<comments>http://blog.deadpansincerity.com/2010/04/digital-economy-britain-post-general-election-circa-6th-may/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 11:36:53 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[wishful thinking]]></category>
		<category><![CDATA[Correspondence]]></category>
		<category><![CDATA[cynicism]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[digital economy bill]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[Lib Dems]]></category>
		<category><![CDATA[Love regards etc]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[Reading]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=381</guid>
		<description><![CDATA[From: David Miller To: garethepps@cix.co.uk Subject: Digital Economy, Britain, Post General Election Circa 6th May User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) Date: Wed, 21 Apr 2010 12:30:36 +0100 Message-ID: &#8211;text follows this line&#8211; Dear Mr Epps I understand you are running for election in Reading East. One of the issues which most concerned me was [...]]]></description>
			<content:encoded><![CDATA[<p>From: David Miller <david@deadpansincerity.com><br />
To: garethepps@cix.co.uk<br />
Subject: Digital Economy, Britain, Post General Election Circa 6th May<br />
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)<br />
Date: Wed, 21 Apr 2010 12:30:36 +0100<br />
Message-ID: <87vdblm49v.fsf@deadpansincerity.com><br />
&#8211;text follows this line&#8211;</p>
<p>Dear Mr Epps</p>
<p>I understand you are running for election in Reading East.</p>
<p>One of the issues which most concerned me was the way in which, and<br />
content contained in, the Digital Economy Bill.</p>
<p>I would be most interested to hear your position on this matter.</p>
<p>I would  want my representative in government to do the following:</p>
<p>    * Speak in the House of Commons<br />
    * Vote there accordingly<br />
    * Attempt to raise the priority of the issue within their own party</p>
<p>in order to accomplish the following:</p>
<p>    * Removing all reference to disconnection from the internet as a possible penalty.<br />
    * Ensure that before any action can be taken, infringement must be proven beyond all reasonable doubt.</p>
<p>I look forward to your response.</p>
<p>&#8211;<br />
Love regards etc</p>
<p>David Miller<br />
www.deadpansincerity.com<br />
07964250347</p>
<p>340 Gosbrook Road<br />
Caversham<br />
Reading<br />
RG4 8EG</p>
<p>&#8211;<br />
This message sent from Emacs</p>
<p>&#8220;Trying to make bits uncopyable is like trying to make water not wet. The<br />
sooner people accept this, and build business models that take this into<br />
account, the sooner people will start making money again.&#8221; &#8211; Bruce Schneier </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2010/04/digital-economy-britain-post-general-election-circa-6th-may/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>We are disgusted&#8230;</title>
		<link>http://blog.deadpansincerity.com/2010/04/we-are-disgusted/</link>
		<comments>http://blog.deadpansincerity.com/2010/04/we-are-disgusted/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 21:15:04 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[wishful thinking]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[digital economy bill]]></category>
		<category><![CDATA[Love regards etc]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=352</guid>
		<description><![CDATA[&#8230;at what passes for democracy in this country. At the present time that is all. Love regards etc]]></description>
			<content:encoded><![CDATA[<p>&#8230;at what passes for democracy in this country. </p>
<p>At the present time that is all.</p>
<p>Love regards etc</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2010/04/we-are-disgusted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Once upon a time on #emacs</title>
		<link>http://blog.deadpansincerity.com/2010/03/once-upon-a-time-on-emacs/</link>
		<comments>http://blog.deadpansincerity.com/2010/03/once-upon-a-time-on-emacs/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 17:46:09 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[wishful thinking]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=347</guid>
		<description><![CDATA[&#60;rgr&#62; ,gnus &#60;fsbot&#62; I think gnus is [0] an Emacs newsreader (and mailreader), see #gnus, &#60;http://gnus.org/&#62;, &#60;http://emacswiki.org/wiki/CategoryGnus&#62; &#60;fsbot&#62; [1] proof that we are a wicked people who deserve to be punished, &#60;fsbot&#62; [2] the punishment &#60;rgr&#62; ,forget gnus 1 &#60;fsbot&#62;Removed entry 1 of gnus &#60;rgr&#62; ,gnus &#60;fsbot&#62; hmm, gnus is [0] an Emacs newsreader (and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>&lt;rgr&gt; </strong>,gnus</p>
<p><strong>&lt;fsbot&gt;</strong> I think gnus is [0] an Emacs newsreader (and mailreader), see #gnus,</p>
<p>       &lt;http://gnus.org/&gt;, &lt;http://emacswiki.org/wiki/CategoryGnus&gt;</p>
<p><strong>&lt;fsbot&gt; </strong>[1] proof that we are a wicked people who deserve to be punished,</p>
<p><strong>&lt;fsbot&gt; </strong>[2] the punishment</p>
<p><strong>&lt;rgr&gt; </strong>,forget gnus 1</p>
<p><strong>&lt;fsbot&gt;</strong>Removed entry 1 of gnus</p>
<p><strong>&lt;rgr&gt; </strong>,gnus</p>
<p><strong>&lt;fsbot&gt; </strong>hmm, gnus is [0] an Emacs newsreader (and mailreader), see #gnus,</p>
<p>     &lt;http://gnus.org/&gt;, &lt;http://emacswiki.org/wiki/CategoryGnus&gt;</p>
<p><strong>&lt;fsbot&gt;</strong> [1] the punishment</p>
<p><strong>&lt;rgr&gt;</strong> ,forget gnus 1</p>
<p><strong>&lt;fsbot&gt;</strong> Removed entry 1 of gnus</p>
<p>Shame.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2010/03/once-upon-a-time-on-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>That&#8217;s a true story too, just ask Bruce&#8230;</title>
		<link>http://blog.deadpansincerity.com/2010/03/thats-a-true-story-too-just-ask-bruce/</link>
		<comments>http://blog.deadpansincerity.com/2010/03/thats-a-true-story-too-just-ask-bruce/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 22:51:56 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[wishful thinking]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[Etc]]></category>
		<category><![CDATA[Exhibition]]></category>
		<category><![CDATA[Kilburn]]></category>
		<category><![CDATA[Tricycle]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=334</guid>
		<description><![CDATA[We rolled in slightly worse for wear. Our own black on black Rorschach tests were rolled up and sticking out the end of my bag. Thankfully the sharp sticks had been disposed of &#038; I was no longer punctuating every stray thought with them. Not that it seemed to matter much at the time. I [...]]]></description>
			<content:encoded><![CDATA[<p>We rolled in slightly worse for wear. Our own black on black Rorschach tests were rolled up and sticking out the end of my bag. Thankfully the sharp sticks had been disposed of &#038; I was no longer punctuating every stray thought with them. Not that it seemed to matter much at the time.</p>
<p>I took the flag down for a trial or tribulation depending on which side of the sweep you were on &#038; then stroked the art for  a bit. Thankfully it wasn&#8217;t one of those galleries where that sort of thing is considered inadvisable. In-between the trading of inanities &#038; brief asides taken to raise eyebrows at theatre ushers we stumbled through half-held debates, punctuated by prolonged gazes &#038; swift pacing to the other side of the room. </p>
<p>You can construct a valid position along the following lines: That there is an untrue beauty in exegesis as it serves to extinguish the last lingering certainties, especially when it becomes the mortar for superstructured waterfalls cascading down walls. Whether you&#8217;d want to &#038; how relevant this might be is up to you.</p>
<p>Someone once said that isms are there to distract people from opacity. I am reminded of this only now though. At the time all manner of crawling figures were holding on desperately as their idols collapsed onto turtles all the way down. Extermination is most often an active endeavour, but sometimes it&#8217;s passivity with a wink. </p>
<p>Let&#8217;s not get too carried away here though. Destruction leads to denial when it&#8217;s implied, and that&#8217;s no bad thing. Once upon a tomorrow we took that for granted. Under the circumstances a curt reminder was somewhat appropriate. The feeling seemed mutual. Nothing moved however long you stared at it, which only lent the violence an air of susceptibility. </p>
<p>Occasionally, when confronted by endless white on black, I have the tendency to search for allegory in the spaces. This however, wasn&#8217;t one of those parties. Narrative is one of those cruel beasts unbecoming of hats, it likes the sense of possibility found in permissiveness. This is just as true in pictures as it is in politics. </p>
<p>Doubly so when the prey is peering round corners. </p>
<p>&#8220;You forget yourself good sir&#8221;. Quite so. </p>
<p>This is the point at which we insert a good last joke &#8211; a summatorial sartorial editorial to imply closure. Given the preceding, this would be an inappropriate use of an opportunity. Declined. </p>
<p>The Empire Never Ended exists for a while more at the <a href="http://www.tricycle.co.uk/">Tricycle</a>. It was created by <a href="http://www.jackbrindley.co.uk/">Mr Brindley</a>. We enjoyed it. </p>
<p>Love regards etc.</p>
<p>P.S. Worth a read: <a href="http://www.jackbrindley.co.uk/www.jackbrindley.co.uk/Text/Entries/2010/3/17_Exegesis_216.html">Exegesis &#8211; (New) Working Parameters</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2010/03/thats-a-true-story-too-just-ask-bruce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lacanisms</title>
		<link>http://blog.deadpansincerity.com/2010/03/lacanisms/</link>
		<comments>http://blog.deadpansincerity.com/2010/03/lacanisms/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 22:32:51 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[wishful thinking]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=331</guid>
		<description><![CDATA[The religious is not neurotic at all. He is religious. But he looks like a neurotic, because he too combines things around what really is the desire of the Other. The only difference is that, because this is an Other that does not exist, because it is God, we need proof. So we pretend the [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>The religious is not neurotic at all. He is religious. But he looks like a neurotic, because he too combines things around what really is the desire of the Other. The only difference is that, because this is an Other that does not exist, because it is God, we need proof. So we pretend the Other is asking for something. Victims, for example. That is why this gradually becomes confused with the attitude of the neurotic, and especially the obsessional neurotic. It looks terribly like all the techniques used in victimary ceremonies</p></blockquote>
<blockquote><p>You will say that I am now advancing something that is no more transparent for that. But I&#8217;m not looking for transparency, I am trying, first of all, to stick to what we find in our experience, and if it is not transparent, well that&#8217;s too bad.</p></blockquote>
<p>From <a href="http://www.amazon.co.uk/gp/product/1844672719?ie=UTF8&#038;tag=deadpsince-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=1844672719">My Teaching</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=deadpsince-21&#038;l=as2&#038;o=2&#038;a=1844672719" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, Jacques Lacan</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2010/03/lacanisms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lips Unmistakably</title>
		<link>http://blog.deadpansincerity.com/2010/02/lips-unmistakably/</link>
		<comments>http://blog.deadpansincerity.com/2010/02/lips-unmistakably/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 14:24:13 +0000</pubDate>
		<dc:creator>david miller</dc:creator>
				<category><![CDATA[wishful thinking]]></category>
		<category><![CDATA[mint]]></category>
		<category><![CDATA[sci-fi]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://blog.deadpansincerity.com/?p=322</guid>
		<description><![CDATA[_________________________________________ ( The countdown had stalled at &#8216;T&#8217; minus ) ( 69 seconds when Desiree, the first ) ( female ape to go up in space, winked at ) ( me slyly and pouted her thick, rubbery ) ( lips unmistakably &#8212; the first of many ) ( such advances during what would prove ) [...]]]></description>
			<content:encoded><![CDATA[<blockquote style="font-family:monospace;"><p>
_________________________________________<br />
( The countdown had stalled at &#8216;T&#8217; minus  )<br />
( 69 seconds when Desiree, the first      )<br />
( female ape to go up in space, winked at )<br />
( me slyly and pouted her thick, rubbery  )<br />
( lips unmistakably &#8212; the first of many  )<br />
( such advances during what would prove   )<br />
( to be the longest, and most memorable,  )<br />
( space voyage of my career.              )<br />
(                                         )<br />
( &#8212; Winning sentence, 1985 Bulwer-Lytton )<br />
( bad fiction contest.                    )<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<pre>
o  ,__,
o  (oo)____
   (__)    )\
      ||--|| *
</pre>
</blockquote>
<p>via @mint</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deadpansincerity.com/2010/02/lips-unmistakably/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

