<?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>Trevor Peacock &#187; admin</title>
	<atom:link href="http://blog.peacocktech.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.peacocktech.com</link>
	<description>Hey.. That looks like fun</description>
	<lastBuildDate>Sat, 06 Feb 2010 03:13:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bilby Mark II (Part 2)</title>
		<link>http://blog.peacocktech.com/2006/12/01/bilby-mark-ii-part-2/</link>
		<comments>http://blog.peacocktech.com/2006/12/01/bilby-mark-ii-part-2/#comments</comments>
		<pubDate>Fri, 01 Dec 2006 18:38:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Science & Technology]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=42</guid>
		<description><![CDATA[Well, our new line following robot is done. With any engineering project, you can always do more, but after tidying up the program, and tweaking values for a few hours, we came up with a reasonable configuration, able to complete out test circuit in an average of 40&#160;seconds.
The robot is much quicker making left turns [...]]]></description>
			<content:encoded><![CDATA[<p>Well, our new <a href="/2006/11/30/bilby-mark-ii-part-1/">line following robot</a> is done. With any engineering project, you can always do more, but after tidying up the program, and tweaking values for a few hours, we came up with a reasonable configuration, able to complete out test circuit in an average of 40&nbsp;seconds.</p>
<p>The robot is much quicker making left turns than right turns (as shown in the video below). When the robot looses the line, it will turn left to try and find it. If the path leads left, the robot will find the line again very quickly, and continue. If the path leads right, the robot will try to seek left, fail to find the line within a pre-determined time, then seek left to find the&nbsp;line.</p>
<p>The following images show a summary of the program, as shown by the graphical programming environment supplied with the&nbsp;NXT.</p>
<div>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-55" title="bilby-nxt-main" src="http://blog.peacocktech.com/wp-content/uploads/2006/12/bilby-nxt-main.jpg" alt="bilby-nxt-main" width="556" height="190" /><br />
<span>The main body of the Bilby&#8217;s&nbsp;program</span></p>
<p><img class="aligncenter size-full wp-image-56" title="bilby-nxt-left" src="http://blog.peacocktech.com/wp-content/uploads/2006/12/bilby-nxt-left.jpg" alt="bilby-nxt-left" width="609" height="271" /><br />
<span>The section of the Bilby&#8217;s program that instructs it to seek&nbsp;left</span></p>
<p><img class="aligncenter size-full wp-image-57" title="bilby-nxt-right" src="http://blog.peacocktech.com/wp-content/uploads/2006/12/bilby-nxt-right.jpg" alt="bilby-nxt-right" width="489" height="129" /><br />
<span>The section of the Bilby&#8217;s program that instructs it to seek right</span></div>
<p>For those unfamiliar with reading NXT programs, here is a pseudo-code&nbsp;version:</p>
<pre>Wait until sensor sees black
loop forever:
  move forward
  wait until sensor sees white
  call seek_left
  if sensor sees white:
    call seek_right

seek_left:
  loop 10 times:
    pivot left (move left motor backwards, and right motor forwards)
    if sensor sees white:
      wait 0.01 seconds

seek_right:
  pivot right (move right motor backwards, and left motor forwards)
  wait until sensor sees black
  wait 0.02 seconds</pre>
<p>All in all, not bad for a few hours tinkering, we certainly enjoyed it. For those interested in seeing more, we recorded a video of the robot in action, and are also providing the program we used.<br />
<a rel="attachment wp-att-62" href="http://blog.peacocktech.com/2006/12/01/bilby-mark-ii-part-2/bilby-nxt/">Download Video (2.95Mb, slow connection, 109secs)</a><br />
<a rel="attachment wp-att-58" href="http://blog.peacocktech.com/2006/12/01/bilby-mark-ii-part-2/jimstorm05/">Download Program&nbsp;(339Kb)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2006/12/01/bilby-mark-ii-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bilby Mark II (Part 1)</title>
		<link>http://blog.peacocktech.com/2006/11/30/bilby-mark-ii-part-1/</link>
		<comments>http://blog.peacocktech.com/2006/11/30/bilby-mark-ii-part-1/#comments</comments>
		<pubDate>Thu, 30 Nov 2006 18:36:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Science & Technology]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=40</guid>
		<description><![CDATA[Fun and games last night. Bradley Robinson (who absolutely refuses to have his photo taken) bought a Lego Mindstorms NXT kit. Brad has had it a few days before I had a chance to see it. When I first saw it it was configured as a walking bi-ped, though it more a shuffle than a [...]]]></description>
			<content:encoded><![CDATA[<p>Fun and games last night. Bradley Robinson (who absolutely refuses to have his photo taken) bought a <a href="http://mindstorms.lego.com/">Lego Mindstorms NXT</a> kit. Brad has had it a few days before I had a chance to see it. When I first saw it it was configured as a walking bi-ped, though it more a shuffle than a walk. The system has four&nbsp;sensors:</p>
<ul>
<li>Ultrasonic distance and movement&nbsp;sensor</li>
<li>Sound sensor, with sound pattern and tone&nbsp;recognition</li>
<li>Light sensor, detecting light&nbsp;intensity</li>
<li>Touch sensor (press/release/bump&nbsp;detection)</li>
</ul>
<p>and also three servo motors with rotation&nbsp;sensors.</p>
<p>After some discussion, food, and music, we decided to revisit our <a href="http://www.usq.edu.au/users/phythian/bilby.htm">Bilby Competition</a> days, where in Newcastle in 2000 we won 2nd place in the competition with &#8220;Little Jim&#8221;, an autonomous path following&nbsp;robot.</p>
<div>
<p><img class="aligncenter size-full wp-image-52" title="bilby-second-place-little-jim" src="http://blog.peacocktech.com/wp-content/uploads/2006/11/bilby-second-place-little-jim.jpg" alt="bilby-second-place-little-jim" width="576" height="456" /><br />
<span>From Left: Ian Peacock (Dad), Trevor Peacock (Me), Bradley Robinson, John Dietsch (Teacher)</span></div>
<p>The NXT kit comes with a paper &#8220;field&#8221; with lines and patterns printed on it for testing and sensing. Printed on this field is an inch-wide oval circle. Using this path and the single light sensor we started to build our&nbsp;robot.</p>
<p>Much of the challenge was similar to the original bilby, determining the best sensor placement, and adjusting sensor sensitivity. An additional problem encountered due to the single sensor was the fact that while correcting the robot would miss the path if it was moving too quickly. After several attempts to increase the accuracy of the sensing (trying to sense more quickly) the final solution was simply to slow down the&nbsp;motors.</p>
<p>A further limitation was the programming interface, a graphical interface with simple programming constructs. It took some re-arrangement of our logic to code. The&nbsp;pseudo-code:</p>
<pre>WAIT UNTIL (2 seconds pass) OR (sensor sees black)</pre>
<p>required re-factoring&nbsp;as:</p>
<pre>LOOP 20 times:
  if sensor sees white:
    WAIT 0.1 seconds</pre>
<p>The language does not allow the use of any sort of variable or constant, re-usable functions of any type, or multi-parameter tests (with ORs or ANDs), but after some rearranging the few problems we found could be&nbsp;overcome.</p>
<p>After some research it seems there are several other programming interfaces available for the NXT. I haven&#8217;t tried any, but of the ones I&#8217;ve found, the promising ones&nbsp;are:</p>
<ul>
<li><a href="http://bricxcc.sourceforge.net/">Bricx Command Centre</a>, with available&nbsp;<a href="http://www.sorosy.com/lego/nxtdbg/">debugger</a></li>
<li><a href="http://home.comcast.net/~dplau/nxt_python/index.html">NXT&nbsp;Python</a></li>
<li><a href="http://users2.ev1.net/~phillipp100/index.htm">nxtC</a></li>
</ul>
<p>The blog <a href="http://nxtasy.org/">nxtacy</a> has many links to other projects and seems about the best resource for the NXT&nbsp;hacker.</p>
<p>The practical result is, after 3 hours tinkering (before 1. flat batteries, and 2. sleep time) we had an almost functioning line following&nbsp;robot.</p>
<div>
<p><img class="aligncenter size-full wp-image-49" title="bilby-nxt1" src="http://blog.peacocktech.com/wp-content/uploads/2006/11/bilby-nxt1.jpg" alt="bilby-nxt1" width="600" height="400" /><img class="aligncenter size-full wp-image-50" title="bilby-nxt2" src="http://blog.peacocktech.com/wp-content/uploads/2006/11/bilby-nxt2.jpg" alt="bilby-nxt2" width="600" height="400" /><img class="aligncenter size-full wp-image-51" title="bilby-nxt3" src="http://blog.peacocktech.com/wp-content/uploads/2006/11/bilby-nxt3.jpg" alt="bilby-nxt3" width="600" height="400" /></div>
<p>With any luck tonight we will have a chance to finish and fine tune it. I&#8217;ll report back with the end results and programming&nbsp;ASAP.</p>
<p>This post is followed up by <a href="/2006/12/01/bilby-mark-ii-part-2/">This&nbsp;Post</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2006/11/30/bilby-mark-ii-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rocket Science</title>
		<link>http://blog.peacocktech.com/2006/03/24/rocket-science/</link>
		<comments>http://blog.peacocktech.com/2006/03/24/rocket-science/#comments</comments>
		<pubDate>Sat, 25 Mar 2006 04:27:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=38</guid>
		<description><![CDATA[When you declare war on the neighbouring dorm, make sure you have a weapon of mass&#160;hydration!
At short notice today we decided to build a machine to launch water balloons at the neighbouring building. With the aid of Levi, we designed, acquired parts, and assembled in a few hours a lethal water balloon launching sling&#160;shot.
The weapon [...]]]></description>
			<content:encoded><![CDATA[<p>When you declare war on the neighbouring dorm, make sure you have a weapon of mass&nbsp;hydration!</p>
<p>At short notice today we decided to build a machine to launch water balloons at the neighbouring building. With the aid of <a href="http://reswiki.peacocktech.com/wiki/Levi_Monshing">Levi</a>, we designed, acquired parts, and assembled in a few hours a lethal water balloon launching sling&nbsp;shot.</p>
<p>The weapon consisted of the following&nbsp;parts:</p>
<ul>
<li>4 metres of bungee cord @&nbsp;1.25/mtr</li>
<li>2 sections of scrap wood @ $1&nbsp;ea</li>
<li>4 180mm long 10mm dia bolts, and nuts to match @ ~ $2&nbsp;ea</li>
<li>left over piece of shade&nbsp;cloth</li>
</ul>
<p>and of course 1200 water balloons @ $2 per&nbsp;200.</p>
<p>We eventually got the weapon capable of firing water balloons from the upstairs balcony, over the neighbouring building, and into the car park on the other&nbsp;side.</p>
<p>The&nbsp;construction:</p>
<ul>
<li>A frame was made with the wood, cut so we could place one piece on either side of the railing on the balcony. Held together with the bolts, formed the frame and supports for our&nbsp;catapult.</li>
<li>two holes in each of the supports to feed the elastic cord&nbsp;through</li>
<li>A roughly 200&#215;120mm square of shade cloth, a few layers thick, with small holes placed in the corners to run the cord&nbsp;through</li>
<li>The cord threaded through the holes in the supports with the shade cloth pocket threaded onto the cord between the&nbsp;supports</li>
<li>Attach the supports about 1m&nbsp;apart</li>
</ul>
<p>A few lessons&nbsp;learned:</p>
<ul>
<li>Water balloons burst very easily, if the sling is too tight, and places too much force on the balloon, it will burst on&nbsp;launch.</li>
<li>the elastic we bought was probably too heavy (it was about 10mm dia), and put too much force on the&nbsp;balloon.</li>
<li>To counter this, we found placing the supports only 1m apart, rather than keeping it tight at 2m worked better. It accelerated the balloons more&nbsp;gently.</li>
<li>A single piece of elastic, or much smaller gauge elastic would have worked better. Weaker elastic with a longer stretching distance would give the balloon a much gentler acceleration, hopefully allowing a more powerful, or longer&nbsp;throw</li>
<li>I don&#8217;t recommend putting anything other than water balloons in the sling. Balloons don&#8217;t do too much damage. With this sort of power, they do hurt if they hit you, but anything more solid would be downright&nbsp;dangerous.</li>
</ul>
<p align="center">
<img class="aligncenter size-full wp-image-46" title="waterbomb_slingshot" src="http://blog.peacocktech.com/wp-content/uploads/2006/03/waterbomb_slingshot.jpg" alt="waterbomb_slingshot" width="640" height="480" /><a href="http://reswiki.peacocktech.com/wiki/Elsbeth Zeegers">Elsbeth</a>, <a href="http://reswiki.peacocktech.com/wiki/Sarah Phelps">Sarah</a>, <a href="http://reswiki.peacocktech.com/wiki/Robert James">Rob</a>, <a href="http://reswiki.peacocktech.com/wiki/Sarah Friday">Sarah</a> and <a href="http://reswiki.peacocktech.com/wiki/Carey Needham">Carey</a>, preparing&nbsp;amunition.</p>
<p>What a way to waste an afternoon. Enjoy&nbsp;kids.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2006/03/24/rocket-science/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Educational content = 0</title>
		<link>http://blog.peacocktech.com/2005/12/13/educational-content-0/</link>
		<comments>http://blog.peacocktech.com/2005/12/13/educational-content-0/#comments</comments>
		<pubDate>Wed, 14 Dec 2005 00:01:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=36</guid>
		<description><![CDATA[
A busy term is over. A term during which I watched helplessly as my in box filled up with unread news subscriptions. But its over now. Finished the subjects, finished the ITC307 projects, and 382 projects. Been back home for 2 weeks, been getting back into reading. Also been doing all those little things that [...]]]></description>
			<content:encoded><![CDATA[<p>
A busy term is over. A term during which I watched helplessly as my in box filled up with unread news subscriptions. But its over now. Finished the subjects, finished the ITC307 projects, and 382 projects. Been back home for 2 weeks, been getting back into reading. Also been doing all those little things that need doing (well the bigger little things at least). Consolidated my web servers onto a single port (no more port 8080), trialling other Linux distros (Running Ubuntu currently, and liking it), and doing some small upgrades to various&nbsp;systems.
</p>
<p>
Also been thinking about the future of this blog. I had hoped to get more out of writing this blog than i have been, and i know, looking back over my entries, there is little useful content. I would therefore like to try a different method:<br />
Currently, while doing the reading i try to do every day, i often find articles i know would interest certain people, and will often put them aside and email them out. Frequently i find a number of related articles and become interested in the subject, and end up writing a half page summary, interspersed with links and references.<br />
I would like to try to approach this blog in that form, to write a weekly or fortnightly article on a particular topic. I enjoy the emails i write, and hope i will enjoy this also, despite the fact it will no longer be directed towards a known&nbsp;audience.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2005/12/13/educational-content-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Work</title>
		<link>http://blog.peacocktech.com/2005/09/22/project-work/</link>
		<comments>http://blog.peacocktech.com/2005/09/22/project-work/#comments</comments>
		<pubDate>Fri, 23 Sep 2005 00:11:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=34</guid>
		<description><![CDATA[
Spending most of my time working on our ITC307 project, and doing assignments due early next term.
Being able to find a bit of time now, i have been keeping up with reading, came across phpinsider.com, which has a dedicated Smarty forum. Spent a while looking to see if anyone else has been using smarty for [...]]]></description>
			<content:encoded><![CDATA[<p>
Spending most of my time working on our ITC307 project, and doing assignments due early next term.<br />
Being able to find a bit of time now, i have been keeping up with reading, came across <a href="http://phpinsider.com/smarty-forum/">phpinsider.com</a>, which has a dedicated Smarty forum. Spent a while looking to see if anyone else has been using smarty for generating SQL queries. There were a few mentions, but as far as i could tell, nothing on the scale of what we were using.<br />
Have had gaim connected to irc.au.freenode.net for the last few days, to the tapestry, debian, and smarty channels, just watching whats going on, thought i might learn something, but nothing major yet, only a few small&nbsp;things.</p>
<p>
Installed <a href="http://beaglewiki.org/Main_Page">beagle</a> and got it working. Have been interested in the idea ever since i read about a concept of <a href="http://www.nat.org/dashboard/">dashboard</a>. To be really useful i need to set it to index all the data on my server and other HDD, rather than just my home&nbsp;folder.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2005/09/22/project-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finish Term / Linux</title>
		<link>http://blog.peacocktech.com/2005/09/11/finish-term-linux/</link>
		<comments>http://blog.peacocktech.com/2005/09/11/finish-term-linux/#comments</comments>
		<pubDate>Mon, 12 Sep 2005 04:26:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=32</guid>
		<description><![CDATA[
Well, long time. Finished assignments, and end of term.
Spent a few days working with tapestry, trying to write a library. Seeing as there&#8217;s little documentation it was more or less trial and error, but got it working in the end. have an eclipse environment set up for developing it. Also wrote a tapestry filter to [...]]]></description>
			<content:encoded><![CDATA[<p>
Well, long time. Finished assignments, and end of term.<br />
Spent a few days working with tapestry, trying to write a library. Seeing as there&#8217;s little documentation it was more or less trial and error, but got it working in the end. have an eclipse environment set up for developing it. Also wrote a tapestry filter to log requests to a file. Should implement it soon, as not all pages are being logged since the installation of new things such as this blog.<br />
Have installed Debian on my main machine, got it dual booting with windows (no hassle), what has been a hassle is getting gaim 1.5, and newer versions of thunderbird and firefox. added this line to&nbsp;/etc/apt/sources.list</p>
<pre>deb ftp://sunsite.cnlab-switch.ch/mirror/debian/ unstable main contrib non-free</pre>
<p>
I manually installed thunderbird from their website, and after changing sources.list thunderbird broke. updated thunderbird from synaptic, and worked&nbsp;fine.</p>
<p>
Spent hours trying to get thunderbird working in the first place. I have a thunderbird profile of about 1Gb, which i didn&#8217;t want to loose. Ended up having to manually editing prefs.js to update all the paths from my windows setup. After that, and upgrading thunderbird it seems to be working fine, except the fact i am unable to access postoffice.csu.edu.au from this IP address. Its getting rather&nbsp;annoying.</p>
<p>
Been going back through the histories music-wise. Found a stack of albums at leading edge, Gene Pitney, Hank Williams, Bee Gees, Carpenters, and Beach Boys. Also found a very nice album from Sydney musician Lior. Very impressed with Gene Pitney, and was already fans of Carpenters and Bee Gees. Also got my hands on Motown Remixed, which I saw advertised in Sain magazine (for Sanity Music). Eleanor and her father are big fans of motown artists, and although i know some of the songs on the album, i don&#8217;t know them well enough to compare them to the originals. Also finally got a Jackson 5 album (only took me 2 years), and loving&nbsp;it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2005/09/11/finish-term-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostSecret</title>
		<link>http://blog.peacocktech.com/2005/08/30/postsecret/</link>
		<comments>http://blog.peacocktech.com/2005/08/30/postsecret/#comments</comments>
		<pubDate>Wed, 31 Aug 2005 04:59:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=30</guid>
		<description><![CDATA[
Been a while since my last post. Finished an assignment on tapestry (Jakarta, not weaving). There is a report on generating a sample app if anyone is interested. If there is anyone else out there learning tapestry, let me know, its hard to find&#160;resources.

Started implementing security into timeshare, its an uphill task, so many things [...]]]></description>
			<content:encoded><![CDATA[<p>
Been a while since my last post. Finished an <a href="http://peacocktech.com:8080/mediawiki/index.php/ITC382_11255412_A1">assignment</a> on tapestry (Jakarta, not weaving). There is a report on generating a sample app if anyone is interested. If there is anyone else out there learning tapestry, let me know, its hard to find&nbsp;resources.</p>
<p>
Started implementing security into timeshare, its an uphill task, so many things to be redone/fixed to work with the new changes. Hopefully a chance to fix old bugs, but probably an opportunity to generate new&nbsp;ones.
</p>
<p>
Bought a cheap KVM switch box (finally), and as a result have started using my Linux box much more (I don&#8217;t have to crawl around to swap cables any more). Have moved my php editing environment across, and moved <a href="http://gaim.sf.net/">GAIM</a> across. Not game to move my mail (thunderbird) across yet, think I&#8217;ll set up a dedicated hard drive for my home directory&nbsp;first.
</p>
<p>
Few interesting finds recently. <a href="http://postsecret.blogspot.com/">PostSecret</a> is a rather interesting project. Also Katrina has started a new <a href="http://notreallybored.blogspot.com/">comic</a>.<br />
Have started using <a href="http://talk.google.com/">GIM</a> (Googles new Instance Messaging service). Installed the client and had a quick (30 sec) look, but have been otherwise running it under GAIM (username: trevor_peacock at&nbsp;you-know-where).</p>
<p>
Next few days: gotta get over this cold, knock over the last few assignments for this term, and make arrangements for the holidays. Fun&nbsp;fun&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2005/08/30/postsecret/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jennifer Will Drown</title>
		<link>http://blog.peacocktech.com/2005/08/25/jennifer-will-drown/</link>
		<comments>http://blog.peacocktech.com/2005/08/25/jennifer-will-drown/#comments</comments>
		<pubDate>Thu, 25 Aug 2005 05:19:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=28</guid>
		<description><![CDATA[
Battle of the bands comp tonight at the crow bar, the standard much higher than previous years. Completely blown away by the second band, &#8220;Jennifer Will Drown&#8220;, mostly by the guitarist who effortlessly played complex and beautiful melodies. Hadrien was most impressed by the drummer, who he saw perform with another band recently. The guitarist [...]]]></description>
			<content:encoded><![CDATA[<p>
Battle of the bands comp tonight at the crow bar, the standard much higher than previous years. Completely blown away by the second band, &#8220;<a href="http://www.jenniferwilldrown.com/">Jennifer Will Drown</a>&#8220;, mostly by the guitarist who effortlessly played complex and beautiful melodies. Hadrien was most impressed by the drummer, who he saw perform with another band recently. The guitarist (band comprised of guitar, bass, drums, vocals) used a standard effects pedal, as well as a MIDI pickup, which he used masterfully. I&#8217;ve seen them before, but have only really been a novelty, but this guy made it fit in and work. His frequent transitions between effects were flawless.<br />
Satyricon (I think) was the 3rd band, who have performed the last 3 years, definitely deserved to win the first year I saw them, but last year they replaced they&#8217;re drummer and have since lost co-ordination between members. They also haven&#8217;t really progressed in any way since the first time I saw them, pretty much the same old routine. A nice surprise was the female vocals provided by the&nbsp;keyboardist.
</p>
<p>
Just about ready to tie up my ITC382 assignment, want to get the bulk of that out of the way tomorrow. Also have to investigate where to find ear plugs for the next concert I go to, and try and get a copy of <a href="http://www.jenniferwilldrown.com/Merchandise.htm">JWDs&nbsp;CD</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2005/08/25/jennifer-will-drown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Different</title>
		<link>http://blog.peacocktech.com/2005/08/21/different/</link>
		<comments>http://blog.peacocktech.com/2005/08/21/different/#comments</comments>
		<pubDate>Sun, 21 Aug 2005 07:19:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=26</guid>
		<description><![CDATA[
Made it to brunch today, for the first time in a long time. Spent most of the day looking at tapestry. Also got TeamTalk working between here and home. Remains to be seen how well it will work. Runs quite quickly, there is only one hop copared to two when i talk to Alan, so [...]]]></description>
			<content:encoded><![CDATA[<p>
Made it to brunch today, for the first time in a long time. Spent most of the day looking at <a href="http://blog.peacocktech.com/index.php?blog=6&amp;title=plumbing&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">tapestry</a>. Also got TeamTalk working between here and home. Remains to be seen how well it will work. Runs quite quickly, there is only one hop copared to two when i talk to Alan, so it runs a little smoother. As long as i&#8217;m not using the modem for anything else on this end, it could almost replace the&nbsp;phone.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2005/08/21/different/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working hard doing nothing</title>
		<link>http://blog.peacocktech.com/2005/08/18/working-hard-doing-nothing/</link>
		<comments>http://blog.peacocktech.com/2005/08/18/working-hard-doing-nothing/#comments</comments>
		<pubDate>Fri, 19 Aug 2005 02:00:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=24</guid>
		<description><![CDATA[
Been (very) busy the last few days, although I don&#8217;t have a lot to show for it. Installed MediaWiki on my Apache server (about my only success). Tried to get WikiPDF working. Its obviously designed to run on Linux. After a bit of tweaking I got it to generate latex, but it failed to convert [...]]]></description>
			<content:encoded><![CDATA[<p>
Been (very) busy the last few days, although I don&#8217;t have a lot to show for it. Installed <a href="http://www.mediawiki.org/">MediaWiki</a> on my Apache server (about my only success). Tried to get <a href="http://sourceforge.net/projects/wikipdf">WikiPDF</a> working. Its obviously designed to run on Linux. After a bit of tweaking I got it to generate latex, but it failed to convert that to PDF. Tried to get PHP working atop Tomcat. <a href="http://blog.taragana.com/index.php/archive/running-php-5x-on-windows-using-tomcat-4x-or-5x/">This</a> seemed the most promising lead, and it did work on Tomcat 5.5, but not 4.1, and MySQL didn&#8217;t work. Perhaps I should learn how to set up PHP normally, might explain how to get MySQL to work.<br />
Also started a few days ago upgrading tomcat 4.1 to 5.5, all going fairly well, except getting manager and admin modules to work. The Admin module now has to be installed manually, but it doesn&#8217;t work on a virtual host, it must be running in the default&nbsp;app.
</p>
<p>
Continuing to work back through Dream Theaters discography, I&#8217;m quite impressed by their 1997 album &#8220;Falling Into Infinity&#8221;. Quite a relaxing mix of songs, plenty of different styles, every song is&nbsp;unique.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2005/08/18/working-hard-doing-nothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
