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

<channel>
	<title>Ryan Varley</title>
	<atom:link href="http://ryanvarley.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryanvarley.co.uk</link>
	<description></description>
	<lastBuildDate>Fri, 24 May 2013 01:10:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to deep copy python dictionaries (dict) containing numpy arrays</title>
		<link>http://ryanvarley.co.uk/2013/03/18/how-to-deep-copy-python-dictionaries-dict-containing-numpy-arrays/</link>
		<comments>http://ryanvarley.co.uk/2013/03/18/how-to-deep-copy-python-dictionaries-dict-containing-numpy-arrays/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 14:46:02 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Help & Guides]]></category>

		<guid isPermaLink="false">http://ryanvarley.co.uk/?p=369</guid>
		<description><![CDATA[<p><p>I recently ran into the issue where i needed to deep copy a python dictionary (this means the whole dictionary is copied and not just referenced so the copy dosn&#8217;t effect the original and vise versa) that contained small numpy arrays and numbers with units using the<a href="http://pythonhosted.org/quantities/" target="_blank"> Quantities</a> python package (which are based [...]</p><p>The post <a href="http://ryanvarley.co.uk/2013/03/18/how-to-deep-copy-python-dictionaries-dict-containing-numpy-arrays/">How to deep copy python dictionaries (dict) containing numpy arrays</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I recently ran into the issue where i needed to deep copy a python dictionary (this means the whole dictionary is copied and not just referenced so the copy dosn&#8217;t effect the original and vise versa) that contained small numpy arrays and numbers with units using the<a href="http://pythonhosted.org/quantities/" target="_blank"> Quantities</a> python package (which are based on arrays).</p>
<p>The problem here is deep copying an array returns a float losing any unit information so i coded up a quick method to deep copy a dict with these arrays correctly. Not this isn&#8217;t the most efficient code but it is one of the simplest &#8211; if you have a better solution let me know!</p>
<p>The code works by first performing a deepcopy and then replacing any instances of arrays (including child objects like quantities) with a deep copy of the original using the arrays .copy() method.</p>
<pre class=" prettyprint lang-html linenums">
def deepCopyArrayDict(sourceDict):
&quot;&quot;&quot; The standard deepcopy operation on a dict will loose arrays and therefore productquantity information along
with it. This method deepcopys a dict and then manually deep copies each array over using the arrays .copy()
method. This method is therefore slower but works.

:param source_dict: dict to copy
:type source_dict: dict
:return: deep copied dict
&quot;&quot;&quot;

    copiedDict = copy.deepcopy(sourceDict)

    for k, v in sourceDict.iteritems():

        # type checking is necessary as .copy() 
        # means shallow copy with other types.
        if isinstance(v, numpy.ndarray):
            copiedDict<span class="sc_code">[k]</span> = v.copy()

    return copiedDict
</pre>
<p>The post <a href="http://ryanvarley.co.uk/2013/03/18/how-to-deep-copy-python-dictionaries-dict-containing-numpy-arrays/">How to deep copy python dictionaries (dict) containing numpy arrays</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ryanvarley.co.uk/2013/03/18/how-to-deep-copy-python-dictionaries-dict-containing-numpy-arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add folders to your python path on Mac OS</title>
		<link>http://ryanvarley.co.uk/2012/11/17/how-to-add-folders-to-your-python-path-on-mac-os/</link>
		<comments>http://ryanvarley.co.uk/2012/11/17/how-to-add-folders-to-your-python-path-on-mac-os/#comments</comments>
		<pubDate>Sat, 17 Nov 2012 22:32:08 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://ryanvarley.co.uk/?p=357</guid>
		<description><![CDATA[<p><p>So you have a few custom packages you want to store in dropbox or elsewhere on your mac but can&#8217;t figure out how to add files permanently to your python path? Heres how.</p> <p>Adding files to your python path has many pitfalls and it took me a while to figure out but heres the basic [...]</p><p>The post <a href="http://ryanvarley.co.uk/2012/11/17/how-to-add-folders-to-your-python-path-on-mac-os/">How to add folders to your python path on Mac OS</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>So you have a few custom packages you want to store in dropbox or elsewhere on your mac but can&#8217;t figure out how to add files permanently to your python path? Heres how.</p>
<p>Adding files to your python path has many pitfalls and it took me a while to figure out but heres the basic issues i ran into for quick reference</p>
<ul>
<li>how the hell do i add something to the python path</li>
<li>not having permission to view/add files to a current python path directory</li>
<li>.pth file not being recognised (can&#8217;t be formatted with UTF 8 with Dom, use UTF 8)</li>
</ul>
<h1>How to add a folder to your python path</h1>
<ol>
<li>start python from the command line by typing python. then enter<br />
<pre class=" prettyprint lang-html linenums">
import sys
sys.path
</pre></li>
<li>The output gives a list of folders in the current python path. Look for one ending with &#8216;site-packages&#8217; and note it down</li>
<li>quit python ( &#8216;quit()&#8217;) and enter the following in the terminal where &lt;path&gt; is the path you just copied<br />
<pre class=" prettyprint lang-html linenums">
import sys
sys.path
</pre></li>
<li>Now open a text editor like sublime and add the path to the folder you want to add to your path ie i added<br />
<pre class=" prettyprint lang-html linenums">
import sys
sys.path
</pre><br />
and save with UTF8/ASCII (in sublime file-&gt;save with encoding -&gt; UTF8) and save it anywhere easy (your about to copy it)</li>
<li>Now go back to your open terminal and type<br />
<pre class=" prettyprint lang-html linenums">
import sys
sys.path
</pre></li>
<li>You&#8217;re done! open python again and follow step 1 and see if your new path is there. If it is add your packages to this folder and try importing them.</li>
</ol>
<p>The post <a href="http://ryanvarley.co.uk/2012/11/17/how-to-add-folders-to-your-python-path-on-mac-os/">How to add folders to your python path on Mac OS</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ryanvarley.co.uk/2012/11/17/how-to-add-folders-to-your-python-path-on-mac-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skip the ques at the Colosseum in Rome &#8211; for free!</title>
		<link>http://ryanvarley.co.uk/2012/06/20/skip-avoid-ques-colosseum-rome-free/</link>
		<comments>http://ryanvarley.co.uk/2012/06/20/skip-avoid-ques-colosseum-rome-free/#comments</comments>
		<pubDate>Wed, 20 Jun 2012 15:53:14 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Help & Guides]]></category>
		<category><![CDATA[Trips & Holidays]]></category>
		<category><![CDATA[colloseum]]></category>
		<category><![CDATA[holidays]]></category>
		<category><![CDATA[roman forum]]></category>
		<category><![CDATA[rome]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://ryanvarley.co.uk/?p=345</guid>
		<description><![CDATA[<p>When you arrive at the Colosseum, the que can sometimes be intimidating and theres no shortage of reps trying to sell you tours that let you skip the que. Here's how to get in quickly, skipping the que and paying only the base price.</p><p>The post <a href="http://ryanvarley.co.uk/2012/06/20/skip-avoid-ques-colosseum-rome-free/">Skip the ques at the Colosseum in Rome &#8211; for free!</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/ryanvarley/7386313974/sizes/z/in/set-72157630151564048/"><img class="aligncenter size-full wp-image-347" title="Colosseum at night, Rome" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/colloseum-at-night-rome.jpg" alt="" width="640" height="480" /></a></p>
<p>When you arrive at the Colosseum, the que can sometimes be intimidating and theres no shortage of reps trying to sell you tours that let you skip the que. <strong>Here&#8217;s how to get in quickly, skipping the que and paying only the base price</strong>.</p>
<p>A (seemingly) little known fact is that the tickets for the Roman forum, Colosseum and &#8230; are one and the same. This means you can buy your ticket elsewhere and use it at the Colosseum (avoiding the Colosseum queues) and visit all three places on one ticket.</p>
<p>The Roman forum in our experience never had a larger que, in fact it often had <strong>no que</strong> whilst the Colosseum que was very long. If your really short for time,<strong> head just over the road to the Forum, buy your ticket and go straight into the </strong><strong>Colosseum</strong>, otherwise go to the forum first, <strong>you can easily spend a few hours in there and i found it much more enjoyable than the Colosseum itself.</strong></p>
<p>Also, if your an EU resident 24 and under, don&#8217;t forget your passport/driving license &#8211; you&#8217;ll get in half price.</p>
<p>The post <a href="http://ryanvarley.co.uk/2012/06/20/skip-avoid-ques-colosseum-rome-free/">Skip the ques at the Colosseum in Rome &#8211; for free!</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ryanvarley.co.uk/2012/06/20/skip-avoid-ques-colosseum-rome-free/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The New Macgazette &#8211; The Design</title>
		<link>http://ryanvarley.co.uk/2012/06/02/the-new-macgazette-the-design/</link>
		<comments>http://ryanvarley.co.uk/2012/06/02/the-new-macgazette-the-design/#comments</comments>
		<pubDate>Sat, 02 Jun 2012 11:59:34 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[MacGazette]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[macgazette]]></category>
		<category><![CDATA[techchoices]]></category>

		<guid isPermaLink="false">http://ryanvarley.co.uk/?p=287</guid>
		<description><![CDATA[<p>In the last couple of months MacGazette has remained largely inactive as mine and Chris' (who i run the site with) lives have been dominated by University finals. Now that they're over we've been working on a revival. Stage one being to give the site a fresh, modern, responsive design.</p><p>The post <a href="http://ryanvarley.co.uk/2012/06/02/the-new-macgazette-the-design/">The New Macgazette &#8211; The Design</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2011/12/macgazette-screenshot.png"><img class="size-thumbnail wp-image-125 alignleft" title="macgazette-screenshot" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2011/12/macgazette-screenshot-150x150.png" alt="" width="150" height="150" /></a></p>
<p>In the last couple of months MacGazette has remained largely inactive as mine and Chris&#8217; (who i run the site with) lives have been dominated by University finals. Now that they&#8217;re over we&#8217;ve been working on a revival. Stage one being to give the site a fresh, modern, responsive design.</p>
<p>This is how <a title="Macgazette - Apple and technology blog" href="http://www.macgazette.net">Macgazette</a> used to look. The design is cramped and dated, it failed to utilise white-space and was the result of a lot of small modifications to the design rather than one vision created from scratch and fit for purpose. As my flagship website (and since it shares its design with <a title="TechChoices - Technology blog" href="http://techchoices.co.uk">TechChoices</a>) it was destined to get my primary focus. With a refresher on html5, css3 and a book on javascript work began.</p>
<h1>The Design</h1>
<p>It only took a few days to put the site together and polish it off, here are some of the design choices i made and why.</p>
<h2>Front Page</h2>
<p style="text-align: center"><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-1.png"><img class="size-medium wp-image-290 aligncenter" title="New Macgazette Design Main Page" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-1-300x211.png" alt="New Macgazette Design Main Page" width="300" height="211" /></a></p>
<p>The front page now has a larger logo, and more prominent featured boxes. the search box is back at the side and more focus is brought to subscribing (through RSS and twitter).</p>
<p>Instead of borders each element casts a shadow, is rounded and uses subtle colours &#8211; the background is even slightly off white. This then supports the contrast with the navigation bar and buttons which uses a striking blue and sharp corners. The navigation bar itself was simplified and features a dropdown for sub-catagorys. Each clickable element also features roll-over effects to confirm its &#8216;clickability&#8217;.</p>
<h2>Single Post page</h2>
<p style="text-align: center"><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-single-post.png"><img class="size-medium wp-image-292 aligncenter" title="newmacgazette-single-post" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-single-post-300x229.png" alt="" width="300" height="229" /></a></p>
<p>When designing the single post page we wanted the posts to be easier to read (which means smaller post widths) and to give the information we want (related posts, main sidebar, comments and mentioned apps) without forcing the user to scroll into the abyss. For these reasons we kept the original sidebar but added another for related posts (powered by <a href="http://nrelate.com/">nrelate</a>). By traversing down the page you&#8217;ll arrive at the mentioned apps section which scrapped the download button in favour of being a click-able unit.</p>
<p><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-mentioned-apps-comments.png"><img class="aligncenter size-medium wp-image-291" title="newmacgazette-mentioned-apps-comments" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-mentioned-apps-comments-300x251.png" alt="" width="300" height="251" /></a></p>
<h2>Responsive Design</h2>
<p>When designing this new site it was important that the site looked great not just on your computer, but on your phone and tablet. To do that the site changes as your change its width (go on try it, go to <a href="http://macgazette.net">macgazette.net</a> and slowly drag your browser width smaller). This meant choices such as making the logo and ad banner take their own lines, the sidebar to drop, the featured image to enlarge and take its won line etc. The best way to illustrate this is by looking at a few examples.</p>
<h3>iPad</h3>
<p><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-ipad1.jpg"><img class="aligncenter size-large wp-image-307" title="newmacgazette-ipad" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-ipad1-1024x678.jpg" alt="" width="1024" height="678" /></a></p>
<p style="text-align: center">
<p>With a smaller screen resolution, one of the sidebar drops below the other to not crowd the screen. and the logo takes prominence (in a retina resolution).</p>
<h3>iPhone 4</h3>
<p><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-iphone.jpg"><img class="aligncenter size-large wp-image-302" title="newmacgazette-iphone" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/06/newmacgazette-iphone-1024x375.jpg" alt="" width="1024" height="375" /></a></p>
<p>The iPhone with a smaller resolution still was trickier. To make it feel more like an app the dropdown navigation was removed, the feature boxes spread onto two lines and the page exists as one column. The related posts and mentioned apps resize to fit and slot in below the post.</p>
<h2> Conclusion</h2>
<p>At MacGazette we love the new design and have a few new updates panned for it. In the meantime I think its time to refresh and complete this site and continue with the other aspects of the MacGazette relaunch.</p>
<p>The post <a href="http://ryanvarley.co.uk/2012/06/02/the-new-macgazette-the-design/">The New Macgazette &#8211; The Design</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ryanvarley.co.uk/2012/06/02/the-new-macgazette-the-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asana &#8211; How i manage my tasks and stay productive</title>
		<link>http://ryanvarley.co.uk/2012/02/17/asana-how-i-manage-my-tasks-and-stay-productive/</link>
		<comments>http://ryanvarley.co.uk/2012/02/17/asana-how-i-manage-my-tasks-and-stay-productive/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 18:35:25 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[asana]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[task management]]></category>

		<guid isPermaLink="false">http://ryanvarley.co.uk/?p=252</guid>
		<description><![CDATA[<p>I wrote a small post yesterday on TechChoices about a website called Asana - a task management website that lets you create to do lists and collaborate with teams and thought i'd spend a few minutes showing you how i use it everyday to prioritise and stay productive.</p><p>The post <a href="http://ryanvarley.co.uk/2012/02/17/asana-how-i-manage-my-tasks-and-stay-productive/">Asana &#8211; How i manage my tasks and stay productive</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I wrote a small post yesterday on <a href="http://techchoices.co.uk/410/asana-to-do-list-task-manager/" target="_blank">TechChoices</a> about a website called <a href="http://asana.com">Asana</a> &#8211; a task management website that lets you create to do lists and collaborate with teams and thought i&#8217;d spend a few minutes showing you how i use it everyday to prioritise and stay productive.</p>
<p>I have 3 workspaces currently &#8211; Solo, Lists and MacGazette. Unlike this website and some of my others MacGazette has its own workspace because its collaborative and has the most engagement. The others are entered as projects in solo.</p>
<p>Projects inside solo include uni, masters project, TechChoices, Personal etc. Personal includes any household tasks such as &#8216;post that letter&#8217; or &#8216;wash clothes&#8217; while uni will contain any deadlines. Where Asana really becomes useful is my master projects and website tasks.</p>
<p>Every morning ill look through my upcoming tasks and pick the ones I mean to do that day. For example I may choose a couple of tasks from my project and the odd task from one of my websites. <strong>By choosing and focusing on a small number of big tasks and a few more smaller tasks each day I can get things done without being overwhelmed</strong>.</p>
<p>For some of the more important tasks ill add notes before completing it like how a bug was fixed or some problems encountered while performing it for future reference in similar problems or my masters write up which can easily be searched for later when the task has been checked off.</p>
<p>Perhaps the most useful feature is how quick it is to write new tasks, drag them into a priority and set them as &#8216;later&#8217;, &#8216;upcoming&#8217; or &#8216;today&#8217; depending on the urgency in which they need doing.</p>
<p>Now, all thats left is;</p>
<p><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/02/asana-mark-as-complete.png"><img class="aligncenter size-full wp-image-262" title="asana-mark-as-complete" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/02/asana-mark-as-complete.png" alt="" width="432" height="154" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a href="http://ryanvarley.co.uk/2012/02/17/asana-how-i-manage-my-tasks-and-stay-productive/">Asana &#8211; How i manage my tasks and stay productive</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ryanvarley.co.uk/2012/02/17/asana-how-i-manage-my-tasks-and-stay-productive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LaTeX and Comments</title>
		<link>http://ryanvarley.co.uk/2012/02/10/latex-and-comments/</link>
		<comments>http://ryanvarley.co.uk/2012/02/10/latex-and-comments/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 19:49:22 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://ryanvarley.co.uk/?p=226</guid>
		<description><![CDATA[<p>Weeks after I made the switch to LaTex from Microsoft word, I've finally thought of a way of getting my beloved comment feature back. Footnotes!</p><p>The post <a href="http://ryanvarley.co.uk/2012/02/10/latex-and-comments/">LaTeX and Comments</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>It was only after all the hassle I had with layout in my third year literature review on <em>The detection and characterisation of Super-Earth Exoplanets</em> (which you can read <a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/02/Exoplanet-Review-final.pdf">here</a>) that i realised Microsoft Word isnt great when it comes to long documents. Minor changes to the text mean figures no longer fit, EndNote (for references) effectively rids you of your undo button and not matter how you rework it you always seem to have a heading as the last line on a page.</p>
<p>It&#8217;s not surprising then that when I started my Masters thesis  I decided I&#8217;d make the switch to LaTex.</p>
<p>The learning curve was a bit steeper than id expected but the befits are obvious &#8211; no more worrying about layout! Despite this there was something missing in LaTeX that id come to love in Microsoft Word &#8211; the ability to add comments to text. Yes i know you can comment in TeX but using % isnt really suitable here as it blends into the text and doesn&#8217;t show up in the pdf. Heres what i like in word</p>
<p><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/02/ryanvarley-word-comment-feature.jpg"><img class="aligncenter size-full wp-image-228" title="ryanvarley-word-comment-feature" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/02/ryanvarley-word-comment-feature.jpg" alt="" width="601" height="374" /></a></p>
<p>In laTeX since your dealing with a raw files its not really possible to do this. i tried making my own command /com{comment here} which is better than % as you can end it on the same line but still not great as it cant be seen in the pdf.</p>
<p>The Solution &#8211; use <strong>footnotes</strong>, theyre out the way, appear in the pdf and reference the part you want to comment on. It&#8217;s not a great solution if your already using them in your document but if that&#8217;s the case, maybe you should spend the time looking for a macro to do the job.</p>
<p><a href="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/02/ryanvarley-latex-comment-feature.jpg"><img class="aligncenter size-full wp-image-229" title="ryanvarley-latex-comment-feature" src="http://ryanvarley.co.uk/wp-content/uploads/sites/4/2012/02/ryanvarley-latex-comment-feature.jpg" alt="" width="338" height="329" /></a></p>
<p>The post <a href="http://ryanvarley.co.uk/2012/02/10/latex-and-comments/">LaTeX and Comments</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ryanvarley.co.uk/2012/02/10/latex-and-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PageLines Battleground</title>
		<link>http://ryanvarley.co.uk/2012/02/09/pagelines-battleground/</link>
		<comments>http://ryanvarley.co.uk/2012/02/09/pagelines-battleground/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 21:03:37 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[pagelines]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://ryanvarley.co.uk/?p=219</guid>
		<description><![CDATA[<p>When I built this site I decided to use a combination of WordPress and the Pagelines Framework. A few days ago i submitted my website to PageLines and its now battling it out in the PageLines Battleground #5.</p><p>The post <a href="http://ryanvarley.co.uk/2012/02/09/pagelines-battleground/">PageLines Battleground</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>When I built this site I decided to use a combination of WordPress and the Pagelines Framework which when combined the two create a powerful content management system and blog. Pagelines is structured in sections so each element of the website is a separate section you can control, change and move elsewhere by using the drag and drop framework.</p>
<p>To build this site I made my own child theme that overwrites certain sections such as the &#8216;brand-nav&#8217; with my own customised version and change other sections superficially with CSS like the featured boxes I use to display the rotating banner of pictures. All of this came together to produce the website you see now and that website has just been featured in the <a href="http://www.pagelines.com/showcase-battleground-5th-edition/" target="_blank">Pagelines Showcase Battleground #5</a> where you can vote for this site to win!</p>
<p>If your looking for reasons to choose my site over some of the other entrants then heres a few:</p>
<ul>
<li>Utilised PageLines Framework effectively</li>
<li>Customised the site from defaults (ie the feature boxes, brand-nav and the social icons are all different)</li>
<li>Its a good design!</li>
</ul>
<p>Thanks for visiting and prepare yourself for more updates in the future, this is only the beginning.</p>
<p>The post <a href="http://ryanvarley.co.uk/2012/02/09/pagelines-battleground/">PageLines Battleground</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ryanvarley.co.uk/2012/02/09/pagelines-battleground/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction</title>
		<link>http://ryanvarley.co.uk/2012/01/19/introduction/</link>
		<comments>http://ryanvarley.co.uk/2012/01/19/introduction/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 23:49:05 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ryanvarley.co.uk/?p=117</guid>
		<description><![CDATA[<p><p>Welcome to my personal website, the site is a hub for my projects, websites and photos but as yet is still incomplete. As the main parts of the site are now up ive decided to make it live and here it is.</p></p><p>The post <a href="http://ryanvarley.co.uk/2012/01/19/introduction/">Introduction</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Welcome to my personal website, the site is a hub for my projects, websites and photos but as yet is still incomplete. As the main parts of the site are now up ive decided to make it live and here it is.</p>
<p>The post <a href="http://ryanvarley.co.uk/2012/01/19/introduction/">Introduction</a> appeared first on <a href="http://ryanvarley.co.uk">Ryan Varley</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ryanvarley.co.uk/2012/01/19/introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.825 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-24 02:13:24 -->

<!-- Compression = gzip -->