<?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>Tom Whyntie</title>
	<atom:link href="http://tomwhyntie.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tomwhyntie.wordpress.com</link>
	<description>Personal weblog</description>
	<lastBuildDate>Wed, 22 May 2013 04:58:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tomwhyntie.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/1e836f2ea4a7061e2cfdf713cd03d1ac?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Tom Whyntie</title>
		<link>http://tomwhyntie.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tomwhyntie.wordpress.com/osd.xml" title="Tom Whyntie" />
	<atom:link rel='hub' href='http://tomwhyntie.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Grid Running &#8211; Part Ia</title>
		<link>http://tomwhyntie.wordpress.com/2013/04/04/grid-running-part-ia/</link>
		<comments>http://tomwhyntie.wordpress.com/2013/04/04/grid-running-part-ia/#comments</comments>
		<pubDate>Thu, 04 Apr 2013 20:09:40 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[CERN@school]]></category>
		<category><![CDATA[outreach]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[teaching]]></category>
		<category><![CDATA[#opendata]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[matplotlib]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/?p=2387</guid>
		<description><![CDATA[As a post-script to last week&#8217;s post, here&#8217;s a snippet of Python code that uses the wonderful matplotlib to display a given frame of Timepix data. It takes the Comma Separated Value (CSV) file generated by the frame reader and &#8230; <a href="http://tomwhyntie.wordpress.com/2013/04/04/grid-running-part-ia/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=2387&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As a post-script to <a title="Grid Running - Part I" href="http://tomwhyntie.wordpress.com/2013/03/27/grid-running-part-i/">last week&#8217;s post</a>, here&#8217;s a snippet of Python code that uses the wonderful <a title="The matplotlib homepage." href="http://matplotlib.org/" target="_blank">matplotlib</a> to display a given frame of Timepix data. It takes the Comma Separated Value (CSV) file generated by the frame reader and plots a &#8220;pixel&#8221; at each (x, y) with a colour corresponding to the number of counts measured by that pixel.</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2013/04/ipython_screenshot.jpg"><img class="aligncenter size-full wp-image-2391" alt="iPython_screenshot" src="http://tomwhyntie.files.wordpress.com/2013/04/ipython_screenshot.jpg?w=584"   /></a></p>
<p>I&#8217;ve added the Python code to the <a title="The CERNastschool-frame-reader on github." href="https://github.com/twhyntie/CERNatschool-frame-reader" target="_blank">github repository</a> as <a title="The display.py script on github." href="https://github.com/twhyntie/CERNatschool-frame-reader/blob/master/display.py" target="_blank">display.py</a>, but it&#8217;s also included below so you can use it however you like. I&#8217;ve been having a lot of fun with <a title="The IPython homepage." href="http://ipython.org/index.html" target="_blank">IPython</a> and the <a title="The IPython notebook - browser-based Python fun." href="http://ipython.org/notebook.html" target="_blank">IPython notebook</a> (which you can find out how to install on your own system <a title="Install IPython on your own system." href="http://ipython.org/install.html" target="_blank">here</a>) to do all this on a web browser (screenshot above). But here&#8217;s the source code anyway:</p>
<pre class="brush: python; title: ; notranslate">
###############################################################################
#              CERN@school: A very simple Python frame display                #
###############################################################################
# Author: T. Whyntie - t.whyntie [at] qmul.ac.uk                              #
# Date:   April 2013                                                          #
###############################################################################
#!/bin/env python

# Import what we need from numpy and matplotlib.
from numpy import loadtxt
from matplotlib import pyplot
from matplotlib.patches import Rectangle

# Open the data file - specify the actual filename between the quotes.
datafile = open(&quot;dataout0.csv&quot;, &quot;r&quot;)

# Get the X, Y and C values from the data file.
X, Y, C = loadtxt(datafile, delimiter=&quot;,&quot;, unpack=True)

# Set up the plot area for the frame data.
pyplot.figure().add_subplot(111, aspect='equal') # ensure equal aspect ratio.
pyplot.xlim(0,256)                               # x limits.
pyplot.ylim(0,256)                               # y limits.
pyplot.gca().patch.set_facecolor((0,0,0))        # Black background.

# Select the &quot;hot&quot; colour map for the pixel counts.
cmap = pyplot.cm.hot

# Loop over the pixels extracted from the data file and draw a &quot;pixel&quot;
# in the plot area.
for x, y, c in zip(X, Y, C):
    pyplot.gca().add_patch( \
        Rectangle( # We now define the pixel's &quot;Rectangle&quot;; \
            (x,y), # The location of the pixel (lower-left corner);
            facecolor=cmap(c/C.max()), # The pixel colour (from the map);
            edgecolor='none',          # Edgeless pixels;
            width=1.0, height=1.0,     # Specify the size of the pixel.
            )\
        )

# Display the frame.
pyplot.show()
</pre>
<p>If you didn&#8217;t manage to get the frame reader working/compiling, I&#8217;ve put the CSV files of the test dataset on <a title="The test dataset in CSV format on figshare." href="http://figshare.com/articles/CERNatschool_frame_reader_Test_Dataset_CSV_format/674546" target="_blank">figshare too</a>. Enjoy!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/2387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/2387/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=2387&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2013/04/04/grid-running-part-ia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2013/04/ipython_screenshot.jpg" medium="image">
			<media:title type="html">iPython_screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Grid Running &#8211; Part I</title>
		<link>http://tomwhyntie.wordpress.com/2013/03/27/grid-running-part-i/</link>
		<comments>http://tomwhyntie.wordpress.com/2013/03/27/grid-running-part-i/#comments</comments>
		<pubDate>Wed, 27 Mar 2013 15:35:02 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[CERN@school]]></category>
		<category><![CDATA[outreach]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[#opendata]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[figshare]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/?p=2361</guid>
		<description><![CDATA[I&#8217;ve just given a talk about CERN@school at #GridPP30, the 30th GridPP Collaboration Meeting, at the University of Glasgow. It&#8217;s been a fantastic meeting &#8211; kindly sponsored by Dell &#8211; and it&#8217;s been great to meet everyone and let them &#8230; <a href="http://tomwhyntie.wordpress.com/2013/03/27/grid-running-part-i/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=2361&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve just given a talk about CERN@school at <a title="The #GridPP30 hashtag on Twitter." href="https://twitter.com/search?q=%23GridPP30&amp;src=hash" target="_blank">#GridPP30</a>, the <a title="GridPP30 homepage." href="http://www.gridpp.ac.uk/gridpp30/" target="_blank">30th GridPP Collaboration Meeting</a>, at the <a href="http://www.gla.ac.uk/" target="_blank">University of Glasgow</a>. It&#8217;s been a fantastic meeting &#8211; kindly sponsored by <a href="http://www.dell.co.uk/" target="_blank">Dell</a> &#8211; and it&#8217;s been great to meet everyone and let them know about how CERN@school is having an <a href="http://www.rcuk.ac.uk/kei/impacts/Pages/home.aspx" target="_blank">Impact</a>. If you&#8217;re interested, you can find the slides <a title="The #GridPP30 programme." href="http://www.gridpp.ac.uk/gridpp30/">here</a> (along with the rest of the GridPP30 programme), but in a nutshell it covers what I&#8217;ve been up to for the last six months with a <a title="The GridPP homepage." href="http://www.gridpp.ac.uk/" target="_blank">GridPP</a> flavoured twist. Since my <a title="Getting Back on the Grid" href="http://tomwhyntie.wordpress.com/2013/02/06/getting-back-on-the-grid/">last post</a>, we&#8217;ve now got to the point of running jobs with some custom CERN@school software as a member of the CERN@school <a title="Good ol' Wikipedia." href="http://en.wikipedia.org/wiki/Virtual_organization_(grid_computing)" target="_blank">Virtual Organisation (VO)</a>. The next step is to develop and run the <a title="GEANT4 homepage on the CERN site." href="http://geant4.cern.ch/" target="_blank">GEANT4</a> simulations of the <a title="The Medipix2 homepage (Timepix is an evolution of Medipix2)." href="http://medipix.web.cern.ch/medipix/pages/medipix2.php" target="_blank">Timepix detectors</a> and <a title="SSTL blog post on the LUCID experiment." href="http://www.sstl.co.uk/Blog/February-2013/TechDemoSat-1-s-LUCID--a-novel-cosmic-ray-detector" target="_blank">the LUCID experiment</a>.</p>
<p>For the moment, though, I thought it might be interesting to put into practice something that I&#8217;ve been thinking a lot about recently. For simplicity, the jobs I ran used a custom piece of stand-alone software that takes a Timepix data file, reads it and extracts information about which of its 65,536 pixels had recorded the tell-tale signs of ionising radiation. The <a title="The Pixelman software homepage - IEAP, CTU." href="http://aladdin.utef.cvut.cz/ofat/others/Pixelman/Pixelman.html" target="_blank">Pixelman software</a> that runs the Timepix detector outputs the data in the format <code>XYC</code>, where <code>X</code> is the <em>x</em> position on the detectors sensor element (4 <a title="The Wikipedia definition of &quot;byte&quot;, in case you're too lazy to Google it :-)" href="http://en.wikipedia.org/wiki/Byte" target="_blank">bytes</a>), <code>Y</code> is the <em>y</em> position (4 bytes), and <code>C</code> is the number of time that pixel has spent over threshold (2 bytes). So, in binary format, five &#8220;hit&#8221; pixels would look like this (click on it for the full image):</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2013/03/binary_matrix.png"><img class="aligncenter size-medium wp-image-2368" alt="Binary Cluster" src="http://tomwhyntie.files.wordpress.com/2013/03/binary_matrix.png?w=300&#038;h=38" width="300" height="38" /></a></p>
<p>The software takes this data, reads in each byte and converts each pixel&#8217;s 10-byte sequence of 1&#8242;s and 0&#8242;s into the three numbers we need to make sense of the data. It also checks a separate file that contains the information about where new frames begin (data files contain can contain more than one frame). So the above fifty bytes translate into the following pixel information in a handy Comma Separated Value (CSV) file:</p>
<pre class="brush: plain; title: ; notranslate">
57, 1, 83
58, 1, 115
59, 1, 28
58, 2, 71
59, 2, 46
</pre>
<p>You can see by the <em>x</em> and <em>y</em> values that these particular pixels are adjacent to each other. This is, of course, intentional &#8211; these pixels form a single <strong>cluster</strong> that I&#8217;d picked out from the sample data earlier. Here are the pixels visualised in the Pixelman frame viewer:</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2013/03/cluster-for-blog.png"><img class="aligncenter size-full wp-image-2370" alt="cluster-for-blog" src="http://tomwhyntie.files.wordpress.com/2013/03/cluster-for-blog.png?w=584"   /></a></p>
<p>Sure, it&#8217;s not exactly the <a title="Is it a Higgs? Yeah, it's a Higgs. #Higgs" href="http://press.web.cern.ch/press-releases/2013/03/new-results-indicate-particle-discovered-cern-higgs-boson" target="_blank">Higgs boson</a> &#8211; it&#8217;s almost certainly an electron that has hit the sensor element of the detector and bounced about a bit within the silicon, creating a signal in multiple pixels &#8211; but it&#8217;s a nice bit of particle physics data processing. We&#8217;ve taken the &#8220;raw&#8221; output from a detector and processed it using some software in order to interpret what it might mean. Future versions might depend on other external software packages (such as <a title="ROOT homepage." href="http://root.cern.ch" target="_blank">CERN&#8217;s ROOT analysis framework</a>) &#8211; which would need to be installed for the CERN@school VO &#8211; and be used to process data stored on GridPP Storage Elements (SEs).</p>
<p>So what? Well, the fact that this particular piece of software is stand-alone means that it shouldn&#8217;t be too difficult to make the source code available to anyone. I&#8217;ve been following the <a title="#openaccess hashtag on Twitter." href="https://twitter.com/search?q=%23OpenAccess&amp;src=hash" target="_blank">#openaccess</a> and <a title="The #OpenData hashtag on Twitter." href="https://twitter.com/search?q=%23opendata&amp;src=hash" target="_blank">#opendata</a> discussions with interest, as the two concepts are pretty fundamental to what CERN@school is trying to achieve, and I think something that naturally follows on from this making sure that your analysis is reproducible by anyone &#8211; i.e. they can access and use your code to process the data that you also make available. So that&#8217;s what I&#8217;ve done:</p>
<ul>
<li><span style="line-height:15px;">The source code: <a title="CERN@school frame-reader on github." href="https://github.com/CERNatschool/frame-reader" target="_blank">https://github.com/CERNatschool/frame-reader</a></span></li>
<li>Some sample data to run on: <a title="Some sample CERN@school data." href="http://figshare.com/articles/CERNatschool_frame_reader_Test_Dataset/644460" target="_blank">figshare link</a>.</li>
</ul>
<p>This has also (finally!) given me the chance to use <a title="Digital Science's homepage." href="http://www.digital-science.com/" target="_blank">Digital Science</a>&#8216;s <a title="All about figshare." href="http://figshare.com/about" target="_blank">figshare</a> &#8211; something I&#8217;ve been meaning to do for ages. So, if you&#8217;ve got access to something that&#8217;ll compile and run some C++, you should be able to do a little CERN@school data analysis yourself. But there are some questions to think about:</p>
<ul>
<li><span style="line-height:15px;">Can you actually use this? If not, why not?</span></li>
<li>If you have, what have you/can you do with the data? What else do you need to know/want to know about the data set?</li>
<li>Would you <em>want</em> to actually use this? After all, it&#8217;s going to take some time to get set-up and running going. Is it worth the effort?</li>
</ul>
<p>If you do do anything with the code or the data, I&#8217;d love to hear about it &#8211; please use the comments section below for this, or any other questions, or suggestions for improvement. Happy coding!</p>
<p><em>Update &#8211; 17:56 28th March 2013: There&#8217;s now a summary of the GridPP30 meeting <a title="Summary of GridPP30." href="http://www.gridpp.ac.uk/news/?p=2977" target="_blank">here</a> &#8211; thanks <a title="Neasan O'Neil's Twitter home page." href="http://twitter.com/neasan" target="_blank">Neasan</a>!</em></p>
<p><em>Update &#8211; 05:53 22nd May 2013: <a title="The wonderful, wonderful GitHub!" href="http://github.com" target="_blank">GitHub</a> have very kindly given us an educational account, which you can find <a title="The CERN@school GitHub organisation." href="https://github.com/CERNatschool" target="_blank">here</a> &#8211; so I have moved the repository above there and updated the link. You can sign up for an educational account <a title="Sign up for a GitHub educational account." href="https://github.com/edu" target="_blank">here</a>.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/2361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/2361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=2361&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2013/03/27/grid-running-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2013/03/binary_matrix.png?w=300" medium="image">
			<media:title type="html">Binary Cluster</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2013/03/cluster-for-blog.png" medium="image">
			<media:title type="html">cluster-for-blog</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Back on the Grid</title>
		<link>http://tomwhyntie.wordpress.com/2013/02/06/getting-back-on-the-grid/</link>
		<comments>http://tomwhyntie.wordpress.com/2013/02/06/getting-back-on-the-grid/#comments</comments>
		<pubDate>Wed, 06 Feb 2013 16:51:42 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[CERN@school]]></category>
		<category><![CDATA[LUCID]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[supersymmetry]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/?p=2348</guid>
		<description><![CDATA[It’s been a while since I’ve blogged about what I’m actually doing job-wise at the moment. My “about me” page/Twitter bio states that I’m the “STFC Researcher in Residence for the CERN@school project”, but I think it’s fair to say &#8230; <a href="http://tomwhyntie.wordpress.com/2013/02/06/getting-back-on-the-grid/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=2348&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>It’s been a while since I’ve blogged about what I’m actually doing job-wise at the moment. My “<a href="http://tomwhyntie.wordpress.com/about-me/" target="_blank">about me</a>” page/<a href="https://twitter.com/twhyntie" target="_blank">Twitter bio</a> states that I’m the “<a href="http://www.stfc.ac.uk/" target="_blank">STFC</a> Researcher in Residence for the CERN@school project”, but I think it’s fair to say that the focus of the first six months of this post has been about working out exactly what that actually means. Now it’s February 2013, and I think I’m in a position to explain it. In a nutshell, I’ve been establishing the boundaries of what’s possible with a school-based, student-led research group, and working out how to roll out the model to other schools. But that can wait for another post (and, indeed, my six month report to <a href="http://www.stfc.ac.uk/" target="_blank">STFC</a>); for now I’m going to write about what I did yesterday.</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2013/02/twhyntie_qmul_tier2_distantcropped_2013-02-05.jpg"><img class="aligncenter size-medium wp-image-2349" alt="Back on the Grid - The Queen Mary High Throughput Cluster, part of the London Tier-2 GridPP site." src="http://tomwhyntie.files.wordpress.com/2013/02/twhyntie_qmul_tier2_distantcropped_2013-02-05.jpg?w=203&#038;h=300" width="203" height="300" /></a></p>
<p style="text-align:center;"><em>This is where my “Hello World!” job ran. What this picture can’t convey is the heat (even with the air conditioning) and the noise (hence the ear defenders).</em></p>
<p>Yesterday was (for me, at least) a “QMUL Day” – a day where I venture into London from Canterbury to work at Queen Mary, University of London. As part of the arrangement with STFC, I’m a visiting academic at the <a href="http://ph.qmul.ac.uk/" target="_blank">School of Physics and Astronomy</a>’s <a href="http://pprc.qmul.ac.uk/" target="_blank">Particle Physics Research Centre</a> (PPRC). The PPRC support the project by giving CERN@school access to the <a href="http://www.gridpp.ac.uk/" target="_blank">GridPP</a> – an immense network of computing power that forms the UK&#8217;s contribution (via STFC) to the <a href="http://wlcg.web.cern.ch/" target="_blank">Worldwide LHC Computing Grid</a> (WLCG) that processes the petabytes of data produced by particle physics experiments around the world. The LHC experiments use it to analyse data and run simulations to compare with that data. Indeed, when I was working on the <a href="http://cms.web.cern.ch/" target="_blank">Compact Muon Solenoid (CMS) experiment</a> for <a href="https://cdsweb.cern.ch/record/1429938/" target="_blank">my PhD</a>, I used it to <a href="http://www.youtube.com/watch?v=TMPdmDE72AU" target="_blank">look for evidence of supersymmetry</a> in the 7TeV proton-proton collisions. We didn’t find it then (and haven’t found it yet), but that <em>almost certainly</em> wasn’t the fault of the GridPP or the WLCG.</p>
<p>Yesterday was bit of a special day for me in my CERN@school role: I ran my first Grid “job” as a member of the CERN@school “Virtual Organisation”. A “<strong>job</strong>” is a computer program that you can get the GridPP’s network of computers to run for you. A “<strong>Virtual Organisation</strong>” is the GridPP club that you join to keep track of who’s running which jobs; CMS have one (that I was once a member of), ATLAS have one, and CERN@school has one too. The job wasn’t particularly exciting: it ran a tiny bit of code that printed “<a href="http://en.wikipedia.org/wiki/Hello_world_program" target="_blank">Hello World!</a>” to file that could then be retrieved from the GridPP (in this case, the QMUL cluster, but this particular job could have run at Glasgow or Birmingham) to my laptop.</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2013/02/twhyntie_qmul_tier2_skyfall_2013-02-05.jpg"><img class="aligncenter" alt="Back on the Grid - the Back of the Racks." src="http://tomwhyntie.files.wordpress.com/2013/02/twhyntie_qmul_tier2_skyfall_2013-02-05.jpg?w=179&#038;h=300" width="179" height="300" /></a></p>
<p style="text-align:center;"><em>The back of the cluster&#8217;s racks. It all gets a bit Skyfall here… thankfully, there were no blond-haired supervillains in sight.</em></p>
<p>While this was unlikely to trouble the 1.8 Petabyte storage capacity of <a href="http://pprc.qmul.ac.uk/research/gridpp" target="_blank">QMUL’s High Throughput Cluster</a> – which I also got to see for the first time yesterday – it was very much the first step towards getting students plugged into the GridPP and harnessing its potential for their own research. For example, with the right software in place &#8211; and a well-designed user interface – complex, computationally-intensive simulations of how the Timepix detectors that make up the Langton Ultimate Cosmic ray Intensity Detector (LUCID) will respond to various types of space weather could be run, monitored and analysed by students without the need to impose on school IT support teams.</p>
<p>Implementing this is just one of the things I’ve got to do. For now, I’m rather happy in the knowledge that my shiny new Grid Certificate worked and my first job relayed the timeless “Hello World!” message to me. I’m back on the Grid – and now the real work begins!</p>
<p><em>You can find further information about the <a href="http://www.gridpp.ac.uk/" target="_blank">GridPP</a> from QMUL&#8217;s <a title="The GridCafe website - everything you wanted to know about the Grid!" href="http://www.gridcafe.org/" target="_blank">GridCafe website</a>.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/2348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/2348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=2348&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2013/02/06/getting-back-on-the-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2013/02/twhyntie_qmul_tier2_distantcropped_2013-02-05.jpg?w=203" medium="image">
			<media:title type="html">Back on the Grid - The Queen Mary High Throughput Cluster, part of the London Tier-2 GridPP site.</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2013/02/twhyntie_qmul_tier2_skyfall_2013-02-05.jpg?w=179" medium="image">
			<media:title type="html">Back on the Grid - the Back of the Racks.</media:title>
		</media:content>
	</item>
		<item>
		<title>What counts as &#8220;new&#8221; physics?</title>
		<link>http://tomwhyntie.wordpress.com/2012/11/16/what-counts-as-new-physics/</link>
		<comments>http://tomwhyntie.wordpress.com/2012/11/16/what-counts-as-new-physics/#comments</comments>
		<pubDate>Fri, 16 Nov 2012 09:51:12 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/?p=257</guid>
		<description><![CDATA[I can&#8217;t lie to you &#8211; I really rather enjoyed the phrase &#8220;Bog Standard Model&#8220;. Punning aside, though, to label the latest Higgs boson results from Kyoto as &#8220;boring&#8221; is a little harsh. Perhaps the LHC has been a victim &#8230; <a href="http://tomwhyntie.wordpress.com/2012/11/16/what-counts-as-new-physics/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=257&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I can&#8217;t lie to you &#8211; I really rather enjoyed the phrase &#8220;<a href="http://www.guardian.co.uk/science/2012/nov/14/higgs-standard-model-boson" target="_blank">Bog Standard Model</a>&#8220;. Punning aside, though, to label the latest Higgs boson results from Kyoto as &#8220;boring&#8221; is a little harsh. Perhaps the LHC has been a victim of its own media success, but if you&#8217;ve heard <a href="https://twitter.com/closefrank" target="_blank">Frank Close</a> or <a href="http://www.kcl.ac.uk/nms/depts/physics/people/academicstaff/ellis.aspx" target="_blank">John Ellis</a> talk about the Higgs field as a kind of &#8220;relativistic aether&#8221;, you&#8217;d know that it&#8217;s <em>anything but</em> &#8220;boring&#8221; when you stop and really try to think about it. Now that we know this thing exists, we <em>really</em> can try to think about what it might mean for our universe.</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2012/11/higgs_boring.jpg"><img class="aligncenter size-medium wp-image-258" title="HIGGS BOSON &quot;BORING&quot;" alt="" src="http://tomwhyntie.files.wordpress.com/2012/11/higgs_boring.jpg?w=300&#038;h=291" height="291" width="300" /></a></p>
<p>However, the article (and some of the speakers in Kyoto) also <a href="http://www.guardian.co.uk/science/life-and-physics/2012/nov/15/higgs-kyoto-hcp2012" target="_blank">came under fire from Jon Butterworth</a> for bemoaning the lack of &#8220;new physics&#8221; from the LHC. Every test the 8TeV proton-proton collisions have thrown at the Standard Model &#8211; our best understanding of how matter and forces work at the fundamental level &#8211; has been passed with flying colours, including <a href="http://www.bbc.co.uk/news/science-environment-20300100" target="_blank">this recent result from LHCb</a>. But as Jon rightly points out, it would be criminal to say that no &#8220;new physics&#8221; was being done &#8211; the Standard Model is being tested in new regimes and we are discovering more and more about how well it seems to do the job. So are people being unfair when they that there&#8217;s no &#8220;new physics&#8221; from the LHC yet?</p>
<p>I like the way <a href="https://twitter.com/LinkaNeo" target="_blank">@LinkaNeo</a> put it in a <a href="https://twitter.com/LinkaNeo/status/269070469125263360" target="_blank">tweet</a> yesterday: &#8221;<em>The idea isn&#8217;t new [...], but the discovery and the proof are</em>,&#8221; and to be fair to those reporting on the LHC pre-2009 (i.e. before we had any data), there were plenty of ideas relating to physics beyond the Standard Model that were happily labelled as &#8220;new&#8221; &#8211; extra dimensions, supersymmetry, Kaluza-Klein resonances &#8211; that we haven&#8217;t seen evidence for yet, and probably wouldn&#8217;t until the LHC energy upgrade in 2015. So how to report on the distinction? Well, at the risk of getting a little bit Blairy, let&#8217;s refer to physics beyond the Standard Model as &#8220;<strong>New Physics</strong>&#8220;, and the amazing work coming out of the LHC that&#8217;s confirming the success of the Standard Model as &#8220;<strong>new physics</strong>&#8220;. And let&#8217;s remember that it&#8217;s <em>all</em> important.</p>
<p>I know, I know &#8211; the Higgs boson shouldn&#8217;t have any spin. But for now, it looks like Things Can Only Get Better (Measured).</p>
<p><em>UPDATE &#8211; Saturday 17th November 2012, 9:19am</em>: There&#8217;s a nice example of the &#8220;New Physics Fallacy&#8221; in this <a title="Prepare for some &quot;disappointment&quot;." href="http://www.nature.com/news/new-higgs-results-bring-relief-and-disappointment-1.11837" target="_blank">Nature News article</a>, via the <a href="https://twitter.com/LHCproton" target="_blank">@LHCproton</a>. &#8220;<em>For if physicists don’t find anything that conflicts with existing theories, how will we deepen our understanding?</em>&#8220;. Did you really mean that, Michael Moyer? <em>Really</em>?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=257&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2012/11/16/what-counts-as-new-physics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2012/11/higgs_boring.jpg?w=300" medium="image">
			<media:title type="html">HIGGS BOSON &#34;BORING&#34;</media:title>
		</media:content>
	</item>
		<item>
		<title>A Century of Cosmic Rays</title>
		<link>http://tomwhyntie.wordpress.com/2012/07/06/a-century-of-cosmic-rays/</link>
		<comments>http://tomwhyntie.wordpress.com/2012/07/06/a-century-of-cosmic-rays/#comments</comments>
		<pubDate>Fri, 06 Jul 2012 12:03:12 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[outreach]]></category>
		<category><![CDATA[Cosmic rays]]></category>
		<category><![CDATA[Langton Star Centre]]></category>
		<category><![CDATA[LUCID]]></category>
		<category><![CDATA[Royal Society]]></category>

		<guid isPermaLink="false">https://tomwhyntie.wordpress.com/?p=248</guid>
		<description><![CDATA[IT IS PROBABLY FAIR TO SAY that the 4th of July 2012 will go down in history as the day we discovered the Higgs boson (or, at least, something like it). The last jigsaw piece of the Standard Model of &#8230; <a href="http://tomwhyntie.wordpress.com/2012/07/06/a-century-of-cosmic-rays/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=248&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>IT IS PROBABLY FAIR TO SAY that the <a href="http://press.web.cern.ch/press/pressreleases/Releases2012/PR17.12E.html">4th of July 2012</a> will go down in history as the day we discovered the Higgs boson (or, at least, something like it). The last jigsaw piece of the Standard Model of particle physics has been found. While we may not be sure if it&#8217;s an edge, a corner, or one of those really important middle bits, at least we know now that it was indeed down the back of the Sofa of Time, and not lodged somewhere in the bowels of some naughty Cosmological Canine*.</p>
<p>But did you know that 2012 also marks one hundred years of cosmic rays? In 1912, Victor Hess got into the basket of a rickety hydrogen balloon, ascended to an altitude of about five kilometres and found, through a series of careful measurements, that the level of ionising radiation increased the further up he went. The results of his experiments suggested that some previously unknown extraterrestrial source was responsible &#8211; that the Earth was, in fact, being bombarded by particles from outer space. Hess shared the <a href="http://www.nobelprize.org/nobel_prizes/physics/laureates/1936/">1936 Nobel Prize</a> for this discovery.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='584' height='359' src='http://www.youtube.com/embed/wldIUAkyFxk?version=3&#038;rel=0&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>Now, while this was interesting in its own right, for particle physicists cosmic rays were also (<em>quite literally</em>) gifts from the heavens. Until then, they were mainly playing about with cathode rays or naturally radioactive materials to probe the nature of matter (electrons were discovered with the former, the nucleus/protons/neutrons with the latter). Cosmic rays blasted open a new frontier for physicists; the energies at which they were pummelling the Earth were far beyond what was achievable in the lab at that time. This made possible the discovery of the muon, the pi mesons and the positron &#8212; particles that pushed us out of our atomic comfort zone and marked the first steps towards our current understanding of matter and forces at the fundamental level &#8211; the Standard Model.</p>
<p>Of course, the picture of quarks, leptons, Ws, Zs, photons and gluons that we know today has largely been pieced together by accelerator-based experiments; machines that offer the impatient physicist with cosmic rays on demand (the first giga-electron volt accelerator was named &#8220;<a href="http://www.bnl.gov/bnlweb/history/cosmotron.asp">The Cosmotron</a>&#8220;). On Wednesday, the series of ever-larger particle smashers has reached a triumphant climax with CERN&#8217;s Large Hadron Collider and the discovery of the hitherto missing mass-bringer. But here&#8217;s the twist: the LHC hasn&#8217;t found anything else yet**. Plans to increase the energy have been <a href="http://physicsworld.com/cws/article/news/2012/jul/05/its-a-boson-but-what-sort">pushed back</a> to allow further study of the new resonance at 125 GeV. So how might we probe energies beyond those of the LHC that might give us an insight into physics beyond the Standard Model?</p>
<p>One possibility (as you may have guessed) is to return to where it all began &#8211; Hess&#8217;s cosmic rays. Of course, in true 21st century &#8220;Big Science&#8221; style, we won&#8217;t be using balloons and photographic emulsion. We&#8217;ll be using the <a href="http://www.auger.org/">Pierre Auger Observatory</a>, an array of networked detectors in Argentina covering an area the size of the M25, to study the highest energy Extensive Air Showers. We&#8217;ll be using the <a href="http://www.mpi-hd.mpg.de/hfm/HESS/HESS.shtml">HESS array</a> in Namibia to probe cosmic gamma rays up to energies of 100 TeV. But most excitingly (for me, at least!) are projects such as LUCID, CERN@school and CORUS that will put cosmic ray detectors in schools to allow students to be part of cutting-edge research that will help us answer some of the biggest unanswered questions in fundamental physics.</p>
<p style="text-align:center;"><a href="http://tomwhyntie.files.wordpress.com/2012/07/20120706-164345.jpg"><img class="size-full aligncenter" src="http://tomwhyntie.files.wordpress.com/2012/07/20120706-164345.jpg?w=584" alt="The LUCID display at the Cosmic 100 Summer Science Exhibition."   /></a></p>
<p>If you want to find out more &#8212; like what some of these questions are &#8212; come along to the &#8220;<a href="http://sse.royalsociety.org/2012/exhibits/cosmic-100/">Cosmic 100: A 100 year-old cosmic mystery</a>&#8221; stand at the Royal Society&#8217;s Summer Science Exhibition this weekend &#8212; the photo is of our LUCID display; if you can&#8217;t make it, do feel free to ask a question <a href="http://sse.royalsociety.org/2012/exhibits/cosmic-100/questions/">here</a> or below in the comments.</p>
<p>* Amazingly, this is probably one of the least <a href="http://www.guardian.co.uk/science/video/2012/jul/03/what-is-a-higgs-boson-video">strained analogies</a> you&#8217;ll have heard this week.</p>
<p>** I can&#8217;t really emphasise the <em>yet</em> enough, of course. Follow <a href="http://www.ichep2012.com.au/">ICHEP 2012</a> for the latest results.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/248/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=248&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2012/07/06/a-century-of-cosmic-rays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2012/07/20120706-164345.jpg" medium="image">
			<media:title type="html">The LUCID display at the Cosmic 100 Summer Science Exhibition.</media:title>
		</media:content>
	</item>
		<item>
		<title>The Langton Star Centre: First Day</title>
		<link>http://tomwhyntie.wordpress.com/2012/06/18/the-langton-star-centre-first-day/</link>
		<comments>http://tomwhyntie.wordpress.com/2012/06/18/the-langton-star-centre-first-day/#comments</comments>
		<pubDate>Mon, 18 Jun 2012 22:19:04 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[CERN@school]]></category>
		<category><![CDATA[LUCID]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[research]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/?p=232</guid>
		<description><![CDATA[Yesterday, The Times Cheltenham Science Festival 2012 drew to a close after a magnificent week of sharing the joy of science with the wonderful Cheltenham Festival audiences &#8211; thanks, it must be said, to the phenomenal efforts of the festival &#8230; <a href="http://tomwhyntie.wordpress.com/2012/06/18/the-langton-star-centre-first-day/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=232&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Yesterday, <a href="http://www.cheltenhamfestivals.com/science" target="_blank">The Times Cheltenham Science Festival 2012</a> drew to a close after a magnificent week of sharing the joy of science with the wonderful Cheltenham Festival audiences &#8211; thanks, it must be said, to the phenomenal efforts of the festival staff and the brilliant army of volunteers. A quick search for the <a href="https://twitter.com/#!/search/%23CheltSciFest" target="_blank">#CheltSciFest</a> hashtag will give you a flavour of the post-festival comedown most of those who went are experiencing. But it&#8217;s not been so bad for me &#8211; I started a new job today and, if you spoke to me during the festival about it, you&#8217;ll know that I&#8217;ve been rather excited about it.</p>
<div id="attachment_233" class="wp-caption aligncenter" style="width: 310px"><a href="http://tomwhyntie.files.wordpress.com/2012/06/cern_at_school_detector_01.jpg"><img class="size-medium wp-image-233" title="The CERN@school detector." src="http://tomwhyntie.files.wordpress.com/2012/06/cern_at_school_detector_01.jpg?w=300&#038;h=226" alt="The CERN@school detector." width="300" height="226" /></a><p class="wp-caption-text">I&#8217;m going to be getting rather familiar with this.</p></div>
<p>In a nutshell, I&#8217;m being funded by <a href="http://www.stfc.ac.uk/" target="_blank">STFC</a> to be a researcher in residence at the <a href="http://thelangton.org.uk/" target="_blank">Simon Langton Grammar School for Boys</a> in Canterbury, Kent. Working with <a href="http://ph.qmul.ac.uk/" target="_blank">Queen Mary University London</a>, <a href="http://www.gridpp.ac.uk/" target="_blank">GridPP</a> and <a href="http://www.sepnet.ac.uk/" target="_blank">SEPnet</a> &#8211; the South East Physics Network &#8211; we&#8217;re aiming to get as many schools as possible in the south-east of England doing research through the <a href="http://www.thelangtonstarcentre.org/index.php/cernschool" target="_blank">CERN@school</a> project. Ever since taking part in the <a href="http://famelab.org/" target="_blank">FameLab competition</a> in <a href="http://www.youtube.com/watch?v=QP3wSSHYdG8" target="_blank">2009</a>, the question &#8220;research or communication?&#8221; has been rattling around &#8211; from the post-talk judging panel grillings, to conversations with many of the great friends I&#8217;ve made through the competition. After a PhD and post-doc of trying to juggle the two, I&#8217;m incredibly grateful to STFC and <a href="http://www.thelangtonstarcentre.org/" target="_blank">The Langton Star Centre</a> for giving me the chance to be involved in a project that will let me fundamentally combine the two aspects of science I love the most. And what&#8217;s more, my new boss is Dr Becky Parker. If you&#8217;ve met the Director of <a href="http://www.thelangtonstarcentre.org/" target="_blank">The Langton Star Centre</a>, you&#8217;ll you know why that&#8217;s seventy shades of awesome.</p>
<p>Anyway, it looks like I&#8217;m starting as I mean to go on &#8211; I&#8217;m meeting <a href="http://www.interactives.co.uk/" target="_blank">Ian Russell</a> tomorrow at the <a href="http://www.rigb.org/" target="_blank">Royal Institution of Great Britain</a> about a cosmic ray exhibition, and the first (day!) trip to <a href="http://cern.ch" target="_blank">CERN</a> is booked for Monday. I&#8217;ve got a feeling it&#8217;s going to be a very different kind of high energy physics.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=232&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2012/06/18/the-langton-star-centre-first-day/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2012/06/cern_at_school_detector_01.jpg?w=300" medium="image">
			<media:title type="html">The CERN@school detector.</media:title>
		</media:content>
	</item>
		<item>
		<title>The Banana Equivalent Dose Song</title>
		<link>http://tomwhyntie.wordpress.com/2012/06/16/the-banana-equivalent-dose-song/</link>
		<comments>http://tomwhyntie.wordpress.com/2012/06/16/the-banana-equivalent-dose-song/#comments</comments>
		<pubDate>Sat, 16 Jun 2012 06:37:22 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[outreach]]></category>
		<category><![CDATA[Bananas]]></category>
		<category><![CDATA[BED]]></category>
		<category><![CDATA[Radiation]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Ukulele]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/?p=221</guid>
		<description><![CDATA[(&#8230;a.k.a. &#8220;And So To BED&#8221;.) I&#8217;m bashing this post out from my hotel at the The Times Cheltenham Science Festival, where last night you might have been lucky enough to hear some science-based songs from Andrew Pontzen at Robin Ince&#8216;s Bad Science Book &#8230; <a href="http://tomwhyntie.wordpress.com/2012/06/16/the-banana-equivalent-dose-song/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=221&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em>(&#8230;a.k.a. &#8220;And So To BED&#8221;.)</em></p>
<p>I&#8217;m bashing this post out from my hotel at the <a href="http://www.cheltenhamfestivals.com/science" target="_blank"><em>The Times</em> Cheltenham Science Festival</a>, where last night you might have been lucky enough to hear some science-based songs from <a href="http://twitter.com/#!/apontzen" target="_blank">Andrew Pontzen</a> at <a href="http://twitter.com/#!/robinince" target="_blank">Robin Ince</a>&#8216;s <a href="http://www.cheltenhamfestivals.com/find-events/science/s83-bad-science-book-club" target="_blank">Bad Science Book Club</a> or <a href="http://twitter.com/#!/helenarney" target="_blank">Helen Arney</a> preview her upcoming Edinburgh show, &#8220;<a title="Helen Arney, VOICE OF AN ANGLE - details." href="http://helenarney.com/2012/voice-of-an-angle-at-edinburgh-fringe-and-two-other-shows-during-august/" target="_blank">Voice of an Angle</a>&#8220;.</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2012/06/bananaequivalentdose_oldskool.jpg"><img class="aligncenter size-medium wp-image-222" title="Banana!" src="http://tomwhyntie.files.wordpress.com/2012/06/bananaequivalentdose_oldskool.jpg?w=300&#038;h=300" alt="Have a banana." width="300" height="300" /></a></p>
<p>All of the evidence* suggests that the ingestion of science in aural, musical form is effective for the treatment of a wide range of symptoms including disinterest, acute fidgetry, and light-to-mild diarrhea**. Now, while Helen and Andrew&#8217;s contributions to the field are most welcome, it&#8217;s always important to identify and nurture new sources. Fortunately, Martin Z Austwick (<a href="http://twitter.com/#!/sociablephysics" target="_blank">@sociablephysics</a>) and Hayley Birch (<a href="http://twitter.com/#!/gingerbreadlady" target="_blank">@gingerbreadlady</a>) of <a title="GeekPop on Twitter!" href="http://twitter.com/#!/geekpop" target="_blank">@GeekPop</a> fame are running a fantastic competition &#8212; &#8220;<a title="Science Songwriter OF THE FUTURE competition details." href="http://sociablephysics.wordpress.com/2012/06/06/science-songwriter-of-the-future/" target="_blank">Science Song Writer OF THE FUTURE</a>&#8221; &#8212; to do just that.</p>
<iframe width="100%" height="166" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F49828909&auto_play=false&show_artwork=true&color=CCCCCC"></iframe>
<p>Helen and I are just two of the judges involved in the competition (which is supported by <a href="http://twitter.com/#!/imascientist" target="_blank">@imascientist</a>, the <a href="http://www.iop.org/" target="_blank">Institute of Physics</a>, the <a href="http://www.greenman.net/" target="_blank">Green Man Festival</a> and the <a href="http://www.houseofstrange.co.uk/" target="_blank">House of Strange</a>) so in a blog-post-tastic join the dots exercise, the soundcloud widget above features a song I first performed at one of the <a href="http://helenarney.com/shows/domestic-science" target="_blank">Domestic Science</a> scratch nights (<a href="http://helenarney.com/shows/domestic-science" target="_blank">Arney and Wells &#8211; also at Edinburgh this year</a>) a few months ago. It&#8217;s a song about the <a href="http://www.bbc.co.uk/news/magazine-15288975" target="_blank">Banana Equivalent Dose system</a>, with words inspired by a chat I had with Simon Mayo on Radio 2, produced by <a href="http://thebwsound.com/" target="_blank">my wizard of a brother</a>. Technically the song wouldn&#8217;t qualify for the competition &#8212; you have to write your own music &#8212; but it should give you a flavour of the heavy, heavy punning I&#8217;m looking for in the lyric department.</p>
<p>So, if (you==student) {enter the competition}; else {tell everyone you know about the competition} &#8211; the entry deadline is the 13th of July!</p>
<p>&nbsp;</p>
<p>* I asked a few people in the Green Room last night, and published the findings on a napkin I found on the table next to me.</p>
<p>** 1) This isn&#8217;t true, and; 2) such hyphenated classifications are very, very important.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/221/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=221&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2012/06/16/the-banana-equivalent-dose-song/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2012/06/bananaequivalentdose_oldskool.jpg?w=300" medium="image">
			<media:title type="html">Banana!</media:title>
		</media:content>
	</item>
		<item>
		<title>NEWS: CheltSciFest &amp; WinSciFest</title>
		<link>http://tomwhyntie.wordpress.com/2012/06/08/news-cheltscifest-winscifest/</link>
		<comments>http://tomwhyntie.wordpress.com/2012/06/08/news-cheltscifest-winscifest/#comments</comments>
		<pubDate>Fri, 08 Jun 2012 11:18:10 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[shows]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/?p=208</guid>
		<description><![CDATA[The hotels are booked. The speaker information forms are in*. The programme&#8216;s been printed, perused and packed. It&#8217;s nearly time for The Times Cheltenham Science festival.  This year, Andrew Pontzen and I will be bringing our show &#8220;Dark Matters&#8221; to &#8230; <a href="http://tomwhyntie.wordpress.com/2012/06/08/news-cheltscifest-winscifest/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=208&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The hotels are booked. The speaker information forms are in*. The <a href="http://www.cheltenhamfestivals.com/science" target="_blank">programme</a>&#8216;s been printed, perused and packed. It&#8217;s nearly time for <strong><em>The Times</em> Cheltenham Science festival</strong>.</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2012/06/darkmattersdirect1.png"><img src="http://tomwhyntie.files.wordpress.com/2012/06/darkmattersdirect1.png?w=300&#038;h=300" alt="Dark Matters - Direct Detection." title="Dark Matters - Direct Detection." width="300" height="300" class="aligncenter size-medium wp-image-218" /></a></p>
<p> This year, Andrew Pontzen and I will be bringing our show &#8220;Dark Matters&#8221; to the festival:</p>
<ul>
<li>Tuesday 12th June 2012, 2pm: #DarkMatters in the EDF Arena &#8211; <a href="http://www.cheltenhamfestivals.com/find-events/science/s3-dark-matters" target="_blank">details and tickets</a>;</li>
<li>Tuesday 12th June 2012, 8pm (7:30pm doors): #DarkMatters at Cheltenham SitP, D-Fly &#8211; <a href="http://cheltenham.skepticsinthepub.org/Event.aspx/1101/Dark-Matters" target="_blank">details</a>;</li>
<li>Saturday 16th June 2012, 8:30pm: &#8220;What is Dark Matter?&#8221; &#8211; Cheltenham Editions event in the ExperiTent &#8211; <a href="http://www.cheltenhamfestivals.com/find-events/science/s154-what-is-dark-matter" target="_blank">details and tickets</a>.</li>
</ul>
<p>There&#8217;s a review of the Edinburgh Science Festival performance <a href="http://local.stv.tv/edinburgh/magazine/33195-dark-matter-given-light-touch-at-edinburgh-international-science-festival/" target="_blank">here</a> from <a title="Elaine Downs on Twitter." href="https://twitter.com/#!/elainedowns1" target="_blank">Elaine Downs</a>. I&#8217;ll also be chairing a few events around the festival, and I <em>suspect</em> there may well be some live-tweeting &#8211; follow the <a title="The #CheltSciFest hashtag search on Twitter." href="https://twitter.com/#!/search/%23CheltSciFest" target="_blank">#CheltSciFest</a> hashtag. You can also catch Andrew at <a title="Robin Ince on Twitter. Warning: he's sometimes a little grumpy." href="http://twitter.com/#!/robinince" target="_blank">Robin Ince</a>&#8216;s <a title="Tickets for Robin Ince's Bad Book Club at #CheltSciFest." href="http://www.cheltenhamfestivals.com/find-events/science/s83-bad-science-book-club" target="_blank">Bad Book Club on the Friday</a>.</p>
<p>On top of that, <a href="https://twitter.com/#!/search/%23DarkMatters" target="_blank">#DarkMatters</a> will also be at the inaugural <a title="Winchester Science Festival's website." href="http://winchesterscifest.org/" target="_blank">Winchester Science Festival</a> (20/21/22 July 2012):</p>
<ul>
<li>Saturday 21st July 2012, 12pm: <a href="https://twitter.com/#!/search/%23DarkMatters" target="_blank">#DarkMatters</a> at @WinSciFest &#8211; <a title="Winchester Science Festival Saturday programme." href="http://winchesterscifest.org/winchester-science-festival-saturday-programm" target="_blank">details</a> and <a title="Get tickets for #DarkMatters at WinSciFest." href="http://peo.hants.gov.uk/peo/default.asp" target="_blank">tickets</a> (click on Sat 21st July).</li>
</ul>
<p>Hope to see you there!</p>
<p>* They got there eventually.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=208&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2012/06/08/news-cheltscifest-winscifest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2012/06/darkmattersdirect1.png?w=300" medium="image">
			<media:title type="html">Dark Matters - Direct Detection.</media:title>
		</media:content>
	</item>
		<item>
		<title>TEDxHull &#8211; &#8220;How Do You Kill a Theory?&#8221; Video</title>
		<link>http://tomwhyntie.wordpress.com/2012/03/25/tedxhull-how-do-you-kill-a-theory-video/</link>
		<comments>http://tomwhyntie.wordpress.com/2012/03/25/tedxhull-how-do-you-kill-a-theory-video/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 11:23:30 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[outreach]]></category>
		<category><![CDATA[shows]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/?p=186</guid>
		<description><![CDATA[After coming back from yesterday&#8217;s #TEDxImperialCollege, I finally plucked up the courage to watch the TEDx talk I gave at February&#8217;s #TEDxHull. All ten videos from Hull&#8217;s first (and, I must say, perfectly executed) TEDx event were released online last &#8230; <a href="http://tomwhyntie.wordpress.com/2012/03/25/tedxhull-how-do-you-kill-a-theory-video/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=186&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>After coming back from yesterday&#8217;s <a title="The #TEDxImperialCollege homepage." href="http://tedximperialcollege.com/" target="_blank">#TEDxImperialCollege</a>, I finally plucked up the courage to watch the TEDx talk I gave at February&#8217;s <a title="The #TEDxHull webpage." href="http://www.tedxhull.com/" target="_blank">#TEDxHull</a>. All ten videos from Hull&#8217;s first (and, I must say, perfectly executed) TEDx event were <a title="The #TEDxHull videos." href="http://tedxtalks.ted.com/search/?search=TEDxHull">released online last week</a>. My talk, which opened the day&#8217;s proceedings, is embedded below:</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='560' height='315' src='http://www.youtube.com/embed/7-oLS_7fNb8?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>&nbsp;</p>
<p>However, I really would recommend watching <em>all</em> of them. I thought that one of the best things about the day was how the theme of &#8220;Beyond Limits&#8221; threaded through each of the <a title="The #TEDxHull speakers." href="http://www.tedxhull.com/Root/Speakers/tabid/926/language/en-US/Default.aspx" target="_blank">speakers</a>&#8216; chosen topics, even with such a <a title="The #TEDxHull programme." href="http://www.tedxhull.com/Root/Programme/tabid/925/language/en-US/Default.aspx" target="_blank">wide variety of subjects</a> on offer. I think that&#8217;s a testament to the organisers&#8217; shrewd selection process, and their incredibly helpful and constructive feedback in the weeks leading up to the event. The <a title="The #TEDxHull team (and contact page)." href="http://www.tedxhull.com/Root/ContactSocial/tabid/931/language/en-US/Default.aspx" target="_blank">#TEDxHull team</a> did a fantastic job, and if they captured the spirit of Hull in the same way that <a title="#TEDxImperialCollege (again!)." href="http://tedximperialcollege.com/" target="_blank">#TEDxImperialCollege</a> so successfully embodied everything I&#8217;ve come to appreciate about <a title="Imperial College London - Homepage." href="http://www3.imperial.ac.uk/" target="_blank">my employer</a>, they really have done Hull very proud indeed. It was an honour and a pleasure to take part.</p>
<p>Anyway, I hope you enjoy the talk. It&#8217;s very much a supersymmetric extension of my <a href="http://www.youtube.com/watch?v=QP3wSSHYdG8" target="_blank">FameLab winning talk</a>**. There&#8217;s plenty of Large Hadron Collider, all-permeating supercustard, and the very nature of science itself, but (mainly thanks to <a href="http://twitter.com/#!/jellybabyfizzer" target="_blank">@jellybabyfizzer</a>&#8216;s influence) there&#8217;s even a shout-out for Thomas Kuhn***. Huge thanks to Gareth Moulton of <a title="CurvedLight homepage." href="http://www.curvedlight.co.uk/MAIN.html" target="_blank">CurvedLight</a> for editing the videos together.</p>
<p><strong>IN OTHER NEWS</strong>: I&#8217;ll be performing at the wonderful <a title="Helen Arney - Live Dates." href="http://helenarney.com/live-dates/" target="_blank">Helen Arney</a>&#8216;s &#8220;Domestic Science&#8221; show on Tuesday &#8211; full details (and tickets) <a title="Tickets for Domestic Science (Tuesday 27th March 2012)." href="http://www.wegottickets.com/event/159569" target="_blank">here</a>. Hope to see you there!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>* <em>And I really hope it is the first of many.</em></p>
<p>** <em>Talking of which &#8211; congratulations to <a title="Andrew &quot;Statto&quot; Steele's Twitter page." href="https://twitter.com/#!/statto" target="_blank">Andrew Steele</a>, who is (as of Wednesday 21st March) the new FameLab champion!</em></p>
<p>*** <em>I may, or may not, come perilously close to suggesting that supersymmetry represents a &#8220;crisis point&#8221; in particle physics.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=186&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2012/03/25/tedxhull-how-do-you-kill-a-theory-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>
	</item>
		<item>
		<title>A Little Banana Activity</title>
		<link>http://tomwhyntie.wordpress.com/2012/03/04/a-little-banana-activity/</link>
		<comments>http://tomwhyntie.wordpress.com/2012/03/04/a-little-banana-activity/#comments</comments>
		<pubDate>Sun, 04 Mar 2012 12:32:35 +0000</pubDate>
		<dc:creator>twhyntie</dc:creator>
				<category><![CDATA[outreach]]></category>
		<category><![CDATA[teaching]]></category>

		<guid isPermaLink="false">http://tomwhyntie.wordpress.com/2012/03/04/a-little-banana-activity-27/</guid>
		<description><![CDATA[It&#8217;s a question that bugs us all at some point in our lives: just how many radioactive decays happen in your average banana per second? The banana is often held up (so to speak) as an example of an everyday &#8230; <a href="http://tomwhyntie.wordpress.com/2012/03/04/a-little-banana-activity/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=175&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s a question that bugs us all at some point in our lives: just how many radioactive decays happen in your average banana per second? The banana is often held up (so to speak) as an example of an everyday object that <em>can</em> be used to <a title="Go to BED." href="http://www.bbc.co.uk/news/magazine-15288975" target="_blank">placate a panicked public in discussions about nuclear safety</a> (whether it should be is another discussion entirely). The source of the radioactivity is the potassium in the banana &#8212; or rather, the unstable potassium-40 isotope. You can read all about potassium-40 and its decay modes on <a href="http://en.wikipedia.org/wiki/Potassium-40" target="_blank">Wikipedia</a>. I certainly did.</p>
<p>So to our original question: roughly how many of these decays will take place per second? I thought I&#8217;d have a go at a &#8220;back-of-the-envelope&#8221; calculation. Quite literally:</p>
<p><a href="http://tomwhyntie.files.wordpress.com/2012/03/back_of_the_envelope_banana_cal.jpg"><img class="size-full wp-image aligncenter" src="http://tomwhyntie.files.wordpress.com/2012/03/back_of_the_envelope_banana_cal.jpg?w=487" alt="Image" /></a></p>
<p>References: <a title="Potassium-40 on Wikipedia." href="http://en.wikipedia.org/wiki/Potassium-40" target="_blank">Potassium-40 on Wikipedia</a>, potassium in an average banana (<a title="USDA National Nutrient Database for Standard Reference, Release 20, retrieved 4th March 2012." href="http://www.nal.usda.gov/fnic/foodcomp/Data/SR20/nutrlist/sr20w306.pdf" target="_blank">pdf</a>).</p>
<p>I&#8217;ve assumed that because the timescales we&#8217;re considering are so small compared to the mean lifetime of potassium-40, the first rearrangement pretty much holds.</p>
<p>Now, there are two reasons I&#8217;ve posted this. Firstly, the question itself harks back to something I heard while visiting the <a title="The Simon Langton Grammar School for Boys homepage." href="http://thelangton.org.uk/" target="_blank">Simon Langton Grammar School for Boys</a> in September. They&#8217;ve got quite an interesting project going on there: the <a title="The CERN@School project." href="http://www.thelangtonstarcentre.org/index.php/cernschool" target="_blank">CERN@school project</a> uses the &#8220;Medipix&#8221; chip for various experiments/data collection activities, and they often demonstrate what it can do by holding a banana next to it as a makeshift radioactive source. 13 decays per second seems like the right order of magnitude to make this feasible.</p>
<p>The second reason, though, is a little more self-indulgent: as I was doing the calculation yesterday, I was operating in bit of a vacuum. The numbers and approximations seemed reasonable, but I didn&#8217;t have anyone on hand to check them. Supposing I&#8217;d done something really silly with this seemingly trivial calculation? Would people be all, &#8220;oh, that&#8217;s OK, we all make mistakes&#8221;, or would I unleash the unrelenting fury of a thousand internet trolls? It&#8217;s an interesting question which I think has relevance to the &#8220;open science&#8221; debate: <a title="Everybody goofs..." href="http://storify.com/twhyntie/a-celebrity-scientist-face-off-some-background" target="_blank">sure, &#8220;everybody goofs&#8221;, but do we like being called on those goofs in public</a>?</p>
<p>I know what I think &#8212; but there&#8217;s only one way to find out&#8230;</p>
<p>Update (1447 4/3/2012): <a href="http://twitter.com/#!/sirjamesgreen" target="_blank">@sirjamesgreen</a> has <a title="Thanks, James!" href="https://twitter.com/#!/sirjamesgreen/status/176316584049131520" target="_blank">pointed me</a> to this <a title="Bananas are radioactive on about.com (chemistry)." href="http://chemistry.about.com/b/2011/07/10/bananas-are-radioactive.htm" target="_blank">article</a> which quotes roughly the same number. As he says, though, they haven&#8217;t shown their working&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tomwhyntie.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tomwhyntie.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tomwhyntie.wordpress.com&#038;blog=28486510&#038;post=175&#038;subd=tomwhyntie&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tomwhyntie.wordpress.com/2012/03/04/a-little-banana-activity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/81041c175c5114ae229cb0648cb9ee91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">twhyntie</media:title>
		</media:content>

		<media:content url="http://tomwhyntie.files.wordpress.com/2012/03/back_of_the_envelope_banana_cal.jpg?w=487" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
