<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>a little place of calm</title>
	<atom:link href="http://sermoa.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sermoa.wordpress.com</link>
	<description>aimee&#039;s personal journey</description>
	<lastBuildDate>Sun, 19 May 2013 10:33:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sermoa.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>a little place of calm</title>
		<link>http://sermoa.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sermoa.wordpress.com/osd.xml" title="a little place of calm" />
	<atom:link rel='hub' href='http://sermoa.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Testing apps that depend on external services or APIs</title>
		<link>http://sermoa.wordpress.com/2013/05/19/testing-apps-that-depend-on-external-services-or-apis/</link>
		<comments>http://sermoa.wordpress.com/2013/05/19/testing-apps-that-depend-on-external-services-or-apis/#comments</comments>
		<pubDate>Sun, 19 May 2013 10:28:13 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[bdd]]></category>
		<category><![CDATA[developer in test]]></category>
		<category><![CDATA[tdd]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1603</guid>
		<description><![CDATA[A lot of web programming these days doesn&#8217;t live in isolation. We consume services over the internet via APIs, and we send information to other services, such as Google Analytics, to track what users are doing. I&#8217;m currently back at &#8230; <a href="http://sermoa.wordpress.com/2013/05/19/testing-apps-that-depend-on-external-services-or-apis/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1603&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A lot of web programming these days doesn&#8217;t live in isolation. We consume services over the internet via APIs, and we send information to other services, such as Google Analytics, to track what users are doing.</p>
<p>I&#8217;m currently back at the BBC, where we have a lot of teams working on components that cooperate together: programme scheduling and publishing, video encoding, media streaming, DRM verification, content delivery networks. Testing becomes a great challenge when dealing with so many moving parts, across multiple environments (dev, int, stage and live) .. and even when it works, integration tests can get slow.</p>
<p><strong>What do we really mean by integration testing?</strong></p>
<p>I think automated integration testing should test the integration points .. not whether they actually do all line up and integrate correctly. There is a place for both, of course. Sometimes you need full end-to-end integration tests. But they are slow and brittle. I think we can add a little bit more control here.</p>
<p><strong>Example of a dependency on an external API</strong></p>
<p>Suppose I want to test an app that relies on an external service. In this case it&#8217;s a weather app.</p>
<p><img src="http://sermoa.files.wordpress.com/2013/05/screen-shot-2013-05-18-at-20-42-07.png?w=593&#038;h=332" alt="Weather in Bristol" width="593" height="332" class="alignnone size-full wp-image-1606" /></p>
<p>You can visit this now if you like: <a href="http://aimeerivers.com/weather/Bristol">aimeerivers.com/weather/Bristol</a></p>
<p>Change the city in the URL and you&#8217;ll find out the weather for that city.</p>
<p>The way it does this is by parsing an API provided by <a href="http://openweathermap.org/">OpenWeatherMap</a>.</p>
<p><a href="http://api.openweathermap.org/data/2.5/weather?q=Bristol" rel="nofollow">http://api.openweathermap.org/data/2.5/weather?q=Bristol</a></p>
<p>It gives us something like this:</p>
<pre class="brush: jscript; light: true; title: ; notranslate">
{
  &quot;coord&quot;: {
    &quot;lon&quot;: -2.59665,
    &quot;lat&quot;: 51.45523
  },
  &quot;sys&quot;: {
    &quot;country&quot;: &quot;GB&quot;,
    &quot;sunrise&quot;: 1368850387,
    &quot;sunset&quot;: 1368907233
  },
  &quot;weather&quot;: [
    {
      &quot;id&quot;: 800,
      &quot;main&quot;: &quot;Clear&quot;,
      &quot;description&quot;: &quot;Sky is Clear&quot;,
      &quot;icon&quot;: &quot;01d&quot;
    }
  ],
  &quot;base&quot;: &quot;global stations&quot;,
  &quot;main&quot;: {
    &quot;temp&quot;: 286.78,
    &quot;pressure&quot;: 1008,
    &quot;humidity&quot;: 81,
    &quot;temp_min&quot;: 284.15,
    &quot;temp_max&quot;: 289.35
  },
  &quot;wind&quot;: {
    &quot;speed&quot;: 2.6,
    &quot;deg&quot;: 230,
    &quot;var_beg&quot;: 200,
    &quot;var_end&quot;: 270
  },
  &quot;rain&quot;: {
    &quot;3h&quot;: 0
  },
  &quot;clouds&quot;: {
    &quot;all&quot;: 0
  },
  &quot;dt&quot;: 1368907010,
  &quot;id&quot;: 2654675,
  &quot;name&quot;: &quot;Bristol&quot;,
  &quot;cod&quot;: 200
}
</pre>
<p>If we didn&#8217;t know anything about the API dependency, we might write the following feature file:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
Feature: Weather report
  As a visitor to Bristol
  I want a page that tells me what the weather will be
  So that I can decide what clothes to wear

  Scenario: Report says it's going to be clear
    When I look at the weather report for &quot;Bristol&quot;
    Then I should see the weather is &quot;Sky is Clear&quot;
</pre>
<p>We could use Capybara to test, and step definitions would look like this:</p>
<pre class="brush: ruby; light: true; title: ; notranslate">
When /^I look at the weather report for &quot;(.*?)&quot;$/ do |city|
  visit &quot;/weather/#{city}&quot;
end

Then /^I should see the weather is &quot;(.*?)&quot;$/ do |expected_weather|
  page.should have_css '.description', text: expected_weather
end
</pre>
<p>I&#8217;m sure the problem here should be immediately obvious: the weather changes! So how do we allow for changing weather?</p>
<p>One way is to make the step definition more vague: &#8220;Then I should see the correct weather&#8221; .. the step definition would have to make a call to the same API, parse the JSON, and make the expectation based on the response it finds. If it comes up with the same answer as the app, we can assume the app is behaving as expected.</p>
<p>It&#8217;s is a viable solution, but i don&#8217;t think it&#8217;s the best.</p>
<p><strong>Stub out the API</strong></p>
<p>Ideally, i should be able to run the app locally. There are a number of good reasons for that anyway: i can debug the code, i am able to trace log files and get more meaningful error messages, it&#8217;s faster to run, and i can run it offline (once i have stubbed out the API dependencies!)</p>
<p>If i can&#8217;t run the app locally, it&#8217;s okay, but i have to be able to configure the app somehow to fetch data from a different source, one that is under my control. We did this a lot in the Olympics, using <a href="https://github.com/artemave/REST-assured">REST-assured</a> to return responses to API requests. It was a good way to gain control over the ever-changing data.</p>
<p>But if i can run the app locally, i can reroute api.openweathermap.org to localhost, and then it&#8217;s mine to play with as i wish.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
sudo vim /etc/hosts
</pre>
<p>Add a line:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
127.0.0.1 api.openweathermap.org
</pre>
<p>Now my machine is going to reroute requests for api.openweathermap.org to localhost. Hurrah! Successfully intercepted!</p>
<p><img src="http://sermoa.files.wordpress.com/2013/05/screen-shot-2013-05-18-at-21-36-50.png?w=593&#038;h=332" alt="Intercepted API" width="593" height="332" class="alignnone size-full wp-image-1620" /></p>
<p>And of course, my app, running locally, encounters the same thing.</p>
<p><img src="http://sermoa.files.wordpress.com/2013/05/screen-shot-2013-05-18-at-21-38-50.png?w=593&#038;h=332" alt="App broken because i have intercepted the API" width="593" height="332" class="alignnone size-full wp-image-1621" /></p>
<p>Now i can put the data that i want there. Oh, there&#8217;s a catch: we have to run on port 80. But that&#8217;s okay, we can do that. Considering it means the app will be completely unaware of the change, i think that&#8217;s a small price to pay.</p>
<p><strong>Introducing RackDoubles</strong></p>
<p><a href="https://github.com/anthonygreen/rack_doubles">RackDoubles</a> allows you to create, change and remove endpoints at runtime.</p>
<p>Start off with a very simple <code>config.ru</code> file to run a Rack app that uses RackDoubles. You have to define a <code>run</code> method but it&#8217;s as simple as it could possibly be.</p>
<pre class="brush: ruby; light: true; title: ; notranslate">
require 'rack_doubles'
use RackDoubles::Middleware

run lambda { |e|
  [404, {'Content-Type' =&gt; 'text/plain'}, ['Not found']]
}
</pre>
<p>Because we need it on port 80, we have to use <code>sudo</code> to run it, or in my case <code>rvmsudo</code> because i use and love <a href="https://rvm.io/">Ruby Version Manager</a>.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
rvmsudo rackup -p 80
</pre>
<p>And just leave it running. The magic is about to happen.</p>
<p>Now, watch this. Here&#8217;s what we&#8217;re going for:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
  Scenario: Report says it's going to be clear
    Given the weather API is stubbed to return &quot;Bristol.json&quot;
    When I look at the weather report for &quot;Bristol&quot;
    Then I should see the weather is &quot;Sky is Clear&quot;
</pre>
<p>I have saved the JSON i want into a file <code>features/support/stubs/Bristol.json</code></p>
<p>So let&#8217;s use RackDoubles to set up the stub response:</p>
<pre class="brush: ruby; light: true; title: ; notranslate">
def client
  RackDoubles::Client.new('http://127.0.0.1')
end

Given /^the weather API is stubbed to return &quot;(.*?)&quot;$/ do |filename|
  response = File.read(File.join(File.dirname(__FILE__),
                       '..', 'support', 'stubs', filename))
  client.stub('/data/2.5/weather')
  .to_return(200,
             {'Content-Type' =&gt; 'application/json'},
             response)
end
</pre>
<p>Now the data is entirely under my control. The test passes.</p>
<p>The best news is, now i have the opportunity to simulate bad data from the API. And did you spot the 200 status code there? I can easily write a step definition to stub the API to return a 503 Service Unavailable, to see how the app handles that.</p>
<pre class="brush: plain; light: true; title: ; notranslate">
  Scenario: API is unavailable
    Given the weather API is unavailable
    When I look at the weather report for &quot;Bristol&quot;
    Then I should see &quot;Please try again later&quot;
</pre>
<p>Here&#8217;s the step definition:</p>
<pre class="brush: ruby; light: true; title: ; notranslate">
Given /^the weather API is unavailable$/ do
  client.stub('/data/2.5/weather')
  .to_return(503,
             {'Content-Type' =&gt; 'text/plain'},
             'Service unavailable')
end
</pre>
<p>Now if that test fails i have something to tell the developers about. I can easily demonstrate a scenario in which the API is unavailable. These are things that a manual tester cannot easily do. A developer might simulate them with unit tests, but i am able to test it in a reliable, repeatable way that may not be a full end-to-end test, but i think it&#8217;s a pretty good integration test.</p>
<p>Of course, there is still a need for full end-to-end test coverage, but i think that&#8217;s best covered by manual exploratory and smoke testing, which are still necessary and highly valuable. As Developers in Test, we have the skills to make life a bit easier for ourselves and our teams, so let&#8217;s use them.</p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/bdd/'>bdd</a>, <a href='http://sermoa.wordpress.com/category/developer-in-test/'>developer in test</a>, <a href='http://sermoa.wordpress.com/category/tdd/'>tdd</a>, <a href='http://sermoa.wordpress.com/category/testing/'>testing</a>, <a href='http://sermoa.wordpress.com/category/work/'>work</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1603/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1603/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1603&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2013/05/19/testing-apps-that-depend-on-external-services-or-apis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>

		<media:content url="http://sermoa.files.wordpress.com/2013/05/screen-shot-2013-05-18-at-20-42-07.png" medium="image">
			<media:title type="html">Weather in Bristol</media:title>
		</media:content>

		<media:content url="http://sermoa.files.wordpress.com/2013/05/screen-shot-2013-05-18-at-21-36-50.png" medium="image">
			<media:title type="html">Intercepted API</media:title>
		</media:content>

		<media:content url="http://sermoa.files.wordpress.com/2013/05/screen-shot-2013-05-18-at-21-38-50.png" medium="image">
			<media:title type="html">App broken because i have intercepted the API</media:title>
		</media:content>
	</item>
		<item>
		<title>A typing tutor for the visually impaired</title>
		<link>http://sermoa.wordpress.com/2013/01/19/a-typing-tutor-for-the-visually-impaired/</link>
		<comments>http://sermoa.wordpress.com/2013/01/19/a-typing-tutor-for-the-visually-impaired/#comments</comments>
		<pubDate>Sat, 19 Jan 2013 21:35:48 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[colemak]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[typing]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1600</guid>
		<description><![CDATA[I have just had a very interesting conversation with Kajarii where we discussed keyboards ergonomics, alternative keyboard layouts, and typing tutors. Kajarii is blind and touch types on a QWERTY keyboard, having learned by trial and error from a young &#8230; <a href="http://sermoa.wordpress.com/2013/01/19/a-typing-tutor-for-the-visually-impaired/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1600&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have just had a very interesting conversation with <a href="http://twitter.com/kajarii">Kajarii</a> where we discussed keyboards ergonomics, alternative keyboard layouts, and typing tutors.</p>
<p>Kajarii is blind and touch types on a QWERTY keyboard, having learned by trial and error from a young age. Kajarii would like to learn colemak keyboard layout, but made a really good point: how do you learn a new keyboard layout when you can&#8217;t even see what the layout should look like and you have no feedback from what you&#8217;ve typed?</p>
<p>Once i thought about it, i realised that every typing tutor i&#8217;ve ever seen has relied heavily on being able to see. You have to look at what you&#8217;re meant to type, there is usually some kind of layout diagram that highlights the key, and quite often the use of colour for feedback if you have typed correctly, and the cursor moves on to the next letter. They are no good at all for somebody without the privilege of sight.</p>
<p>I think i could quite easily teach a blind person to touch type if we sat down side by side. I&#8217;d start with the index fingers on the home row, tell them what the letters are, give instructions of short bursts of letters to type, and give verbal feedback on what they typed. Like most typing tutors do, i&#8217;d gradually introduce new letters and form words to type using the letters learned so far. I can see this working well with one-on-one human interaction.</p>
<p>So can that be translated to an accessible typing tutor program? I think it probably could be. I would like to try. What would it be like? A terminal based app? A web app? A native desktop app? Would it rely on screen reader technology, or use pre-recorded instructions? I need the input of visually impaired people to know what would be most useful.</p>
<p>Is there anyone out there who would like to help write an accessible typing tutor? Anybody who would like to help test one?</p>
<p>Could we do an open source effort? Something that is extensible to adding different keyboard layouts? There are accessible typing tutors and there are typing tutors that support colemak, but i don&#8217;t think there is an overlap.</p>
<p>Please leave a comment if you are interested in helping to create something, or have some ideas about how it could be.</p>
<p>I guess i will never understand just how privileged i am to be blessed with both sight and hearing, but i am interested to learn more about accessibility issues, and i at least *want* to care more about the kind of difficulties i hope i will never have to face.</p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/accessibility/'>accessibility</a>, <a href='http://sermoa.wordpress.com/category/colemak/'>colemak</a>, <a href='http://sermoa.wordpress.com/category/computer/'>computer</a>, <a href='http://sermoa.wordpress.com/category/keyboard/'>keyboard</a>, <a href='http://sermoa.wordpress.com/category/learn-to-type-week/'>typing</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1600/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1600/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1600&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2013/01/19/a-typing-tutor-for-the-visually-impaired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>
	</item>
		<item>
		<title>Colemak roundup</title>
		<link>http://sermoa.wordpress.com/2012/06/12/colemak/</link>
		<comments>http://sermoa.wordpress.com/2012/06/12/colemak/#comments</comments>
		<pubDate>Tue, 12 Jun 2012 21:13:34 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[colemak]]></category>
		<category><![CDATA[dvorak]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[typing]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1595</guid>
		<description><![CDATA[I have written a few times about colemak keyboard layout, its benefits, how i switched, and advice for other people wishing to make the switch. This is not going to add anything new; i just want a place i can &#8230; <a href="http://sermoa.wordpress.com/2012/06/12/colemak/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1595&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have written a few times about colemak keyboard layout, its benefits, how i switched, and advice for other people wishing to make the switch. This is not going to add anything new; i just want a place i can point people to, and they can find all the information.</p>
<p>When i add new colemak-related posts in the future, i&#8217;ll also add them here, use it like an index.</p>
<p><strong><a href="http://sermoa.wordpress.com/when-why-did-you-decide-to-switch-to-colemak/">Ask aimee: When/why did you decide to switch to Colemak?</a></strong><br />
Includes the history of QWERTY, Dvorak and Colemak, and my own personal typing journey so far.</p>
<p><strong><a href="http://sermoa.wordpress.com/colemak-is-easy-to-learn/">Colemak is easy to learn</a></strong><br />
An encouragement to newcomers that Colemak is not so different from QWERTY. Also highlights the advantages of Colemak as compared to Dvorak.</p>
<p><strong><a href="http://sermoa.wordpress.com/how-to-learn-colemak/">How to learn Colemak</a></strong><br />
If you&#8217;ve made the decision to switch, here are my tips for how you might go about it.</p>
<p><strong><a href="http://sermoa.wordpress.com/colemak-and-vim-but-what-about-hjkl/">Colemak and vim: &#8220;But what about h/j/k/l?&#8221;</a></strong><br />
For vim users, a common question is how you deal with the direction keys when switching to Colemak. Here is my answer.</p>
<p><strong><a href="http://sermoa.wordpress.com/qido-for-colemak-please/">QIDO for Colemak please!</a></strong><br />
A campaign to get a Colemak version of the QWERTY-In-Dvorak-Out USB keyboard adapter.</p>
<p>I love to help people make the switch to Colemak. So if i can encourage you, talk to me on twitter! @<a href="http://twitter.com/sermoa">sermoa</a></p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/colemak/'>colemak</a>, <a href='http://sermoa.wordpress.com/category/dvorak/'>dvorak</a>, <a href='http://sermoa.wordpress.com/category/keyboard/'>keyboard</a>, <a href='http://sermoa.wordpress.com/category/learn-to-type-week/'>typing</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1595/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1595/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1595&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2012/06/12/colemak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>
	</item>
		<item>
		<title>Marriage equality &#8211; what&#8217;s that, then?</title>
		<link>http://sermoa.wordpress.com/2012/05/20/marriage-equality-whats-that-then/</link>
		<comments>http://sermoa.wordpress.com/2012/05/20/marriage-equality-whats-that-then/#comments</comments>
		<pubDate>Sun, 20 May 2012 17:33:05 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[bisexual]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[important]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[sexuality]]></category>
		<category><![CDATA[values]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1582</guid>
		<description><![CDATA[I was once told by an immature teenager that my gloves were gay. It wasn&#8217;t even my rainbow gloves, which i&#8217;d have to admit, yeah, they&#8217;re pretty gay! Even my purple gloves, i&#8217;d concede that the kid had a point. &#8230; <a href="http://sermoa.wordpress.com/2012/05/20/marriage-equality-whats-that-then/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1582&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I was once told by an immature teenager that my gloves were gay. It wasn&#8217;t even my rainbow gloves, which i&#8217;d have to admit, yeah, they&#8217;re pretty gay!</p>
<p><a target='_blank' title='Gay Gloves' href='http://yfrog.com/odm39yjj'><img src='http://a.yfrog.com/img877/362/m39yj.jpg' border='0' /></a></p>
<p>Even my purple gloves, i&#8217;d concede that the kid had a point. No, it was my white and black striped gloves; they&#8217;re not even gaily coloured!</p>
<p>&#8220;Your gloves are GAY!&#8221;</p>
<p>So i said, &#8220;Oh really? Do you think they are attracted to other gloves of the same gender?&#8221;</p>
<p>To me the term &#8220;gay marriage&#8221; is as ridiculous a concept as &#8220;gay gloves&#8221;. Marriage doesn&#8217;t have a sexuality. And if you&#8217;re trying to say it&#8217;s for gay people, no it&#8217;s not. It affects bi, trans and straight people too, in all kinds of combinations. What we&#8217;re really looking for is an equality of marriage: the same opportunities available to everyone.</p>
<p>Some examples:</p>
<p>1. Tom Freeman and Katherine Doyle have been trying for nearly two years to get a civil partnership, because they don&#8217;t want the historical baggage associated with marriage. They have been denied because of their sexuality: they are both straight.</p>
<p>2. A friend of mine changed gender and had to get divorced and form a civil partnership instead, in order to achieve gender recognition.</p>
<p>3. I am bisexual and married to a man. Do we have a straight marriage? If i had wanted to marry a woman, would it be a gay marriage? No, because i am not gay.</p>
<p>4. Gay people can get married right now! There&#8217;s nothing to stop a gay man marrying a gay woman. You might be surprised how often that happens, just for the convenience.</p>
<p>It bothers me whenever i see the term &#8220;gay marriage&#8221;. This morning i saw journalists Emma Kennedy and Victoria Coren both use it, so i tweeted:</p>
<blockquote><p>your periodic reminder that &#8220;marriage equality&#8221; is preferable to &#8220;gay marriage&#8221; .. thank you!</p></blockquote>
<p>Emma agreed with me, but claimed that on twitter, &#8220;gay marriage&#8221; is more convenient, to avoid getting hundreds of tweets asking what &#8220;marriage equality&#8221; means. I didn&#8217;t realise that there was so much ignorance. It can&#8217;t be that hard to explain, surely? I think that if more journalists and politicians would start using the terms &#8220;equal marriage&#8221; or &#8220;marriage equality&#8221; then people would get used to it and understand what it means.</p>
<p>If we can&#8217;t go that far, &#8220;same-sex marriage&#8221; is at least slightly preferable to &#8220;gay marriage&#8221; because it&#8217;s more descriptive, and it doesn&#8217;t exclude bisexual people. It highlights the thing that is currently unequal about marriage. I still don&#8217;t like it because it implies that we&#8217;re talking about a different, separate thing, when what we actually want is equal access to the same thing.</p>
<p>One friend suggested that we should call it &#8220;Marry Who The Fuck You Want&#8221; .. people should be able to grasp that concept! Another friend recommends that we do away with marriage altogether, then we&#8217;d have equality of non-marriage!</p>
<p>It seems that the terminology of this thing is becoming my big bisexual soapbox of 2012, haha! And yes .. i know .. soapboxes do not have a sexuality. Well done if you spotted my irony there! ;)</p>
<p>Relatedly, for anyone who is trying to preserve the &#8220;sanctity of marriage&#8221;, the whole &#8220;one man, one woman&#8221; thing, remember that marriage is a human invention, and is always changing. I loved this poster that i saw the other day.</p>
<p><img src="http://sermoa.files.wordpress.com/2012/05/imagine-how-stupid-you-are-going-to-look-in-40-years.jpg?w=593" alt="" title="Imagine how stupid you are going to look in 40 years"   class="alignnone size-full wp-image-1586" /></p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/bisexual/'>bisexual</a>, <a href='http://sermoa.wordpress.com/category/education/'>education</a>, <a href='http://sermoa.wordpress.com/category/important/'>important</a>, <a href='http://sermoa.wordpress.com/category/politics/'>politics</a>, <a href='http://sermoa.wordpress.com/category/rant/'>rant</a>, <a href='http://sermoa.wordpress.com/category/sexuality/'>sexuality</a>, <a href='http://sermoa.wordpress.com/category/values/'>values</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1582/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1582&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2012/05/20/marriage-equality-whats-that-then/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>

		<media:content url="http://a.yfrog.com/img877/362/m39yj.jpg" medium="image" />

		<media:content url="http://sermoa.files.wordpress.com/2012/05/imagine-how-stupid-you-are-going-to-look-in-40-years.jpg" medium="image">
			<media:title type="html">Imagine how stupid you are going to look in 40 years</media:title>
		</media:content>
	</item>
		<item>
		<title>Automating Cucumber test scripts on a Mac</title>
		<link>http://sermoa.wordpress.com/2012/05/16/automating-test-scripts-on-a-mac/</link>
		<comments>http://sermoa.wordpress.com/2012/05/16/automating-test-scripts-on-a-mac/#comments</comments>
		<pubDate>Wed, 16 May 2012 08:16:38 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[cucumber]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1572</guid>
		<description><![CDATA[I&#8217;m really enjoying my work at the BBC on the Olympics team! I&#8217;m primarily implementing Cucumber scenarios to verify the work that the developers are doing. I&#8217;m also using other tools for stress testing and performance monitoring. My work here &#8230; <a href="http://sermoa.wordpress.com/2012/05/16/automating-test-scripts-on-a-mac/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1572&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m really enjoying my work at the BBC on the Olympics team! I&#8217;m primarily implementing Cucumber scenarios to verify the work that the developers are doing. I&#8217;m also using other tools for stress testing and performance monitoring.</p>
<p>My work here is leading me to use Cucumber in weird and wonderful ways! Here&#8217;s an example. Yesterday i was asked to run a script every half an hour that tests the Olympics video player to see if it&#8217;s playing successfully, and if not, to email people to say that it&#8217;s broken. Not your usual Cucumber scenario, but amazingly enough, it can be used to do that!</p>
<p>Forgive the jargon below. PID is a programme identifier, and IVP is the Interactive Video Player that we are building.</p>
<pre>  Scenario: Check LIVE video player
    Given a live PID 
    When I check the IVP 
    Then I should email people if anything goes wrong</pre>
<p>I can use a combination of javascript hooks and taking screenshots a few seconds apart and comparing them to tell whether the video is running. I decided to run some step definitions that i&#8217;ve already defined and rescue any errors to be emailed. There are a few more steps in here but i&#8217;ve stripped it down a bit for simplicity.</p>
<pre>When /^I check the IVP$/ do                                                                         
  if @pid
    begin
      step 'I attempt to view the IVP host page with that PID'
      step 'the video should be ready'
      step 'the video should be playing'
    rescue Exception =&gt; e
      @error = e.message
    end
  end
end</pre>
<p>Notice that there might not actually be a live PID at the moment. It feels very weird, to put conditional logic in Cucumber step definitions like this!</p>
<p>Now comes the email part. I used Pony and sendmail as a simple email sending mechanism.</p>
<pre>Then /^I should email people if anything goes wrong$/ do
  if @pid &amp;&amp; @error
    subject = "Assurance test failed in #{ENV['ENVIRONMENT']}!"
    body = "#{page.current_url} caused this error: #{@error}"
    recipients = ['send_to@me.co.uk']

    Pony.mail(:to =&gt; recipients,
              :subject =&gt; subject,
              :body =&gt; body,
              :via =&gt; :sendmail)
  end
end</pre>
<p>So, with that working, i set about putting it on a schedule. I thought i could just call the script from a cron task, but it turns out that wouldn&#8217;t work because i need to launch Firefox with Selenium to test the flash player.</p>
<p>I found this cool built-in Mac tool called Automator. You can set up all sorts of tasks into a workflow. I just needed a simple shell script:</p>
<p><a href="http://sermoa.files.wordpress.com/2012/05/screen-shot-2012-05-16-at-09-08-13.png"><img src="http://sermoa.files.wordpress.com/2012/05/screen-shot-2012-05-16-at-09-08-13.png?w=593&#038;h=358" alt="" title="Automator running a shell script" width="593" height="358" class="alignnone size-full wp-image-1577" /></a></p>
<p>And now, we can call that from a cron job every 30 minutes! You might have to hunt around a bit for where it saves the file. For me it&#8217;s in my Library/Services.</p>
<pre>*/30 * * * * automator /Users/daniea16/Library/Services/IVP\ Test.workflow</pre>
<p>Another creative alternative to the cron job is to set up recurring calendar appointments in iCal. You can set an alarm that runs a script. Pretty awesome, hey?! :)</p>
<p>I know Cucumber is meant to be a BDD framework, and was never intended to be used for automated regression testing or assurance testing, but isn&#8217;t it cool that with a little bit of imagination you can bend it to fit these alternative uses? :)</p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/cucumber/'>cucumber</a>, <a href='http://sermoa.wordpress.com/category/mac/'>mac</a>, <a href='http://sermoa.wordpress.com/category/testing/'>testing</a>, <a href='http://sermoa.wordpress.com/category/work/'>work</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1572/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1572/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1572&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2012/05/16/automating-test-scripts-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>

		<media:content url="http://sermoa.files.wordpress.com/2012/05/screen-shot-2012-05-16-at-09-08-13.png" medium="image">
			<media:title type="html">Automator running a shell script</media:title>
		</media:content>
	</item>
		<item>
		<title>Hampshire humanists going from strength to strength!</title>
		<link>http://sermoa.wordpress.com/2012/05/06/hampshire-humanists-going-from-strength-to-strength/</link>
		<comments>http://sermoa.wordpress.com/2012/05/06/hampshire-humanists-going-from-strength-to-strength/#comments</comments>
		<pubDate>Sun, 06 May 2012 13:20:58 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[atheism]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[humanism]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1567</guid>
		<description><![CDATA[A little over a year ago, my friend Sarah and i decided to start a meetup group for humanists, secularists, atheists and agnostics to get together and chat informally over a cup of coffee. We started meeting on sunday mornings &#8230; <a href="http://sermoa.wordpress.com/2012/05/06/hampshire-humanists-going-from-strength-to-strength/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1567&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A little over a year ago, my friend Sarah and i decided to start a meetup group for humanists, secularists, atheists and agnostics to get together and chat informally over a cup of coffee. We started meeting on sunday mornings at Green&#8217;s Wine Bar, Jewry Street, Winchester.</p>
<p>From a small beginning with nothing but a bit of tweeting and word of mouth, we now have a regular meetup on the first sunday of each month, usually with about 15-20 people attending. It attracts a lovely bunch of people who all enjoy making conversation together. We usually eat breakfast there and spend the whole morning chatting. If one of us is going through a difficult time, the others are there to provide support and practical help. Today one of the group brought cakes to share, to celebrate another person&#8217;s birthday! There were 4 kids there today, who played games with each other!</p>
<p>We are planning a humanist picnic, walk and afternoon of music making on saturday 16th june. Contact me if you&#8217;re interested in coming along! We also want to do a stargazing night up at Farley Mount in the near future!</p>
<p>In fact, the group is going so well, we&#8217;re planning to start another one in Southampton. A lot of us feel that once a month isn&#8217;t enough, and we know there are some people in Southampton who would like to come, but find it difficult to get to Winchester. So i&#8217;m thinking a mid-month humanist meetup in Southampton would be great! Same informal format: just turn up if you&#8217;re interested. Possibly at the <a href="http://www.thearthousesouthampton.co.uk/">Art House</a>, which opens at midday on a sunday. Maybe start in two weeks: on the 20th may? :)</p>
<p>Please follow @<a href="http://twitter.com/hantshumanist">hantshumanist</a> on twitter for news and updates!</p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/atheism/'>atheism</a>, <a href='http://sermoa.wordpress.com/category/friends/'>friends</a>, <a href='http://sermoa.wordpress.com/category/humanism/'>humanism</a>, <a href='http://sermoa.wordpress.com/category/social/'>social</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1567/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1567&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2012/05/06/hampshire-humanists-going-from-strength-to-strength/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>
	</item>
		<item>
		<title>An apology from Colin and Matt</title>
		<link>http://sermoa.wordpress.com/2012/04/29/an-apology-from-colin-and-matt/</link>
		<comments>http://sermoa.wordpress.com/2012/04/29/an-apology-from-colin-and-matt/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 11:53:25 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[promotions]]></category>
		<category><![CDATA[winchester]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1556</guid>
		<description><![CDATA[I listen to a great radio show on Amazing Radio on saturday mornings. It&#8217;s called The Saturday Show with Colin and Matt, hosted by funny guys Colin Greaves and Matt Horne (no not that one!) .. i really enjoy their &#8230; <a href="http://sermoa.wordpress.com/2012/04/29/an-apology-from-colin-and-matt/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1556&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I listen to a great radio show on <a href="http://amazingradio.co.uk/">Amazing Radio</a> on saturday mornings. It&#8217;s called The Saturday Show with Colin and Matt, hosted by funny guys Colin Greaves and Matt Horne (no not that one!) .. i really enjoy their banter, the riddle, the burning question, the quirky news roundup, and the music they play.</p>
<p>A few weeks ago the burning question was: <strong>&#8220;The Postal Service! It&#8217;s a bit rubbish, really, isn&#8217;t it?&#8221;</strong> and because they were discussing the postal service, they thought it would be fun to ask for answers on a postcard. So i sent them a postcard. I didn&#8217;t have time to choose a funny one, or one with boobs on, which i know would have made them happy. So i sent them a scene of Winchester from my favourite local artist, <a href="http://www.josephinechisholm-artist.co.uk/">Josephine Chisholm</a>.</p>
<p>They received it the following week. They tweeted about it and posted this picture.</p>
<p><img src="http://sermoa.files.wordpress.com/2012/04/postcard.jpg?w=593" alt="" title="Postcard of Winchester"   class="alignnone size-full wp-image-1557" /></p>
<p>To me, that is iconic Winchester. The Buttercross, the old architecture, busking, St Giles&#8217; Hill.</p>
<p>Matt liked it, but Colin wasn&#8217;t impressed. Comments such as: &#8220;That could be anywhere!&#8221; and insinuations that people in Winchester are all farmers. I remember the comment &#8220;Is that a wheelbarrow?&#8221; particularly stung! And of course, the lack of boobs was mentioned.</p>
<p>Anyway, so yesterday was a saturday and my partner and i decided to listen to XFM instead. I took part in Colin &amp; Matt&#8217;s riddle on twitter, but let them know that i wasn&#8217;t listening because of the postcard comments!</p>
<p>Colin asked for my email address. I was hesitant, but figured it&#8217;s easily found on the internet so i sent Colin my email address.</p>
<p>Then today i received this!</p>
<blockquote><p>Dear Aimee, a fan of our Saturday Show,<br />
This is just a quick email, good morning, hello.<br />
You sent us a postcard, the only one we&#8217;ve ever got,<br />
And I said some bad things, am I proud? I am not.</p>
<p>You see, it&#8217;s not that I genuinely thought it was bad,<br />
I thought it was great, I was happy, I was glad.<br />
But for comedic effect, I said it was dire,<br />
I&#8217;d come to regret this as things did transpire.</p>
<p>I&#8217;m so very sorry if you took offence to my ribbing,<br />
If I said I didn&#8217;t care, I&#8217;d only be fibbing.<br />
Our fans mean the world to us and you&#8217;re one of the best,<br />
Upsetting or offending you leaves me rather distressed.</p>
<p>Please accept my sincere apologies, the postcard was ace,<br />
We&#8217;ve even put it up on the wall, it&#8217;s taken centre place.<br />
I&#8217;d hate for you to think we don&#8217;t appreciate our fans,<br />
Going around insulting people is not part of our plans.</p>
<p>So I&#8217;m sorry, and thank you for being an absolute gem,<br />
And please don&#8217;t stop listening and changing to XFM!</p></blockquote>
<p>HOW SWEET IS THAT?!?!!</p>
<p>I&#8217;ve never had a personal poem written by a radio DJ before, it was so lovely! Of course, Colin is fully forgiven, and i&#8217;ll be listening again from next week!</p>
<p>But just in case that wasn&#8217;t enough, Colin also drew a picture for me!</p>
<p><img src="http://sermoa.files.wordpress.com/2012/04/sadness.png?w=593&#038;h=256" alt="" title="Sadness, by Colin Greaves" width="593" height="256" class="alignnone size-full wp-image-1560" /></p>
<p>What can i say? I&#8217;m truly blessed!</p>
<p>I heartily recommend <a href="http://amazingradio.co.uk/shows/saturdayshow">The Saturday Show with Colin and Matt</a>. You can find it 9am-12pm every saturday on Amazing Radio on DAB, or listen online: <a href="http://amazingradio.co.uk/">amazingradio.co.uk</a></p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/music/'>music</a>, <a href='http://sermoa.wordpress.com/category/promotions/'>promotions</a>, <a href='http://sermoa.wordpress.com/category/winchester/'>winchester</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1556/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1556&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2012/04/29/an-apology-from-colin-and-matt/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>

		<media:content url="http://sermoa.files.wordpress.com/2012/04/postcard.jpg" medium="image">
			<media:title type="html">Postcard of Winchester</media:title>
		</media:content>

		<media:content url="http://sermoa.files.wordpress.com/2012/04/sadness.png" medium="image">
			<media:title type="html">Sadness, by Colin Greaves</media:title>
		</media:content>
	</item>
		<item>
		<title>The Facebook Food List Challenge for vegans and vegetarians</title>
		<link>http://sermoa.wordpress.com/2012/04/15/the-facebook-food-list-challenge-for-vegans-and-vegetarians/</link>
		<comments>http://sermoa.wordpress.com/2012/04/15/the-facebook-food-list-challenge-for-vegans-and-vegetarians/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 11:28:10 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[vegan]]></category>
		<category><![CDATA[vegetarian]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1543</guid>
		<description><![CDATA[I am doing the 100 Food List Challenge on Facebook. I&#8217;m interested to see how many can be eaten by vegans and vegetarians. I didn&#8217;t know what a lot of the foods were, so this involved a bit of research. &#8230; <a href="http://sermoa.wordpress.com/2012/04/15/the-facebook-food-list-challenge-for-vegans-and-vegetarians/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1543&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I am doing the <a href="http://apps.facebook.com/foodlistchallenge/">100 Food List Challenge</a> on Facebook. I&#8217;m interested to see how many can be eaten by vegans and vegetarians. I didn&#8217;t know what a lot of the foods were, so this involved a bit of research.</p>
<p>I will present food as vegan if i think it could be made vegan and still count for ticking off the list. Don&#8217;t assume that because i say (for example) Borscht can be made vegan that it is always vegan. Some things like Currywurst and S&#8217;mores are almost never vegan, and you&#8217;ll have to look very hard to find a vegan version. But that&#8217;s all part of the challenge, right?! ;)</p>
<h2>Vegan</h2>
<p><strong>2. Absinthe</strong> &#8211; as with all alcohol, check the filtering process<br />
<strong>4. Baba Ghanoush</strong> &#8211; made with aubergine, chickpeas and tahini<br />
<strong>6. Baklava</strong> &#8211; can be vegan, but check for butter in the filo pastry<br />
<strong>8. Bellini</strong> &#8211; an Italian fruit cocktail usually containing Prosecco so make sure the Prosecco is good for vegans<br />
<strong>10. Biscuits and gravy</strong> &#8211; American biscuit bread is like British scones. I&#8217;m sure you can make a vegan version!<br />
<strong>12. Black truffle</strong> &#8211; truffles are picked from underground mushrooms<br />
<strong>13. Borscht</strong> &#8211; mainly beetroot and cabbage, but be careful, it often contains beef, and maybe butter<br />
<strong>20. Chile Relleno</strong> &#8211; a stuffed poblano pepper, may contain meat, cheese and egg, but i&#8217;m sure a vegan variation would still count<br />
<strong>22. Churros</strong> &#8211; deep fried doughnut sticks, can be made vegan but don&#8217;t assume they are<br />
<strong>24. Cognac</strong> &#8211; vegan cognac is available<br />
<strong>27. Currywurst</strong> &#8211; it&#8217;s German sausage. not usually vegan, but if you look hard you could find one<br />
<strong>28. Dandelion Wine</strong> &#8211; obviously check the wine<br />
<strong>30. Durian</strong> &#8211; a South Asian fruit from the durian tree, custardy almondy flavour<br />
<strong>35. Fresh Spring Rolls</strong> &#8211; vegetables wrapped in rice paper, not fried, may contain meat so be careful<br />
<strong>37. Fried Green Tomatoes</strong> &#8211; but check what it&#8217;s fried in<br />
<strong>38. Fried Plantain</strong> &#8211; usually covered in batter so watch out for milk, egg and butter<br />
<strong>39. Frito Pie</strong> &#8211; corn chips and chili baked as a casserole, caution: may contain cheese<br />
<strong>42. Funnel Cake</strong> &#8211; basically fried batter, i think there could be a vegan version<br />
<strong>43. Gazpacho</strong> &#8211; a tomato-based vegetable soup, usually vegan but can contain meat stock or seafood<br />
<strong>46. Goulash</strong> &#8211; Hungarian soup, usually contains beef, but vegan versions are available<br />
<strong>47. Gumbo</strong> &#8211; a southern Louisiana stew that often contains meat or fish, but could be made vegan<br />
<strong>48. Haggis</strong> &#8211; usually contains sheep offal, but vegan haggis is easily found, and still counts<br />
<strong>50. Heirloom Tomatoes</strong> &#8211; open-pollinated hand-cultivated tomatoes in a variety of shapes and colours<br />
<strong>60. Mimosa</strong> &#8211; half champagne, half orange juice &#8211; look for vegan champagne<br />
<strong>62. Morel Mushrooms</strong> &#8211; a spongy, slightly toxic mushroom<br />
<strong>63. Nettle Tea</strong> &#8211; buy from a health food shop, or put on some gloves and pick your own to boil<br />
<strong>66. Paella</strong> &#8211; it often contains meat or fish but can be made just with vegetables; paella is a Catalan word for the large shallow pan<br />
<strong>70. Phaal</strong> &#8211; a curry hotter than vindaloo, often contains meat but could be made for vegans, though watch out for ghee<br />
<strong>72. Pho</strong> &#8211; Vietnamese rice noodle stew, vegan versions usually substitute meat with tofu<br />
<strong>74. Pistachio Ice Cream</strong> &#8211; yes, dairy-free pistachio ice cream exists!<br />
<strong>75. Po&#8217; Boy</strong> &#8211; Louisiana submarine sandwich, normally contain meat but vegan versions are available<br />
<strong>77. Polenta</strong> &#8211; ground cornmeal<br />
<strong>78. Prickly Pear</strong> &#8211; the fruit of a paddle cactus<br />
<strong>81. Root Beer Float</strong> &#8211; make your own with dairy-free ice cream<br />
<strong>82. S&#8217;mores</strong> &#8211; good luck finding vegan graham crackers and vegan marshmallows; it&#8217;s tricky but not impossible<br />
<strong>83. Sauerkraut</strong> &#8211; fermented cabbage<br />
<strong>89. Som Tam</strong> &#8211; a Thai salad based on shredded papaya; often vegan but as with all Thai food, watch out for fish sauce<br />
<strong>90. Spaetzle</strong> &#8211; German egg noodles, you can make a vegan version<br />
<strong>94. Sweet Potato Fries</strong> &#8211; just check what they&#8217;re fried in<br />
<strong>96. Tom Yum</strong> &#8211; a spicy clear soup from Thailand, many variations including some vegan ones<br />
<strong>97. Umeboshi</strong> &#8211; Japanese dried and pickled ume fruit<br />
<strong>99. Wasabi Peas</strong> &#8211; dried peas coated with wasabi, Japanese horseradish<br />
<strong>100. Zucchini Flowers</strong> &#8211; they are usually served stuffed with something, so check for that</p>
<p><em>Vegan target: 43</em></p>
<h2>Vegetarian</h2>
<p><em>All of the above, plus &#8230;</em></p>
<p><strong>9. Bird&#8217;s nest soup</strong> &#8211; a Chinese delicacy made from a dissolved nest built from the saliva of a swift<br />
<strong>51. Honeycomb</strong> &#8211; the wax built by honey bees</p>
<p><em>Vegetarian target: 45</em></p>
<h2>Lacto-ovo vegetarian</h2>
<p><em>All of the above, plus &#8230;</em></p>
<p><strong>17. Cheese fondue</strong> &#8211; watch out for rennet in the cheese<br />
<strong>29. Dulche De Leche</strong> &#8211; slowly simmered sugar and milk<br />
<strong>32. Eggs Benedict</strong> &#8211; poached egg on English muffin, check for free range eggs<br />
<strong>45. Goat&#8217;s Milk</strong><br />
<strong>53. Huevos Rancheros</strong> &#8211; fried eggs on corn tortillas with tomato and chili sauce<br />
<strong>56. Key Lime Pie</strong> &#8211; probably vegetarian, but check the ingredients for gelatin or animal fat<br />
<strong>58. Lassi</strong> &#8211; an Indian yoghurt drink mixed with spices<br />
<strong>67. Paneer</strong> &#8211; it&#8217;s a curd cheese of Indian origin<br />
<strong>69. Pavlova</strong> &#8211; meringue, cream and fruit<br />
<strong>73. Pineapple and Cottage Cheese</strong> &#8211; cottage cheese does not contain rennet, but might contain gelatin<br />
<strong>76. Pocky</strong> &#8211; Japanese chocolate covered biscuit sticks, the original contains animal shortening but Mikado, the UK equivalent, is suitable for vegetarians</p>
<p><em>Lacto-ovo vegetarian target: 56</em></p>
<h2>Pescetarian</h2>
<p><em>All of the above, plus &#8230;</em></p>
<p><strong>1. Abalone</strong> &#8211; it&#8217;s sea snails<br />
<strong>5. Bagel and Lox</strong> &#8211; Lox is salmon fillet<br />
<strong>14. Calamari</strong> &#8211; fried squid<br />
<strong>15. Carp</strong><br />
<strong>16. Caviar</strong> &#8211; definitely not vegetarian because the fish has to be killed to get the eggs<br />
<strong>23. Clam chowder</strong><br />
<strong>25. Crab cakes</strong><br />
<strong>31. Eel</strong><br />
<strong>33. Fish Tacos</strong><br />
<strong>36. Fried Catfish</strong><br />
<strong>41. Fugu</strong> &#8211; it&#8217;s a Japanese pufferfish<br />
<strong>59. Lobster</strong><br />
<strong>80. Raw Oysters</strong><br />
<strong>84. Sea Urchin</strong><br />
<strong>85. Shark</strong><br />
<strong>88. Soft Shell Crab</strong></p>
<p><em>Pescetarian target: 72</em></p>
<h2>Meat-eater</h2>
<p><em>All of the above, plus &#8230;</em></p>
<p><strong>3. Alligator</strong><br />
<strong>7. Barbecue ribs</strong><br />
<strong>11. Black pudding</strong> &#8211; a sausage made from dried blood<br />
<strong>18. Chicken and Waffles</strong><br />
<strong>19. Chicken Tikka Masala</strong><br />
<strong>21. Chitlins</strong> &#8211; pig intestines!<br />
<strong>26. Crickets</strong><br />
<strong>34. Foie Gras</strong> &#8211; the liver of a duck or goose<br />
<strong>40. Frogs Legs</strong><br />
<strong>44. Goat</strong><br />
<strong>49. Head Cheese</strong> &#8211; meat and jelly from the head of a pig, sheep or cow<br />
<strong>52. Hostess Fruit Pie</strong> &#8211; they contain beef fat<br />
<strong>54. Jerk Chicken</strong><br />
<strong>55. Kangaroo</strong><br />
<strong>57. Kobe Beef</strong><br />
<strong>61. MoonPie</strong> &#8211; it contains gelatin<br />
<strong>64. Octopus</strong><br />
<strong>65. Oxtail Soup</strong> &#8211; literally made with the tail of a cow<br />
<strong>68. Pastrami on Rye</strong> &#8211; pastrami is preserved meat, usually from beef, sometimes pork or mutton<br />
<strong>71. Philly Cheese Steak</strong> &#8211; steak and cheese in a long roll<br />
<strong>79. Rabbit Stew</strong><br />
<strong>86. Snail</strong><br />
<strong>87. Snake</strong><br />
<strong>91. Spam</strong> &#8211; spiced ham, munged up and shoved in a tin<br />
<strong>92. Squirrel</strong><br />
<strong>93. Steak Tartare</strong><br />
<strong>95. Sweetbreads</strong> &#8211; glands taken from the throat, heart or stomach of a calf or lamb<br />
<strong>98. Venison</strong> &#8211; the meat of a game animal such as deer, antelope, wild boar</p>
<p><em>Meat-eater target: 100</em></p>
<p>So there we have it! :) Please correct me if you spot any mistakes! Happy eating, whether you choose to do it all, or go for a subset.</p>
<p>I just found <a href="http://www.blogher.com/frame.php?url=http://bittersweetblog.wordpress.com/2008/08/21/the-vegans-hundred/">The Vegan&#8217;s Hundred</a> which is a full list of 100 things that are animal-free or can be made vegan, which are worth trying! :)</p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/food/'>food</a>, <a href='http://sermoa.wordpress.com/category/vegan/'>vegan</a>, <a href='http://sermoa.wordpress.com/category/vegetarian/'>vegetarian</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1543/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1543&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2012/04/15/the-facebook-food-list-challenge-for-vegans-and-vegetarians/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>
	</item>
		<item>
		<title>The power of twitter!</title>
		<link>http://sermoa.wordpress.com/2012/03/14/the-power-of-twitter/</link>
		<comments>http://sermoa.wordpress.com/2012/03/14/the-power-of-twitter/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 23:08:47 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web 2.x]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1539</guid>
		<description><![CDATA[I wanted to recall a book i read a few years ago. The trouble was, i remembered very little about it, but i think a friend of mine might like it. Google was proving absolutely useless. Time to turn to &#8230; <a href="http://sermoa.wordpress.com/2012/03/14/the-power-of-twitter/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1539&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I wanted to recall a book i read a few years ago. The trouble was, i remembered very little about it, but i think a friend of mine might like it. Google was proving absolutely useless. Time to turn to the power of twitter!</p>
<p>Ten minutes ago i posted a slightly jokey tweet:</p>
<blockquote><p>i read a book a few years ago. it had a blue cover. any ideas, twitter?!</p></blockquote>
<p>I got a few appropriately jokey answers:</p>
<blockquote><p>did it have a man with a face in it? And that woman with a name?</p>
<p>Conservative Manifesto perhaps: <a href="http://www.amazon.co.uk/Invitation-Join-Government-Britain-Conservative/dp/1905116055/">amazon.co.uk/Invitation-Joi…</a> ;-)</p>
<p>&#8220;Beautiful Code&#8221;?</p>
<p>it&#8217;s that one written by that author. He wrote all that stuff about things.</p></blockquote>
<p>That last one reminded me that the book was written by a female author. I gave a few more clues:</p>
<blockquote><p>the book had some kind of medieval/renaissance/inquisition theme, set in the south of france. author was female, i think.</p>
<p>i seem to recall some sort of circular symbol on the cover, and the title was one fairly long word. i think it&#8217;s historical fantasy.</p>
<p>in the book was some kind of weird cult that met in a room underground. people died in it. come on, someone must have read it!! ;) ;)</p></blockquote>
<p>That was enough for <a href="http://twitter.com/mason_tweet">mason</a> to be confident enough to post a picture. In fact, mason had got it by the time i mentioned the theme and location.</p>
<blockquote><p>if I am right, after all these sarcatic tweets I claim a prize.. (Please wait)</p>
<p>??? If I&#8217;m right then I&#8217;ll probably shit the very bed I just took this picture on. <a href="http://yfrog.com/h4chnuxyj">yfrog.com/h4chnuxyj</a></p></blockquote>
<p><a target='_blank' title='yfrog.com - Image And Video Hosting' href='http://yfrog.com/h4chnuxyj'><img src='http://a.yfrog.com/img616/4797/chnuxy.jpg' border='0' /></a></p>
<p>Indeed, mason was right! <a href="http://www.goodreads.com/book/show/14975.Labyrinth">Labyrinth</a> by Kate Mosse is the book that i was looking for! The power of twitter, hey?! :)</p>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/books/'>books</a>, <a href='http://sermoa.wordpress.com/category/twitter/'>twitter</a>, <a href='http://sermoa.wordpress.com/category/web-2-x/'>web 2.x</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1539/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1539&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2012/03/14/the-power-of-twitter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>

		<media:content url="http://a.yfrog.com/img616/4797/chnuxy.jpg" medium="image" />
	</item>
		<item>
		<title>Where i&#8217;m coming from</title>
		<link>http://sermoa.wordpress.com/2012/02/14/where-im-coming-from/</link>
		<comments>http://sermoa.wordpress.com/2012/02/14/where-im-coming-from/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 23:29:29 +0000</pubDate>
		<dc:creator>sermoa</dc:creator>
				<category><![CDATA[atheism]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[spirituality]]></category>

		<guid isPermaLink="false">http://sermoa.wordpress.com/?p=1534</guid>
		<description><![CDATA[I recently came across this letter that i wrote to God in January 2006 in one of my attempts to rekindle my faith. I think it had been one of my new years resolutions that year to go to church &#8230; <a href="http://sermoa.wordpress.com/2012/02/14/where-im-coming-from/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1534&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I recently came across this letter that i wrote to God in January 2006 in one of my attempts to rekindle my faith. I think it had been one of my new years resolutions that year to go to church and read my bible and be A Good Christian again.</p>
<p>It&#8217;s clear how confused i was, and how much i wanted to believe, even though i had so many doubts. Nothing made sense to me, but i was somehow sure there was some kind of a god or spirit out there, and i obviously really cared about not offending that being.</p>
<p>I want to post it now, so that you can see where i&#8217;ve come from, and why i&#8217;m so much happier now that i&#8217;ve given up worrying about all this stuff!</p>
<blockquote><p>Hello God. I&#8217;ve been missing you. You know I spent last year pretty much ignoring you, or just being indifferent towards you. I was confused and didn&#8217;t know what I believed, so I just chose to ignore you and religion most of the time. And then I was thinking, there&#8217;s something missing in my life, and I made a wild guess that perhaps it was you. Well I&#8217;ve got so much to be thankful for, and I really have a good life: I&#8217;ve got a job that I enjoy (most of the time) and pays me well, I live in a beautiful city and have pretty much everything I need, plus a wonderful partner to share it all with. So if everything&#8217;s so good, why do I feel so sad and empty a lot of the time? Is it that &#8216;God-shaped hole&#8217; that people talk about?</p>
<p>So I thought I&#8217;d go back to church again, I&#8217;d read my Bible again, I&#8217;d pray again. And I mean proper prayers, not my indifferent sort of prayers where I didn&#8217;t really care whether you were listening or not. I thought it was time I started up a proper friendship with you again and got to know you like I knew you when I was little. Only I&#8217;m not sure whether I ever did, or whether I was just convincing myself. It&#8217;s hard to know for certain, you see.</p>
<p>And now I find, you&#8217;re not where I left you. You&#8217;ve gone somewhere else and I can&#8217;t find you where I thought you&#8217;d be. Well to tell the truth, I can&#8217;t go back to where I used to be. I&#8217;ve changed. My childhood beliefs were all based on what other people had told me, and me taking their word for it. I can&#8217;t do that anymore, God. Different people say different things, and I don&#8217;t know who to believe. Who&#8217;s right, who&#8217;s wrong? Or is it all relative? Maybe everyone&#8217;s right, in their own way. Maybe it&#8217;s only with the combination of every belief that we get the full picture. I suspect that any individual view is probably a distorted picture of you &#8230;</p>
<p>Can we ever know you completely, or are you un-knowable and un-fathomable? Are you external, somewhere up there looking over us, or are you internal, the still small voice in my heart? Maybe you&#8217;re my sub-conscience, or maybe my super-conscience? Are you one God, are you a trinity, or are you many? Could you be different things to different people? Is it up to everyone to find their own truth? Is the truth within us, or can we only access you in one way? Did Jesus have all the answers, or was Mohammed right? Did the Buddha really find enlightenment? Is Jesus really the only way to the Father, like he said?</p>
<p>What if I don&#8217;t believe in heaven? Can I still be a Christian if I find that reincarnation seems a more probable theory? Or maybe we&#8217;re just deluding ourselves, and we just die and that&#8217;s it, game over. Well, that seems unlikely, I like to think that some part of us lives on &#8230; but hey, can I just say I don&#8217;t know? Shall we just wait and see? Do I have to have any particular belief?</p>
<p>Will I ever know the truth with absolute certainty? Or do I just have to have &#8216;faith&#8217;? What if blind faith just isn&#8217;t cutting it for me at the moment? Can&#8217;t I find some answers somewhere? Yet if I do, how can I know that I can trust those answers?</p>
<p>Is the Bible as meaningful to us today as it was when it was written? Should it be updated and re-interpreted to fit today&#8217;s world, or does it remain the same for all eternity? Do you have a new word to bring to us today, or is the new word actually just the old word, heard in a new way?</p>
<p>Is there such a thing as a Holy Spirit? Does the Holy Spirit fill me? Has it ever done, or did I just imagine it? Could it have been wishful thinking, getting carried away in the excitement and emotion? If someone prays for the Holy Spirit to fill me, and it doesn&#8217;t feel like anything is happening, is that my fault? Am I too cynical, is that what&#8217;s preventing me from coming near to you? It&#8217;s hard to trust you when I&#8217;m feeling so uncertain.</p>
<p>Do you love me at all times, or are there times when you can&#8217;t bear to look at me because I&#8217;m so sinful? Do I have to earn your favour? Do I have to repent and receive forginevess? Will I be cut off from your love until I do that? Or can I come just as I am to worship you?</p>
<p>Will you help me to be a better person? I don&#8217;t really like myself very much at the moment. I want to be a better person, and I&#8217;ll do my best to change and become more loving, more tolerating more accepting &#8230; and less STRESSED!!! I&#8217;d really appreciate your help, if you&#8217;d like to help me. But you&#8217;ll have to speak a bit louder, God, cos at the moment I honestly just feel like I&#8217;m talking to myself. Still, I&#8217;m here and I&#8217;m willing for you to take me, break me and re-make me, if that&#8217;s what you want to do. It&#8217;s okay with me.</p>
<p>I&#8217;ll try to listen more carefully. Maybe I&#8217;m saying &#8220;Quiet Lord, thy servant is speaking&#8221; when I should be saying &#8220;Speak Lord, thy servant is listening&#8221;. I&#8217;ll make an effort, I promise. We&#8217;ll have some quiet time together today, how&#8217;s that?</p>
<p>Just let me know, yeah? Just give me a sign or something. Or until you do, I&#8217;ll just keep going to church and doing the things that I think might awaken me to you again. At least I know that I want to know you again. Last night I was crying because it felt like you&#8217;d abandoned me. But then I thought that&#8217;s a good thing &#8211; at least I&#8217;m showing some sort of emotion, which I guess is better than indifference. I&#8217;m coming back to you, God, and I hope you&#8217;ll find me.</p>
<p>With love,<br />
aimee<br />
January 2006</p></blockquote>
<p>I can tell that i was heavily influenced by Sara Groves at that time, an artist who i still appreciate. I had also clearly been reading some of the &#8220;Conversations With God&#8221; books by Neale Donald Walsch books. I&#8217;ve no idea why i found reincarnation particularly plausible just then!</p>
<p>Needless to say, i never did really find God again, although i tried hard a few times after this. I even decided at one point to deliberately suspend all rational belief in order to have the blind faith that i thought i needed. It&#8217;s funny what cognitive dissonance can do to us, isn&#8217;t it?</p>
<p>This explains why i am so passionate about science, reasoning and rational thought these days. That is the place i find true comfort; that&#8217;s where things make sense to me.</p>
<p>For more about my current thoughts and beliefs, see:</p>
<ul>
<li><a href="http://sermoa.wordpress.com/the-things-i-believe-now/">The things i believe now</a></li>
<li><a href="http://sermoa.wordpress.com/a-letter-to-my-dad/">A letter to my dad</a> (on coming out as an atheist)</li>
<li><a href="http://sermoa.wordpress.com/isnt-this-enough/">Isn’t this … enough? Just … this?</a></li>
</ul>
<br />Filed under: <a href='http://sermoa.wordpress.com/category/atheism/'>atheism</a>, <a href='http://sermoa.wordpress.com/category/personal/'>personal</a>, <a href='http://sermoa.wordpress.com/category/spirituality/'>spirituality</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sermoa.wordpress.com/1534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sermoa.wordpress.com/1534/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sermoa.wordpress.com&#038;blog=18513183&#038;post=1534&#038;subd=sermoa&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sermoa.wordpress.com/2012/02/14/where-im-coming-from/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/eb2e398ce847e2ca474a74d42d47ff52?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sermoa</media:title>
		</media:content>
	</item>
	</channel>
</rss>
