 
<?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>Corpr8 web design and innovation</title>
	<atom:link href="http://corpr8.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://corpr8.co.uk</link>
	<description>Everything and Anything</description>
	<lastBuildDate>Mon, 13 Dec 2010 23:50:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Kingdoms of Camelot url for Audio Alert from Auto Attack with Extra Features</title>
		<link>http://corpr8.co.uk/kingdoms-of-camelot-url-for-audio-alert-from-auto-attack-with-extra-features/</link>
		<comments>http://corpr8.co.uk/kingdoms-of-camelot-url-for-audio-alert-from-auto-attack-with-extra-features/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 23:48:30 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Kindoms of Camelot]]></category>
		<category><![CDATA[Kingdoms of Camelot url for Audio Alert from Auto Attack with Extra Features]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/?p=201</guid>
		<description><![CDATA[http://corpr8.co.uk/alert/]]></description>
			<content:encoded><![CDATA[<p>http://corpr8.co.uk/alert/</p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/kingdoms-of-camelot-url-for-audio-alert-from-auto-attack-with-extra-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make an Ubuntu Webcam</title>
		<link>http://corpr8.co.uk/how-to-make-an-ubuntu-webcam/</link>
		<comments>http://corpr8.co.uk/how-to-make-an-ubuntu-webcam/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 19:15:59 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Webcam]]></category>
		<category><![CDATA[Bash Script]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[Javscript]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/?p=160</guid>
		<description><![CDATA[Ok &#8211; so it&#8217;s a bank holiday and I thought &#8211; why not build myself a webcam which would automatically publish up to my website&#8230; Here&#8217;s the method&#8217;s and gotcha&#8217;s: 1) Install fswebcam and get it running (man fswebcam) - my working command line was: fswebcam -q -r 640&#215;480 &#8211;no-banner test.jpg 2) Work out how [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Ok &#8211; so it&#8217;s a bank holiday and I thought &#8211; why not build myself a webcam which would automatically publish up to my website&#8230; Here&#8217;s the method&#8217;s and gotcha&#8217;s:</div>
<div></div>
<div id="_mcePaste">1) Install fswebcam and get it running (man fswebcam) -</div>
<div id="_mcePaste">my working command line was: fswebcam -q -r 640&#215;480 &#8211;no-banner test.jpg</div>
<div id="_mcePaste"></div>
<div>2) Work out how to FTP onto your website &#8211; and put the both into a bash script:</div>
<div></div>
<div>#!/bin/bash</div>
<div id="_mcePaste"># script to capture from webcam and copy up to the web</div>
<div id="_mcePaste">PATH=$PATH:/bin:/sbin:/usr/bin:/usr/sbin</div>
<div id="_mcePaste">fswebcam -q -r 640&#215;480 &#8211;no-banner test.jpg</div>
<div id="_mcePaste">ftp -inv mywebsite&lt;&lt;ENDFTP</div>
<div id="_mcePaste">user myftpuser myftpassword</div>
<div id="_mcePaste">bin</div>
<div id="_mcePaste">put test.jpg</div>
<div id="_mcePaste">bye</div>
<div id="_mcePaste">ENDFTP</div>
<div></div>
<div>Don&#8217;t forget to make the bash script executable: chmod a x filename&#8230;</div>
<div id="_mcePaste"></div>
<div>Run it and check that it works&#8230; (FTP onto your site and have a look)..</div>
<div></div>
<div>So now onto the Html / Javascript:</div>
<div>Put this in the head:</div>
<div id="_mcePaste"></div>
<div>&lt;script language=&#8221;JavaScript&#8221; type=&#8221;text/javascript&#8221;&gt;</div>
<div id="_mcePaste">function Clock()</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">var now = new Date();</div>
<div id="_mcePaste">this.document.getElementById(&#8220;testimg&#8221;).src=&#8221;test.jpg?&#8221; + now.getTime();</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">&lt;/script&gt;</div>
<div></div>
<div>Use this for the onload of the body:</div>
<div></div>
<div>&lt;body onload=&#8221;setInterval(&#8216;Clock()&#8217;,60000)&#8221;&gt;</div>
<div></div>
<div>and here&#8217;s the target IMG:</div>
<div></div>
<div>&lt;img src=&#8221;test.jpg&#8221; alt=&#8221;test image&#8221; id=&#8221;testimg&#8221;/&gt;</div>
<div></div>
<div>Ok &#8211; so finally (and probably the worst bit) &#8211; lets set up a chrontab job to automate the client side:</div>
<div id="_mcePaste">In a konsole window type:</div>
<div></div>
<div>export EDITOR=&#8221;kate &#8211; or your favourite editor&#8221;</div>
<div id="_mcePaste">chrontab -e</div>
<div></div>
<div>Now point your job at your script file:</div>
<div></div>
<div>PATH=/usr/sbin:/usr/bin:/sbin:/bin</div>
<div id="_mcePaste">*/1 * * * * /home/paul/Documents/capandftp.sh &gt;&gt; /home/paul/Documents/cron.log 2&gt;&amp;1</div>
<div></div>
<div>****Don&#8217;t forget to put 4 carriage returns in otherwise it seems to just not work****</div>
<div></div>
<div>Note the chron job is logging to cron.log!!!</div>
<div></div>
<div>Hey and that&#8217;s it &#8211; if you need more help getting this working, feel free to msg me&#8230;</div>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/how-to-make-an-ubuntu-webcam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Xsane under Ubuntu</title>
		<link>http://corpr8.co.uk/fixing-xsane-under-ubuntu/</link>
		<comments>http://corpr8.co.uk/fixing-xsane-under-ubuntu/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 11:14:04 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/blog/?p=93</guid>
		<description><![CDATA[Ok &#8211; If it doesn&#8217;t work, Run sane-find-scanner then add the usb address to the end of: /etc/sane.d/epson2.conf Then to make the USB scanner available to normal users, give them rights to the USB port as found in the scan or just lsusb: go to /dev/bus/ usb/002/002 (Might want to try /dev/bus/usb/003/002 as well if [...]]]></description>
			<content:encoded><![CDATA[<p>Ok &#8211; If it doesn&#8217;t work,</p>
<p>Run</p>
<p>sane-find-scanner</p>
<p>then add the usb address to the end of:</p>
<p>/etc/sane.d/epson2.conf</p>
<p>Then to make the USB scanner available to normal users, give them rights to the USB port as found in the scan or just lsusb:</p>
<p>go to  /dev/bus/</p>
<p>usb/002/002<br />
(Might want to try /dev/bus/usb/003/002 as well if this bus no. confusion exists)<br />
Right mouse click &gt; properties &gt; permissions<br />
Allow Run for Group and Other Users.</p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/fixing-xsane-under-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Karmic!</title>
		<link>http://corpr8.co.uk/karmic/</link>
		<comments>http://corpr8.co.uk/karmic/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 14:43:43 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Frist Impressions]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[Karmic Koala]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/blog/?p=90</guid>
		<description><![CDATA[At 2.37pm we started upgrdaing to Karmic Koala! Impressions: The download took around 7 hours (probably because the whole planet was upgrading at the same time) Once installed and I had finished getting the wireless card to see my Hub (As I always have trouble with), the first thing I notice is that the graphics [...]]]></description>
			<content:encoded><![CDATA[<p>At 2.37pm we started upgrdaing to Karmic Koala!</p>
<p>Impressions:</p>
<p>The download took around 7 hours (probably because the whole planet was upgrading at the same time)</p>
<p>Once installed and I had finished getting the wireless card to see my Hub (As I always have trouble with), the first thing I notice is that the graphics performance is drastically improved, the screen looks more crisp and multiple windows seem to slow the system down less!</p>
<p>I have high hopes for this Koala!</p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/karmic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Popcorn Hour (PCH) and YAMJ, gotchas!</title>
		<link>http://corpr8.co.uk/popcorn-hour-pch-and-yamj-gotchas/</link>
		<comments>http://corpr8.co.uk/popcorn-hour-pch-and-yamj-gotchas/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 11:39:01 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[PCH]]></category>
		<category><![CDATA[YAMJ]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/blog/?p=89</guid>
		<description><![CDATA[Ok I have just set up PCH with a YAMJ frontend and there are a few simple gotcha&#8217;s! 1) PCH doesnt like spaces in file names! 2) Map the PCH to itself as a network share (?) 3) Index Yamj to that share 4) run YAMJ on the PCH from the network share! 5) Put [...]]]></description>
			<content:encoded><![CDATA[<p>Ok I have just set up PCH with a YAMJ frontend and there are a few simple gotcha&#8217;s!</p>
<p>1) PCH doesnt like spaces in file names!<br />
2) Map the PCH to itself as a network share (?)<br />
3) Index Yamj to that share<br />
4) run YAMJ on the PCH from the network share!<br />
5) Put the index.htm into the root of your share.</p>
<p>&#8230;BLISS&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/popcorn-hour-pch-and-yamj-gotchas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kubuntu Fixing Blocked Updates</title>
		<link>http://corpr8.co.uk/kubuntu-fixing-blocked-updates/</link>
		<comments>http://corpr8.co.uk/kubuntu-fixing-blocked-updates/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 11:36:35 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blocked updates]]></category>
		<category><![CDATA[Kubuntu]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/blog/?p=88</guid>
		<description><![CDATA[sudo apt-get update sudo apt-get dist-upgrade]]></description>
			<content:encoded><![CDATA[<p>sudo apt-get update<br />
sudo apt-get dist-upgrade</p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/kubuntu-fixing-blocked-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I think I&#8217;ve been geeked!</title>
		<link>http://corpr8.co.uk/i-think-ive-been-geeked/</link>
		<comments>http://corpr8.co.uk/i-think-ive-been-geeked/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 12:02:04 +0000</pubDate>
		<dc:creator>Liane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GEEKED!!!]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/blog/?p=87</guid>
		<description><![CDATA[I now know what a Green Sata Terabyte drive is and HDMI to VGA cable for our Popcorn Media Server!!!]]></description>
			<content:encoded><![CDATA[<p>I now know what a Green Sata Terabyte drive is and HDMI to VGA cable for our Popcorn Media Server!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/i-think-ive-been-geeked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synchronising files across multiple Linux systems</title>
		<link>http://corpr8.co.uk/synchronising-files-across-multiple-linux-systems/</link>
		<comments>http://corpr8.co.uk/synchronising-files-across-multiple-linux-systems/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 11:27:35 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[file system synchronisation]]></category>
		<category><![CDATA[Kubuntu Synchronization]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/blog/?p=80</guid>
		<description><![CDATA[Found a utility &#8211; Unison&#8230; Check out Micah Carricks how-to guide here: http://www.micahcarrick.com/11-07-2007/unison-synchronize-ubuntu.html Note: the syntax on allow root login &#8211; was permit root login on my Kubuntu box!]]></description>
			<content:encoded><![CDATA[<p>Found a utility &#8211; Unison&#8230;</p>
<p>Check out Micah Carricks how-to guide here:</p>
<p><a title="Micah Carricks syncrhonisation guide" href="http://www.micahcarrick.com/11-07-2007/unison-synchronize-ubuntu.html">http://www.micahcarrick.com/11-07-2007/unison-synchronize-ubuntu.html</a></p>
<p>Note: the syntax on allow root login &#8211; was permit root login on my Kubuntu box!</p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/synchronising-files-across-multiple-linux-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Karmic Koala out in the wild on the 1st!!!</title>
		<link>http://corpr8.co.uk/karmic-koala-out-in-the-wild-on-the-1st/</link>
		<comments>http://corpr8.co.uk/karmic-koala-out-in-the-wild-on-the-1st/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 12:49:54 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Karmic Koala]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/blog/?p=73</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p> <img src='http://corpr8.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/karmic-koala-out-in-the-wild-on-the-1st/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install Vbox additions n KDE openSuse</title>
		<link>http://corpr8.co.uk/install-vbox-additions-n-kde-opensuse/</link>
		<comments>http://corpr8.co.uk/install-vbox-additions-n-kde-opensuse/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 12:50:38 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[openSuse]]></category>
		<category><![CDATA[vbox additions]]></category>

		<guid isPermaLink="false">http://corpr8.co.uk/blog/?p=70</guid>
		<description><![CDATA[ok &#8211; here&#8217;s how to get the GCC compiler installed: sudo zypper install make gcc gcc-c++ kernel-source kernel-syms Then kdesu dolphin and navigate to the run file for the vbox additions!]]></description>
			<content:encoded><![CDATA[<p>ok &#8211; here&#8217;s how to get the GCC compiler installed:</p>
<p>sudo zypper install make gcc gcc-c++ kernel-source kernel-syms</p>
<p>Then kdesu dolphin and navigate to the run file for the vbox additions!</p>
]]></content:encoded>
			<wfw:commentRss>http://corpr8.co.uk/install-vbox-additions-n-kde-opensuse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

