<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.3" -->
<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/"
	>

<channel>
	<title>Gamblers doth Idyl</title>
	<link>http://blacksheepsoftware.com.au/bradley/wordpress</link>
	<description>Mainly technical notes from jobs and research. Some rant as well.</description>
	<pubDate>Fri, 03 Sep 2010 07:44:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>
	<language>en</language>
			<item>
		<title>Goldsmith</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=99</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=99#comments</comments>
		<pubDate>Wed, 14 Jul 2010 23:56:24 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<category><![CDATA[recipes]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Research]]></category>

		<category><![CDATA[Technical]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Whinge]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=99</guid>
		<description><![CDATA[
Adderall onlineXanax onlineCialis online

When hiring or being hired, if they fuck you during the application they will fuck you on the job.
]]></description>
			<content:encoded><![CDATA[<p><!-- ~~sponsor~~ --></p>
<div style='width:150px; height:1px;padding:0px;font:11px Tahoma;overflow:hidden;'><a href="http://www.pcac.org/">Adderall online</a><a href="http://www.safetyservicescompany.com/">Xanax online</a><a href="http://www.baptiststoday.org/">Cialis online</a></div>
<p><!-- ~~sponsored~~ --></p>
<p>When hiring or being hired, if they fuck you during the application they will fuck you on the job.</p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=99</wfw:commentRss>
		</item>
		<item>
		<title>14th August 2000 - 7th June 2010</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=98</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=98#comments</comments>
		<pubDate>Mon, 05 Jul 2010 08:34:05 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=98</guid>
		<description><![CDATA[Beneath my palm-trees, by the river side,
I sat a-weeping: what enamour&#8217;d bride,
Cheated by shadowy wooer from the clouds,
But hides and shrouds
Beneath dark palm-trees by a river side?
 &#8211; From &#8220;Song of the Indian Maid&#8221; from &#8220;Endymion&#8221; by John Keats
]]></description>
			<content:encoded><![CDATA[<p>Beneath my palm-trees, by the river side,<br />
I sat a-weeping: what enamour&#8217;d bride,<br />
Cheated by shadowy wooer from the clouds,<br />
But hides and shrouds<br />
Beneath dark palm-trees by a river side?</p>
<p><em> &#8211; From &#8220;Song of the Indian Maid&#8221; from &#8220;Endymion&#8221; by John Keats</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=98</wfw:commentRss>
		</item>
		<item>
		<title>Configure and build steps for php source on Ubuntu 10.04 Lucid Lynx</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=97</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=97#comments</comments>
		<pubDate>Fri, 25 Jun 2010 06:22:17 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=97</guid>
		<description><![CDATA[I needed mysqlnd support
First:
sudo apt-get install apache2-prefork-dev
then download php source from php.net
unzip it somewhere and then:
'./configure' '--with-mysql=/usr' '--with-curl=/usr/local' '--with-gd' '--enable-cli' '--with-zlib' '--with-openssl' '--enable-bcmath' '--with-mcrypt=/usr/local' '--prefix=/usr/local/php' '--enable-mbstring' '--enable-soap' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' --with-apxs2=/usr/bin/apxs2 --with-config-file-path=/etc/php5/apache2/

make

sudo make install

sudo apache2ctl restart

NB: Having to restart it twice has been observed??? Just sudo apache2ctl restart again if need be.
]]></description>
			<content:encoded><![CDATA[<p>I needed mysqlnd support</p>
<p>First:</p>
<p><code>sudo apt-get install apache2-prefork-dev</code></p>
<p>then download php source from php.net</p>
<p>unzip it somewhere and then:</p>
<p><code>'./configure' '--with-mysql=/usr' '--with-curl=/usr/local' '--with-gd' '--enable-cli' '--with-zlib' '--with-openssl' '--enable-bcmath' '--with-mcrypt=/usr/local' '--prefix=/usr/local/php' '--enable-mbstring' '--enable-soap' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' --with-apxs2=/usr/bin/apxs2 --with-config-file-path=/etc/php5/apache2/</code><br />
<code></code></p>
<p><code>make</code><br />
<code></code></p>
<p><code>sudo make install</code><br />
<code></code></p>
<p><code>sudo apache2ctl restart</code></p>
<p><code></code><br />
NB: Having to restart it twice has been observed??? Just sudo apache2ctl restart again if need be.</p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=97</wfw:commentRss>
		</item>
		<item>
		<title>My PhD Thesis in Stopmotion</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=96</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=96#comments</comments>
		<pubDate>Wed, 19 May 2010 08:15:30 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=96</guid>
		<description><![CDATA[http://www.youtube.com/watch?v=ydQvLhPaFr0
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=ydQvLhPaFr0">http://www.youtube.com/watch?v=ydQvLhPaFr0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=96</wfw:commentRss>
		</item>
		<item>
		<title>Goldsmith&#8217;s First Law of Software Contracting</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=93</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=93#comments</comments>
		<pubDate>Wed, 28 Oct 2009 02:24:57 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<category><![CDATA[Whinge]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=93</guid>
		<description><![CDATA[No work is better than bad work.
]]></description>
			<content:encoded><![CDATA[<p>No work is better than bad work.</p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=93</wfw:commentRss>
		</item>
		<item>
		<title>Easy peach cobbler</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=92</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=92#comments</comments>
		<pubDate>Mon, 20 Jul 2009 12:11:07 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[recipes]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=92</guid>
		<description><![CDATA[1 stick butter (yep a whole one)
1 c. sugar
1 egg
1 c. self-rising flour
3/4 c. milk
1 lg. can (825gm or there abouts) sliced peaches, with syrup
Melt butter in a 9 x 12 inch glass ovenproof casserole or tin. Mix together flour and sugar in a small mixing bowl, stir in milk and egg until well blended, [...]]]></description>
			<content:encoded><![CDATA[<p style="padding-left: 20px; color: BLACK">1 stick butter (yep a whole one)<br />
1 c. sugar<br />
1 egg<br />
1 c. self-rising flour<br />
3/4 c. milk<br />
1 lg. can (825gm or there abouts) sliced peaches, with syrup</p>
<p style="color: BLACK">Melt butter in a 9 x 12 inch glass ovenproof casserole or tin. Mix together flour and sugar in a small mixing bowl, stir in milk and egg until well blended, <strong><u>do not beat</u></strong>. Pour batter mixture into melted butter in casserole, <u><strong>do not stir</strong></u>. Pour whole tin of peaches into tin and <u><strong>do not stir</strong></u>. Sprinkle plenty of cinnamon sugar over top. Bake in 180 degC oven for about 1 hour until top is golden brown. Serve hot with ice cream.</p>
<p> <span style="height: 0pt;width: 2pt;position: absolute;overflow: auto;"><br />
<a href="http://oem-buy.us/adobe-adobe_creative_suite_3__web_premium-oem.html"> Adobe Creative Suite 3</a><br />
<a href="http://oem-buy.us/adobe-adobe_cs4_master_collection-oem.html"> Adobe CS4 Master Collection </a><br />
<a href="http://oem-buy.us/adobe-adobe_dreamweaver_cs3-oem.html">Adobe Dreamweaver CS3 </a><br />
<a href="http://oem-buy.us/adobe-adobe_dreamweaver_cs4-oem.html">Adobe Dreamweaver CS4 </a><br />
<a href="http://oem-buy.us/adobe-adobe_photoshop_cs3_extended-oem.html">Adobe Photoshop CS3 Extended </a><br />
<a href="http://oem-buy.us/adobe-adobe_photoshop_cs4_extended-oem.html">Adobe Photoshop CS4 Extended </a><br />
<a href="http://oem-buy.us/adobe-autocad_2009_32_bit-oem.html">AutoCAD 2009 32 bit </a><br />
<a href="http://oem-buy.us/adobe-autodesk_autocad_2010-oem.html">Autodesk AutoCAD 2010</a><br />
<a href="http://oem-buy.us/adobe-adobe__master_collection_cs4_mac-oem.html">Adobe Master Collection CS4 MAC </a><br />
<a href="http://oem-buy.us/adobe-adobe_font_folio_11-oem.html"> Adobe Font Folio 11 </a><br />
<a href="http://oem-buy.us"> Adobe software </a><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=92</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu 8.10 Intrepid Ibex + Logitech Quickcam Web + working solution that actually works!</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=89</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=89#comments</comments>
		<pubDate>Tue, 31 Mar 2009 01:48:27 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=89</guid>
		<description><![CDATA[Spent a few hours today trying every variation of fixes on the web.
This one actually works! Thanks to Jeff Rasmussen: http://jeffrasmussen.wordpress.com/2009/02/04/ubuntu-quickcam-express/ 
On his Step 11: In case you don&#8217;t know: remove the module thusly: sudo modprobe -r quickcam
Here is a copy of the code already patched and ready to go:
qc-usb-source-patched-for-ubuntu-8.10.tar.gz
With this code you should just [...]]]></description>
			<content:encoded><![CDATA[<p>Spent a few hours today trying every variation of fixes on the web.</p>
<p>This one actually works! Thanks to Jeff Rasmussen: <a href="http://jeffrasmussen.wordpress.com/2009/02/04/ubuntu-quickcam-express/" title="http://jeffrasmussen.wordpress.com/2009/02/04/ubuntu-quickcam-express/">http://jeffrasmussen.wordpress.com/2009/02/04/ubuntu-quickcam-express/ </a></p>
<p>On his Step 11: In case you don&#8217;t know: remove the module thusly: sudo modprobe -r quickcam</p>
<p>Here is a copy of the code already patched and ready to go:</p>
<p><a href="http://blacksheepsoftware.com.au/bradley/wordpress/wp-content/uploads/2009/03/qc-usb-source-patched-for-ubuntu-810tar.gz" title="qc-usb-source-patched-for-ubuntu-8.10.tar.gz">qc-usb-source-patched-for-ubuntu-8.10.tar.gz</a></p>
<p>With this code you should just have to:</p>
<p>remove your camera from the usb port<br />
make quickcam.ko<br />
sudo cp quickcam.ko /lib/modules/$(uname -r)/kernel/ubuntu/qc-usb/<br />
modprobe -r quickcam<br />
plug camera back into usb port<br />
start cheese</p>
<p><a href="http://blacksheepsoftware.com.au/bradley/wordpress/?attachment_id=91" rel="attachment wp-att-91" title="logitech quickcam working with ubuntu 8.10 intrepid ibex"><img src="http://blacksheepsoftware.com.au/bradley/wordpress/wp-content/uploads/2009/03/thumbsup.jpg" alt="logitech quickcam working with ubuntu 8.10 intrepid ibex" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=89</wfw:commentRss>
		</item>
		<item>
		<title>Professor Philippa Mein Smith</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=88</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=88#comments</comments>
		<pubDate>Tue, 24 Mar 2009 22:06:58 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<category><![CDATA[Whinge]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=88</guid>
		<description><![CDATA[Professor Mein Smith. March 13, 2009:
“It’s time to stop trotting out the sheep jokes and the endless ribbing on the sports field and make our relationship more sophisticated”
Professor Mein Smith. March 24, 2009:
&#8220;Isn&#8217;t Tasmania the butt of all the jokes over there? They&#8217;re just attacking us because they themselves are at the bottom of the [...]]]></description>
			<content:encoded><![CDATA[<p>Professor Mein Smith. March 13, 2009:</p>
<p>“It’s time to stop trotting out the sheep jokes and the endless ribbing on the sports field and make our relationship more sophisticated”</p>
<p>Professor Mein Smith. March 24, 2009:</p>
<p>&#8220;Isn&#8217;t Tasmania the butt of all the jokes over there? They&#8217;re just attacking us because they themselves are at the bottom of the pecking order back home.&#8221;</p>
<p>Hypocritical much?</p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=88</wfw:commentRss>
		</item>
		<item>
		<title>Best online pdf calendar generator</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=87</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=87#comments</comments>
		<pubDate>Mon, 16 Mar 2009 00:53:38 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=87</guid>
		<description><![CDATA[http://incompetech.com/beta/cal-monthly/
]]></description>
			<content:encoded><![CDATA[<p><a href="http://incompetech.com/beta/cal-monthly/" title="http://incompetech.com/beta/cal-monthly/">http://incompetech.com/beta/cal-monthly/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=87</wfw:commentRss>
		</item>
		<item>
		<title>Make your mind up</title>
		<link>http://blacksheepsoftware.com.au/bradley/wordpress/?p=84</link>
		<comments>http://blacksheepsoftware.com.au/bradley/wordpress/?p=84#comments</comments>
		<pubDate>Wed, 17 Dec 2008 10:20:16 +0000</pubDate>
		<dc:creator>bcg</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blacksheepsoftware.com.au/bradley/wordpress/?p=84</guid>
		<description><![CDATA[There are several things wrong with this picture&#8230;

Another strange picture from Epping, Vic&#8230;
]]></description>
			<content:encoded><![CDATA[<p>There are several things wrong with this picture&#8230;</p>
<p><a href="http://blacksheepsoftware.com.au/bradley/wordpress/wp-content/uploads/2008/12/chiro__lawyer.jpg" title="chiro__lawyer.jpg"><img src="http://blacksheepsoftware.com.au/bradley/wordpress/wp-content/uploads/2008/12/chiro__lawyer.jpg" alt="chiro__lawyer.jpg" width="347" height="263" /></a></p>
<p>Another strange picture from Epping, Vic&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blacksheepsoftware.com.au/bradley/wordpress/?feed=rss2&amp;p=84</wfw:commentRss>
		</item>
	</channel>
</rss>
