<?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>Paul Sutton</title>
	<atom:link href="http://zleap.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://zleap.net</link>
	<description>Welcome to zleap.net</description>
	<lastBuildDate>Mon, 20 May 2013 16:38:49 +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>Github</title>
		<link>http://zleap.net/github/</link>
		<comments>http://zleap.net/github/#comments</comments>
		<pubDate>Sun, 19 May 2013 14:40:06 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=899</guid>
		<description><![CDATA[I have been looking at git hub as this is popular for storing and working on projects the following is a summary of how to get things up and running,  note you should READ INSTRUCTIONS ELSE WHERE IF YOU ARE STUCK SEEK HELP IF YOU GET STUCK as there may be errors, these notes were to help me, but may be useful to others,  so]]></description>
				<content:encoded><![CDATA[<p>I have been looking at git hub as this is popular for storing and working on projects</p>
<p>the following is a summary of how to get things up and running,  note you should</p>
<p>READ INSTRUCTIONS ELSE WHERE IF YOU ARE STUCK</p>
<p>SEEK HELP IF YOU GET STUCK as there may be errors, these notes were to help me, but may be useful to others,  so please <span style="text-decoration: underline;"><strong>DO NOT</strong></span> follow blindly.</p>
<p>irc : irc.freenode.net #git is a good place to get help</p>
<p>firstly</p>
<p>git hub basic how to</p>
<p>1. goto www.github.com and create an account<br />
2. create a repository<br />
2a git hub will then give you https://github.com/user/projectname.git</p>
<p>from : http://git-scm.com/book/en/Git-Basics you also need to<br />
837 git config &#8211;global user.name &#8220;username&#8221;<br />
838 git config &#8211;global user.email e-mail</p>
<p>You should only have to do this once or once on each computer, if you re-install then you may have to repeat this.</p>
<p>on command line</p>
<p>then</p>
<p>make sure remote repository is there<br />
git remote -v</p>
<p>mkdir projectname<br />
cd projectname<br />
touch readme.md<br />
git init<br />
git add readme.md<br />
to add files do<br />
git add *.py<br />
git commit -m &#8220;project name&#8221;<br />
git remote add origin https://github.com/user/projectname.git<br />
git push -u origin master<br />
git push</p>
<p>or</p>
<p>do git clone https://github.com/user/projectname and it will create a local copy of the repository then you should be able to :</p>
<p>to add new files after all this do</p>
<p>touch mine.py*<br />
git add mine.py<br />
git commit -m &#8220;test file&#8221;<br />
git push</p>
<p>if after git cloning you may have to</p>
<p>git remote add origin https://github.com/user/projectname.git<br />
git push -u origin master</p>
<p>then follow the steps above,</p>
<p>or create a new file with code / content within it, touch simply creates a new file,</p>
<p>https://help.github.com/articles/set-up-git</p>
<p>http://git-scm.com/book/en/Git-Basics</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restart Linux with SysRq</title>
		<link>http://zleap.net/restart-linux-with-sysrq/</link>
		<comments>http://zleap.net/restart-linux-with-sysrq/#comments</comments>
		<pubDate>Sat, 18 May 2013 13:39:18 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=897</guid>
		<description><![CDATA[If your system is unresponsive there are a number of things you can try. This still works on Lubuntu 12.10 Restarting Ubuntu safely when it is frozen In case of a freeze where you cannot do anything, you can use the following Alt+SysRq R S E I U B &#8220;Raising Skinny Elephants Is Utterly Boring&#8221; keep in mind that the underlined keys must be kept]]></description>
				<content:encoded><![CDATA[<p>If your system is unresponsive there are a number of things you can try. This still works on Lubuntu 12.10</p>
<p>Restarting Ubuntu safely when it is frozen</p>
<p>In case of a freeze where you cannot do anything, you can use the following</p>
<p>Alt+SysRq R S E I U B</p>
<p>&#8220;Raising Skinny Elephants Is Utterly Boring&#8221;</p>
<p>keep in mind that the underlined keys must be kept pressed through the rest of the sequence AND that you will need to keep holding the sequence keys for a small period of time before going to the next one so that their actions can be carried out properly (For example, hold the R key for about 1-2 seconds before moving on to S). If the sequence does not work at first, then increase the time period between each sequence key press and try again.</p>
<p>Safely shutting down Ubuntu when it is frozen</p>
<p>Alt+SysRq R S E I U O</p>
<p>This is similar to restarting except for the last letter.</p>
<p>What is going on here ?<br />
R &#8211; takes keyboard and mouse control from the X server.<br />
S &#8211; writes all data from the disc cache to the hard-discs,<br />
E &#8211; sends SIGTERM to all processes except init.<br />
I &#8211; sends SIGKILL to all processes except init<br />
U &#8211; remounts all mounted filesystems read-only</p>
<p>O &#8211; shuts down the system via ACPI or in older system<br />
B &#8211; restarts the system without making steps to ensure that the conditions are good for a safe reboot, using this key alone is like doing a cold reboot.</p>
<p>&nbsp;</p>
<hr />
<p>You could also use <a href="http://zleap.net/pi-adventures-with-ssh/" target="_blank">ssh to remotely login</a> and then use</p>
<p>sudo shutdown -h now</p>
<p>sudo halt</p>
<p>or</p>
<p>sudo reboot</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/restart-linux-with-sysrq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leap Motion</title>
		<link>http://zleap.net/leap-motion/</link>
		<comments>http://zleap.net/leap-motion/#comments</comments>
		<pubDate>Fri, 17 May 2013 18:35:46 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=893</guid>
		<description><![CDATA[This looks awsome,   and only $80 https://www.leapmotion.com/preorder/new g+ https://plus.google.com/106312624963623427811/posts &#160;]]></description>
				<content:encoded><![CDATA[<p>This looks awsome,   and only $80</p>
<p><a href="https://www.leapmotion.com/preorder/new">https://www.leapmotion.com/preorder/new</a></p>
<p>g+ <a href="https://plus.google.com/106312624963623427811/posts">https://plus.google.com/106312624963623427811/posts</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/leap-motion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspberry pi swag shop open</title>
		<link>http://zleap.net/raspberry-pi-swag-shop-open/</link>
		<comments>http://zleap.net/raspberry-pi-swag-shop-open/#comments</comments>
		<pubDate>Thu, 16 May 2013 09:50:07 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=878</guid>
		<description><![CDATA[The new merchandise shop is now open with lots of goodies with a pi theme please visit http://www.raspberrypi.org/archives/3967 for details]]></description>
				<content:encoded><![CDATA[<p>The new merchandise shop is now open with lots of goodies with a pi theme</p>
<p>please visit <a href="http://www.raspberrypi.org/archives/3967">http://www.raspberrypi.org/archives/3967</a> for details</p>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/raspberry-pi-swag-shop-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rugby teams for 2013/14 season</title>
		<link>http://zleap.net/rugby-teams-for-201314-season/</link>
		<comments>http://zleap.net/rugby-teams-for-201314-season/#comments</comments>
		<pubDate>Thu, 16 May 2013 09:42:02 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=875</guid>
		<description><![CDATA[Paignton Saxons are now in Western Counties West : Teams in this league as follows. : Bude Burnham-on-Sea Devonport Services Ivybridge Kingsbridge Okehampton Paignton Saxons Penryn St Ives (SW) Tavistock Teignmouth Torquay Athletic Truro Wellington&#160;]]></description>
				<content:encoded><![CDATA[<div>Paignton Saxons are now in Western Counties West : Teams in this league as follows. :</div>
<div></div>
<div><span style="font-size: medium;">Bude</span></div>
<div><span style="font-size: medium;">Burnham-on-Sea</span></div>
<div><span style="font-size: medium;">Devonport Services</span></div>
<div><span style="font-size: medium;">Ivybridge</span></div>
<div><span style="font-size: medium;">Kingsbridge</span></div>
<div><span style="font-size: medium;">Okehampton</span></div>
<div><span style="font-size: medium;">Paignton Saxons</span></div>
<div><span style="font-size: medium;">Penryn</span></div>
<div><span style="font-size: medium;">St Ives (SW)</span></div>
<div><span style="font-size: medium;">Tavistock</span></div>
<div><span style="font-size: medium;">Teignmouth</span></div>
<div><span style="font-size: medium;">Torquay Athletic</span></div>
<div><span style="font-size: medium;">Truro</span></div>
<div><span style="font-size: medium;"><span style="font-size: medium;">Wellington</span></span>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/rugby-teams-for-201314-season/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ARM Board Comparison</title>
		<link>http://zleap.net/arm-board-comparison/</link>
		<comments>http://zleap.net/arm-board-comparison/#comments</comments>
		<pubDate>Sat, 11 May 2013 21:06:40 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=860</guid>
		<description><![CDATA[This chart may be useful to anyone interested in low cost ARM boards &#160; http://socialcompare.com/en/comparison/low-cost-arm-boards]]></description>
				<content:encoded><![CDATA[<p>This chart may be useful to anyone interested in low cost ARM boards</p>
<p>&nbsp;</p>
<p><a href="http://socialcompare.com/en/comparison/low-cost-arm-boards">http://socialcompare.com/en/comparison/low-cost-arm-boards</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/arm-board-comparison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Known Universe</title>
		<link>http://zleap.net/the-known-universe/</link>
		<comments>http://zleap.net/the-known-universe/#comments</comments>
		<pubDate>Fri, 03 May 2013 20:39:05 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=855</guid>
		<description><![CDATA[I found this today &#160; &#160; Related site where the above is also hosted http://www.amnh.org/our-research/hayden-planetarium/digital-universe &#160;]]></description>
				<content:encoded><![CDATA[<p>I found this today</p>
<p>&nbsp;</p>
<p><iframe src="http://www.youtube.com/embed/17jymDn0W6U" height="315" width="420" allowfullscreen="" frameborder="0"></iframe></p>
<p>&nbsp;</p>
<p>Related site where the above is also hosted</p>
<p><a href="http://www.amnh.org/our-research/hayden-planetarium/digital-universe" target="_blank">http://www.amnh.org/our-research/hayden-planetarium/digital-universe</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/the-known-universe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZD Net Review of Ubuntu 13.04</title>
		<link>http://zleap.net/zd-net-review-of-ubuntu-13-04/</link>
		<comments>http://zleap.net/zd-net-review-of-ubuntu-13-04/#comments</comments>
		<pubDate>Sat, 27 Apr 2013 09:08:03 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=842</guid>
		<description><![CDATA[Review of Raring Ringtail can be found here]]></description>
				<content:encoded><![CDATA[<p>Review of Raring Ringtail can be found <a href="http://www.zdnet.com/ubuntu-13-04-raring-ringtail-review-7000014497/" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/zd-net-review-of-ubuntu-13-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 13.04 release party</title>
		<link>http://zleap.net/ubuntu-13-04-release-party/</link>
		<comments>http://zleap.net/ubuntu-13-04-release-party/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 21:58:22 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=833</guid>
		<description><![CDATA[&#160; From the Ubuntu UK mailing list. Hi all, the release of the Raring Ringtail is in a couple of days and we will be having the traditional London pub meetup with the Canonical team. This time it will be at the Old Thameside Inn, next to the Golden Hind from about 6:30 on Thursday evening. http://loco.ubuntu.com/events/ubuntu-uk/2329-1304-release-party/ There might be a Tshirt or two handed]]></description>
				<content:encoded><![CDATA[<p>&nbsp;</p>
<p>From the Ubuntu UK mailing list.</p>
<p>Hi all,</p>
<p>the release of the Raring Ringtail is in a couple of days and we will be having the traditional London pub meetup with the Canonical team. This time it will be at the Old Thameside Inn, next to the Golden Hind from about 6:30 on Thursday evening.</p>
<p><a href="http://loco.ubuntu.com/events/ubuntu-uk/2329-1304-release-party/">http://loco.ubuntu.com/events/ubuntu-uk/2329-1304-release-party/</a></p>
<p>There might be a Tshirt or two handed out as well if we are lucky <a href="http://shop.canonical.com/advanced_search_result.php?keywords=13.04+and+t-shirt">http://shop.canonical.com/advanced_search_result.php?keywords=13.04+and+t-shirt</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/ubuntu-13-04-release-party/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watermarking</title>
		<link>http://zleap.net/watermarking/</link>
		<comments>http://zleap.net/watermarking/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 16:58:54 +0000</pubDate>
		<dc:creator>Paul Sutton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zleap.net/?p=831</guid>
		<description><![CDATA[If you need to watermark images then the following may be useful &#160; http://tuxtweaks.com/2009/08/batch-watermark-images-in-linux/]]></description>
				<content:encoded><![CDATA[<p>If you need to watermark images then the following may be useful</p>
<p>&nbsp;</p>
<pre><a href="http://tuxtweaks.com/2009/08/batch-watermark-images-in-linux/" target="_blank">http://tuxtweaks.com/2009/08/batch-watermark-images-in-linux/</a></pre>
]]></content:encoded>
			<wfw:commentRss>http://zleap.net/watermarking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
