<?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>DAldred&#039;s Blog</title>
	<atom:link href="http://aldred.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://aldred.org/blog</link>
	<description>Miscellaneous Musings</description>
	<lastBuildDate>Sun, 27 Jan 2013 22:33:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Improving &#8220;Press This&#8221; in WordPress</title>
		<link>http://aldred.org/blog/blog/2013/01/24/improving-press-this-in-wordpress/</link>
		<comments>http://aldred.org/blog/blog/2013/01/24/improving-press-this-in-wordpress/#comments</comments>
		<pubDate>Thu, 24 Jan 2013 18:33:48 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Web & Tech]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=419</guid>
		<description><![CDATA[In a previous post, I said I&#8217;d be looking for a way to change the Press This functionality in WordPress so that it wrapped the inserted content in a div &#8211; which allows me to style it.     After &#8230; <a href="http://aldred.org/blog/blog/2013/01/24/improving-press-this-in-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>In a previous post, I said I&#8217;d be looking for a way to change the <em>Press This</em> functionality in WordPress so that it wrapped the inserted content in a div &#8211; which allows me to style it.     After a bit of firtling around in the code, it&#8217;s actually quite simple - assuming you&#8217;re using the WordPress.org software.  If you&#8217;re on WordPress.com, you won&#8217;t have access to this stuff.</p>
<p>In the current version of Press This (press-this.php in your wp-admin directory), at line 601, there is the PHP statement</p>
<pre>$content = '';</pre>
<p>and at line 614 you&#8217;ll find</p>
<pre>remove_action( 'media_buttons', 'media_buttons' );</pre>
<p>Replace that whole section of code (including the lines quoted) with the following:</p>
<pre>$content = '';
 if ( $selection )
  $content .= "&lt;div class='quotedcontent'&gt;$selection";
 if ( $url ) {
    $content .= '&lt;p&gt;';
    if ( $selection )
       $content .= __('via ');
    $content .= sprintf( "&lt;a href='%s'&gt;%s&lt;/a&gt;.&lt;/p&gt;", esc_url( $url ), esc_html( $title ) );
 }
 if ($content != '')
    $content .= "&lt;/div&gt;";
 remove_action( 'media_buttons', 'media_buttons' );</pre>
<p>All this is doing is putting the div tags before the content you pulled in via <em>Press This</em>, content at the start, and after the URL (if there is one).</p>
<p>Now, when <em>Press This</em> is used, the whole of the inserted content will be in a div with the class &#8216;quotedcontent&#8217;.   So that just leaves you to style it in your CSS file.</p>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2013/01/24/improving-press-this-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Rounded Corners are Easier on the Eyes</title>
		<link>http://aldred.org/blog/blog/2013/01/23/why-rounded-corners-are-easier-on-the-eyes/</link>
		<comments>http://aldred.org/blog/blog/2013/01/23/why-rounded-corners-are-easier-on-the-eyes/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 21:27:14 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Web & Tech]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=364</guid>
		<description><![CDATA[Designers use rounded corners so much today that they’re more of an industry standard than a design trend. They’re not only found on software user interfaces, but hardware product designs as well. So what is it about rounded corners that &#8230; <a href="http://aldred.org/blog/blog/2013/01/23/why-rounded-corners-are-easier-on-the-eyes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://uxmovement.com/thinking/why-rounded-corners-are-easier-on-the-eyes/"><img class="alignleft" alt="" src="http://aldred.org/blog/wp-content/uploads/2013/01/sharp-fork-rounded-beachball.png" width="279" height="143" /></a></p>
<div class="quotedcontent">
<p>Designers use rounded corners so much today that they’re more of an industry standard than a design trend. They’re not only found on software user interfaces, but hardware product designs as well.</p>
<p>So what is it about rounded corners that make them so popular? Indeed they look appealing, but there’s more to it than that.via <a href="http://uxmovement.com/thinking/why-rounded-corners-are-easier-on-the-eyes/">Why Rounded Corners are Easier on the Eyes &#8211; UX Movement</a>.</p>
</div>
<p>This article makes a lot of sense.  precis: rounded corners have a more friendly feel because sharp things, generally, hurt; so we&#8217;re psychologically conditioned against sharp corners.  Obvious when someone points it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2013/01/23/why-rounded-corners-are-easier-on-the-eyes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>36 Surprising Ways to Boost Creativity For Free &#124; Greatist</title>
		<link>http://aldred.org/blog/blog/2013/01/23/36-surprising-ways-to-boost-creativity-for-free-greatist/</link>
		<comments>http://aldred.org/blog/blog/2013/01/23/36-surprising-ways-to-boost-creativity-for-free-greatist/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 21:26:40 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Other Stuff]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=386</guid>
		<description><![CDATA[We already know being creative can make us happier and healthier. But while we may think of creativity in terms of penning or painting a masterpiece, experts say it can really mean anything from trying a new recipe to submitting &#8230; <a href="http://aldred.org/blog/blog/2013/01/23/36-surprising-ways-to-boost-creativity-for-free-greatist/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div class="quotedcontent">We already know being creative can make us happier and healthier. But while we may think of creativity in terms of penning or painting a masterpiece, experts say it can really mean anything from trying a new recipe to submitting an original idea during a meeting. Here we’ve got 36 ways to fire up that creative spark, from writing by hand to visiting a foreign country. Try (at least) one today!</p>
<p>via <a href="http://greatist.com/happiness/ways-to-boost-creativity/#">36 Surprising Ways to Boost Creativity For Free | Greatist</a>.</div>
<p>&nbsp;</p>
<p>And some of these are really quite interesting thoughts.  Must try some of them!</p>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2013/01/23/36-surprising-ways-to-boost-creativity-for-free-greatist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Tack (again)</title>
		<link>http://aldred.org/blog/blog/2013/01/23/changing-tack-again/</link>
		<comments>http://aldred.org/blog/blog/2013/01/23/changing-tack-again/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 19:25:50 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Web & Tech]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=376</guid>
		<description><![CDATA[I&#8217;ve left the blog alone for a while, but something suddenly occurred to me today. I&#8217;ve been looking at things which allow me to &#8216;reblog&#8217; stuff, or pin articles from the web &#8211; Pinterest or Sigmanote style &#8211; but nothing has quite worked for me.  Pinterest is too &#8230; <a href="http://aldred.org/blog/blog/2013/01/23/changing-tack-again/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/38514567@N00/356204665" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured alignleft" style="margin-left: 10px; margin-right: 10px;" title="Tumult of Tacks" alt="Tumult of Tacks" src="http://farm1.static.flickr.com/143/356204665_bb9b02bddf_m.jpg" width="240" height="160" /></a></p>
<p>I&#8217;ve left the blog alone for a while, but something suddenly occurred to me today.</p>
<p>I&#8217;ve been looking at things which allow me to &#8216;reblog&#8217; stuff, or pin articles from the web &#8211; <a href="http://www.pinterest.com">Pinterest</a> or <a href="http://www.sigmanote.com">Sigmanote</a> style &#8211; but nothing has quite worked for me.  Pinterest is too image-led; Sigmanote was better but doesn&#8217;t allow for a blog-post style note; <a href="http://www.tumblr.com">Tumblr</a> I can&#8217;t organise as I like (and at some level I&#8217;m not that comfortable with sharing a domain name with masses of porn, even if it is nowhere near what I&#8217;m doing).</p>
<p>Then I realised: there&#8217;s this thing called <a title="Article about using Press This" href="http://wpmu.org/press-this/">Press This</a> in WordPress which allows me to link to, and excerpt  stuff from net articles, pull in images, and add comments.   It&#8217;s not perfect (I could do with it adding div tags round what it brings in so that I could give it  different style, and so clearly differentiate the excerpted stuff from my posts and comments), but it&#8217;s there, easy to use, and workable.</p>
<p>So this blog may go from negligible activity to quite a bit.   And I&#8217;ll be reorganising categories and things, more along the lines of the ones I&#8217;d started to set up in Sigmanote and its friends.  I may even get round to working out how to get Press This to add a div&#8230;.</p>
<p>&nbsp;</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/?px"><img class="zemanta-pixie-img" style="border: none; float: right;" alt="Enhanced by Zemanta" src="http://img.zemanta.com/zemified_e.png?x-id=d32dc8db-c564-43e5-a86e-09e16e416153" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2013/01/23/changing-tack-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Giffgaff &#8211; an experiment in community enterprise</title>
		<link>http://aldred.org/blog/blog/2012/06/13/giffgaff-an-experiment-in-community-enterprise/</link>
		<comments>http://aldred.org/blog/blog/2012/06/13/giffgaff-an-experiment-in-community-enterprise/#comments</comments>
		<pubDate>Wed, 13 Jun 2012 12:27:00 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Economics & Politics]]></category>
		<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[Cellular network]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Distributism]]></category>
		<category><![CDATA[Giffgaff]]></category>
		<category><![CDATA[Living wage]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=330</guid>
		<description><![CDATA[A few weeks ago I switched my mobile phone supplier.  The  main reason was that the previous one, while cheap, had low signal levels in my home area; but I wasn&#8217;t in a big rush to change, and so had &#8230; <a href="http://aldred.org/blog/blog/2012/06/13/giffgaff-an-experiment-in-community-enterprise/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>A few weeks ago I switched my mobile phone supplier.  The  main reason was that the previous one, while cheap, had low signal levels in my home area; but I wasn&#8217;t in a big rush to change, and so had time to look at several alternatives.</p>
<p>One stood out from the others &#8211; not just on price (which is very good; arguably you can get as good a deal elsewhere, but you have to be very careful to do so), but far more because of the way it works.</p>
<p>Because it works as a community, even if it has a dependency on a commercial provider.</p>
<p>People may be aware that I&#8217;m a critic of the way in which the ethos of modern capitalism has led to damaging changes in society to create a &#8216;client class&#8217; &#8211; people who will work for relatively little &#8211; certainly not a family living wage &#8211; and use that relatively little to buy what is thrown at them by aggressive marketing.  I prefer models like distributism, which empower and humanise the individual rather than treating people as cogs in machines.   But is must be accepted that there are some aspects of life &#8211; and communications networks are one of them &#8211; where the capital costs involved in  the development of the network, and the scale of its maintenance, makes the human scale difficult to achieve.</p>
<p><img class="alignleft" title="GiffGaff community logo" alt="" src="http://t2.gstatic.com/images?q=tbn:ANd9GcQ5GO-Klspw74RJ9Y148rOVr75zlC06iN0NAGzQ6voBG_rUSzawVA" width="225" height="225" />Enter Giffgaff.   Giffgaff is part of the O2/Telefonica group; so far so bad, or at least so much the same as everyone else.   But what makes it different is this: for the bulk of its support and development, it uses the community of its users.</p>
<p>There&#8217;s no call centre; no warehouse where people are underpaid to resolve the same basic question time after time (and often to fail to resolve anything more complex), people treated as machines as an excuse for not having good enough machines in the first place.  Instead you can search the community forums, and find your answer; or if you can&#8217;t find it, you can ask.</p>
<p>The community of existing users will respond, in an average of about 3 minutes, with advice and guidance &#8211; and usually the answer you need.  For doing so, they gain payback &#8211; think of it as something like the Co-op &#8216;divvy&#8217; &#8211; points which are converted to cash or phone credit six-monthly.</p>
<p>If it&#8217;s something which really can&#8217;t be resolved without enterprise-level intervention, you can email an agent; if something from the community needs intervention with the agents, there are &#8216;educators&#8217; (hmm, unfortunately that sounds a bit Orwellian) who will do that.</p>
<p>Users don&#8217;t have to get involved &#8211; they still get a good deal, in exchange for not having the supposed convenience of a call centre &#8211; but there is an incentive to do so.    Recruiting new users also gains payback.</p>
<p>This approach is an enormous strength in terms of service provision; but more, it&#8217;s an approach to a major-infrastructure based system which could be applied in other cases; and an approach which has a tendency to empower users, rather than to depersonalise them.</p>
<p>And at the end of the day, it delivers a service which actually costs less than its traditional rivals, scotching the suggestion that any human-centred business approach has to be more costly.</p>
<p>It may be the part of the jigsaw which has not been fully resolved in much distributist debate.</p>
<p>Take a look at giffgaff.com.  Oh, and if you&#8217;d like to try it, <a title="Order a GiffGaff SIM" href="http://giffgaff.com/orders/affiliate/daldred">use this link to order your SIM</a> &#8211; that way you use the system to give me something for pointing you that way.   It&#8217;s all part of the philosophy of rewarding community.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: none; float: right;" alt="Enhanced by Zemanta" src="http://img.zemanta.com/zemified_e.png?x-id=b1dd9510-363a-42a5-83da-76402a43eb29" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2012/06/13/giffgaff-an-experiment-in-community-enterprise/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chairs and Persons</title>
		<link>http://aldred.org/blog/blog/2012/03/19/chairs-and-persons/</link>
		<comments>http://aldred.org/blog/blog/2012/03/19/chairs-and-persons/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 20:49:17 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Economics & Politics]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=299</guid>
		<description><![CDATA[I was a student union activist at University many years ago; involved in committees and things. One late evening, with the Union Council had been discussing a new constitution for many hours, and people wanted to wrap it up and &#8230; <a href="http://aldred.org/blog/blog/2012/03/19/chairs-and-persons/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I was a student union activist at University many years ago; involved in committees and things. One late evening, with the Union Council had been discussing a new constitution for many hours, and people wanted to wrap it up and get to the bar before its late licence ran out..</p>
<p>And we came to the last proposed amendment; the chair was taken over by a Steering Committee member, for no amendment could be debated from the chair. And Rob, the chairman had serious views on this one.</p>
<p><a href="http://en.wikipedia.org/wiki/File:Old_Teddy_Bear.jpg" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured alignleft" title="February 15: first teddy bear." alt="February 15: first teddy bear." src="http://upload.wikimedia.org/wikipedia/en/d/d0/Old_Teddy_Bear.jpg" width="257" height="300" /></a></p>
<p>The new proposed constitution had replaced the word &#8216;chairman/woman&#8217; with the word &#8216;chairperson&#8217;.</p>
<p>Rob rose to his feet; in his hand he held a large stuffed teddy bear. He introduced the bear. This, as he pointed out, was a toy, but some people got attached to their toys and thought of them as real, so let&#8217;s call this a person. But now let&#8217;s look closer: it&#8217;s a teddy bear. It&#8217;s an &#8216;it&#8217;. It&#8217;s not a male or a female. It&#8217;s got something important missing &#8211; no, perhaps not what you&#8217;re thinking.</p>
<p>What&#8217;s missing is a major part of its identity, the part that, if it had it, would make it he or she; or even allow it to be uncertain about which. The part that applies to living, thinking, reasoning, being humans.</p>
<p>I haven&#8217;t got that bit missing, he said. I&#8217;m a man, not just a person. My predecessor in the chair of this Union was a woman, not just a person. Mr Acting Chairman, he said, I oppose this change on the grounds that it is a lie and a belittling of humanity.</p>
<p>Perhaps because it was late; perhaps the various-tasting smoke drifting over the meeting; perhaps because of the teddy bear, but just perhaps because his words hit a sense of identity in those listening, the word &#8216;chairperson&#8217; was struck out and replaced by &#8216;chairman/woman&#8217;; the majority for doing so was massive.</p>
<p>I have little doubt that now the constitution of that union has a place for a &#8216;chairperson&#8217;, genderless, identity-impaired, inhuman. For that&#8217;s what we now expect, and how a society has grown away from valuing people as complete people.</p>
<p>It may seem an abstruse point of language, but it&#8217;s fundamental. Every time a man or woman is used as a &#8216;person&#8217;, his or her identity is devalued, and part of his or her humanity ground in the dust.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: none; float: right;" alt="Enhanced by Zemanta" src="http://img.zemanta.com/zemified_e.png?x-id=189875d0-11a5-4936-83f5-29a960fc6664" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2012/03/19/chairs-and-persons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Year</title>
		<link>http://aldred.org/blog/blog/2012/03/10/code-year/</link>
		<comments>http://aldred.org/blog/blog/2012/03/10/code-year/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 13:26:53 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Web & Tech]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=255</guid>
		<description><![CDATA[I have to day I&#8217;m quite enjoying Code Year, although its promise to send a weekly email to prompt starting the next session has proven rather patchy. Of course, I&#8217;ve written basic Javascript before &#8211; or perhaps to be  more &#8230; <a href="http://aldred.org/blog/blog/2012/03/10/code-year/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://commons.wikipedia.org/wiki/File:WikiBookTitel_JavaScript.jpg" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured alignleft" title="Titel WikiBook JavaScript" alt="Titel WikiBook JavaScript" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/WikiBookTitel_JavaScript.jpg/300px-WikiBookTitel_JavaScript.jpg" width="200" height="150" /></a></p>
<p>I have to day I&#8217;m quite enjoying <a title="Code Year website" href="http://www.codeyear.com/">Code Year</a>, although its promise to send a weekly email to prompt starting the next session has proven rather patchy.</p>
<p>Of course, I&#8217;ve written basic Javascript before &#8211; or perhaps to be  more accurate, more often picked up code ideas from other people and modified them &#8211; and as far as I&#8217;ve got so far, the concepts have not been especially new.   But working steadily through the process (which is written as a series of exercises gradually embedding and explaining concepts, using an interactive code window and output console within the exercise web page) is embedding the knowledge more fully.</p>
<p>And then there&#8217;s the motivation factor: I&#8217;ve no particular intention of writing all that much Javascript at work, and the ability to code is unlikely to be a major factor in any future job applications.  But the ability to do more with my own <a title="Sites hosted at aldred.org" href="http://www.aldred.org">websites</a>, and the desire not to get left behind as the year of code progresses, adds a motivation level difficult to achieve in working through just any web-based JS tutorial.</p>
<p>There&#8217;s been criticism of Code Year &#8211; basically that it doesn&#8217;t train people to be professional programmers; and of course it doesn&#8217;t; it gives people a basis of understanding of a programming language, which they can take further or not, as they wish.  Perhaps it takes away some of the mystique of programming; perhaps too it will give some a taster from which they will see that professional coding is a far deeper skill.</p>
<p>To me it&#8217;s a Good Thing; not everyone who starts on it will benefit, but for some it may be a step towards understanding that computers are there to be programmed, not to control us; and towards understanding that we can control them.      It&#8217;s certainly several steps above the &#8216;How to use MS Office&#8217; propaganda that passes for ICT in many secondary schools!</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: none; float: right;" alt="Enhanced by Zemanta" src="http://img.zemanta.com/zemified_e.png?x-id=0389cd1d-a7aa-4126-83bc-e409d318e00f" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2012/03/10/code-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whatstandwell and Crich Stand</title>
		<link>http://aldred.org/blog/blog/2012/02/19/whatstandwell-and-crich-stand/</link>
		<comments>http://aldred.org/blog/blog/2012/02/19/whatstandwell-and-crich-stand/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 18:39:23 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Places and Travel]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=215</guid>
		<description><![CDATA[A blog seems as good a place as any to record walks; I&#8217;ve uploaded this one to Everytrail as well, but there&#8217;s always the risk a site like that closes. This walk was a shortened version of one we have &#8230; <a href="http://aldred.org/blog/blog/2012/02/19/whatstandwell-and-crich-stand/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>A blog seems as good a place as any to record walks; I&#8217;ve <a title="The walk at Everytrail" href="http://www.everytrail.com/view_trip.php?trip_id=1455466&amp;code=70d63e93ed129b8941b5955c1353c5b4">uploaded this one to Everytrail</a> as well, but there&#8217;s always the risk a site like that closes.</p>
<p>This walk was a shortened version of one we have in a book; in all it&#8217;s just over 4 miles, and took us around 2 hours, with plenty of time within that for looking at views and climbing the tower at Crich Stand itself.  Puns available: the Cliff Inn, and the Derwent Inn at Whatstandwell (though it was closed today, despite its notices saying otherwise).</p>
<p>To flesh out the briefer details on Everytrail:</p>
<ul>
<li>
<div id="attachment_242" class="wp-caption alignright" style="width: 235px"><a href="http://aldred.org/blog/wp-content/uploads/2012/02/DSCF3019.jpg"><img class="size-medium wp-image-242" style="margin: 5px;" title="Canal" alt="The Canal at Whatstandwell" src="http://aldred.org/blog/wp-content/uploads/2012/02/DSCF3019-225x300.jpg" width="225" height="300" /></a><p class="wp-caption-text">The Canal at Whatstandwell</p></div>
<p>Start from <a class="zem_slink" title="Whatstandwell railway station" href="http://maps.google.com/maps?ll=53.08489,-1.50429&amp;spn=1.0,1.0&amp;q=53.08489,-1.50429 (Whatstandwell%20railway%20station)&amp;t=h" rel="geolocation">Whatstandwell Station</a>, where there is a pay &amp; display carpark (currently £2 for all day)</li>
<li>Cross the railway and then the canal using the two linked bridges.  Continue along this path to the road.</li>
<li>Cross the road, turning right, and and almost immediately turn left up Hindersitch Lane.  The road bends sharply left: continue along it until you find The Green on your right</li>
<li>Now turn into the Green and continue along this road as it in turn bends left.  At the end of the lane there is a narrow path straight ahead; take it.</li>
<li>You emerge onto Top Lane.  Turn right, and within about 40 yards turn left at a footpath sign.</li>
<li>Follow this footpath upward through woodland, continuing straight ahead as it crosses two larger tracks.  Once it emerges onto open land, it soon splits into two &#8211; take the right hand fork.</li>
<li>Follow this to the edge of the houses, then turn right end follow it round to the left to reach Coasthill &#8211; this is the left turn before Wheatsheaf Lane</li>
<li>Now continue straight ahead along this lane and then across fields &#8211; there are one or two bends and diversions.</li>
<li>
<div id="attachment_243" class="wp-caption alignleft" style="width: 235px"><a href="http://aldred.org/blog/wp-content/uploads/2012/02/DSCF3041.jpg"><img class="size-medium wp-image-243 " style="margin-top: 10px; margin-bottom: 10px; margin-left: 5px; margin-right: 5px;" title="Crich Stand" alt="Crich Stand" src="http://aldred.org/blog/wp-content/uploads/2012/02/DSCF3041-225x300.jpg" width="225" height="300" /></a><p class="wp-caption-text">Crich Stand</p></div>
<p>Eventually you reach the road near the Cliff Inn.  Turn right (uphill) and pass the Tramway Museum entrance, continuing to follow the road round to the left</li>
<li>Follow the road straight ahead as it rises towards Crich Stand (actually a side turning from the road which bends right)</li>
<li>Once at Crich Stand, follow the signed footpath which leads off to the right of the immediate approach to the monument.</li>
<li>This path curves continuously leftward round the quarries, and then drops down to cross the end of the tram tracks; then it works its way down through woods until, having become a farm track then a track by some houses, it reaches a road, Leashaw.</li>
<li>Turn left, then immediately right onto another footpath.</li>
<li>This path meanders downward  through fields, then through woodland among old quarry workings, now just cliffs.  After a while it reaches the Cromford Canal</li>
<li>Turn left onto the Cromford Canal, and follow it back to the carpark.</li>
</ul>
<div></div>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: none; float: right;" alt="Enhanced by Zemanta" src="http://img.zemanta.com/zemified_e.png?x-id=ab69fa14-15da-48ed-b455-16427ed975fe" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2012/02/19/whatstandwell-and-crich-stand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OK, Restart!</title>
		<link>http://aldred.org/blog/blog/2012/01/14/ok-restart/</link>
		<comments>http://aldred.org/blog/blog/2012/01/14/ok-restart/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 13:50:26 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Other Stuff]]></category>

		<guid isPermaLink="false">http://aldred.org/blog/?p=132</guid>
		<description><![CDATA[I&#8217;m not quite sure how it&#8217;s that long since I last posted.   Yes, life has been full; but has it been that full?   It&#8217;s probably just not having created a habit. Let&#8217;s have a belated New Year Resolution, &#8230; <a href="http://aldred.org/blog/blog/2012/01/14/ok-restart/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://commons.wikipedia.org/wiki/File:Quick_restart.png"><img class="zemanta-img-inserted zemanta-img-configured alignleft" title="An icon from the Crystal Project icon theme." alt="An icon from the Crystal Project icon theme." src="http://upload.wikimedia.org/wikipedia/commons/a/ae/Quick_restart.png" width="128" height="128" /></a></p>
<p>I&#8217;m not quite sure how it&#8217;s that long since I last posted.   Yes, life has been full; but has it been that full?   It&#8217;s probably just not having created a habit.</p>
<p>Let&#8217;s have a belated New Year Resolution, then; a post a week, even if it&#8217;s a short one.  That may help.</p>
<p>I&#8217;ve a plugin loaded in WordPress, which looks at what I type and suggests linked blogs and media.   It&#8217;s slightly encouraging to see that it&#8217;s pulled up a number of blogs with recent posts on restarting blogging!</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: none; float: right;" alt="Enhanced by Zemanta" src="http://img.zemanta.com/zemified_e.png?x-id=c0757e71-a991-4994-acf8-f70afbdbf76e" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2012/01/14/ok-restart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alençon</title>
		<link>http://aldred.org/blog/blog/2011/08/22/alencon/</link>
		<comments>http://aldred.org/blog/blog/2011/08/22/alencon/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 19:00:05 +0000</pubDate>
		<dc:creator>daldred</dc:creator>
				<category><![CDATA[Faith]]></category>
		<category><![CDATA[Places and Travel]]></category>
		<category><![CDATA[Alencon]]></category>
		<category><![CDATA[France]]></category>

		<guid isPermaLink="false">http://pewfodder.wordpress.com/?p=52</guid>
		<description><![CDATA[We chose Alençon for a stop on the way back from the Vendée to the ferry, arriving in the mid-afternoon on Saturday. The Basilica of Nôtre Dame, raised to this status by Pope John Paul II in recognition of its &#8230; <a href="http://aldred.org/blog/blog/2011/08/22/alencon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>We chose <a class="zem_slink" title="Alençon" href="http://en.wikipedia.org/wiki/Alen%C3%A7on" rel="wikipedia">Alençon</a> for a stop on the way back from the Vendée to the ferry, arriving in the mid-afternoon on Saturday.</p>
<div id="attachment_113" class="wp-caption alignleft" style="width: 235px"><a href="http://aldred.org/blog/wp-content/uploads/2011/11/alencon-basilica.jpg"><img class="size-full wp-image-113 " title="alencon-basilica" src="http://aldred.org/blog/wp-content/uploads/2011/11/alencon-basilica.jpg" alt="" width="225" height="300" /></a><p class="wp-caption-text">Alençon Basilica</p></div>
<p>The Basilica of Nôtre Dame, raised to this status by Pope John Paul II in recognition of its role in the life of the family of <a class="zem_slink" title="Thérèse of Lisieux" href="http://en.wikipedia.org/wiki/Th%C3%A9r%C3%A8se_of_Lisieux" rel="wikipedia">St Thérèse of Lisieux</a>, is a strange mix of two styles. At one end the Gothic windows form a tracery along the walls of the nave; beyond this the solidity of an 18th century tower and transept (which replaced the former tower, toppled by a storm). The newer end is solid, unbreachable stone, like a fortress; the older exuberant and confident. The mixture somehow leaves a sense of change and uncertainty.</p>
<p>We sat outside a bar across the square from the Basilica and drank a beer, while perusing the leaflets provided by the tourist office. The English in the leaflet about the Basilica itself likewise leaves a sense of change and uncertainty; it&#8217;s once been translated well, then had extra bits added!</p>
<p>Inside the Basilica the side chapel dedicated to St Thérèse and her sense of peace and gentleness lies immediately opposite that of St Jeanne d&#8217;Arc, whose image is military and patriotic; two deeply contrasted derivations of the Christian life face each other, each unashamed. The information boards are clear and gently understated.</p>
<p>Mass is celebrated at what appears to be a wooden altar in front of the original stone one, as though the practice of the priest facing the people during Mass is still regarded as a temporary phase; the omissions and slight variations in the liturgy perhaps also indicate an uncertainty over the Roman Liturgy itself, and are even more confusing to the visitor already working in a foreign tongue.</p>
<p>The congregation is reasonably numerous but aging. The homily focussed on the feeding of the five thousand as a sign of the unity of bread, word and mission. One senses a contrast between the older, quieter people at Mass inside and the noisier and younger life of the square outside; but the clangour of the bells announcing finally that we were dismissed into the world to take Christ out into its carelessness brings the two into unity. If those bells did not ring out the town would not be the same, and one senses that the town knows that.</p>
<div class="zemanta-img">
<div class="wp-caption alignright" style="width: 310px"><a href="http://commons.wikipedia.org/wiki/File:TeresadiLisieux.JPG"><img class="zemanta-img-configured" title="Saint Thérèse of Lisieux" src="http://upload.wikimedia.org/wikipedia/commons/f/f3/TeresadiLisieux.JPG" alt="Photograph of Saint Thérèse of Lisieux, Doctor..." width="300" height="400" /></a><p class="wp-caption-text">Saint Thérèse of Lisieux (via Wikipedia)</p></div>
</div>
<p>We stayed overnight at the Hotel du Dauphin, St Pierre des Nids, for which an unashamed recommendation. The room, recently redecorated, still perhaps no more than a room, but comfortable and fresh; the food is excellent and the service from the owners, Olivier and Sonia, is welcoming and cheerful. In the morning, we strolled round the village and gained the sense that there is more to do around here then we knew &#8211; we will return.</p>
<p>Then back to the city to visit the Martin&#8217;s House, where the parents of St Thérèse lived, and where the little flower herself was born. A smiling nun with a good grasp of English is called to show us round, and does so with a mixture of history, spirituality and personal joy which is quietly inspiring. The <em>réalisation</em> of the museum is very well done and brings the past alive, preserving something of the life of the family amid the shrine which has grown up alongside it. There is perhaps little of St Thérèse herself here &#8211; the house saw only some of her early childhood, though there are glimpses of her life and character &#8211; but the daily holiness of the lives of her parents stands out clearly.</p>
]]></content:encoded>
			<wfw:commentRss>http://aldred.org/blog/blog/2011/08/22/alencon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
