<?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>bulwynkl has a blog?</title>
	<atom:link href="http://www.trouble.net.au/blog/bulwynkl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.trouble.net.au/blog/bulwynkl</link>
	<description>what ever the hell for?</description>
	<lastBuildDate>Mon, 15 Feb 2010 22:57:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Simple shell script example</title>
		<link>http://www.trouble.net.au/blog/bulwynkl/2009/10/19/simple-shell-script-example/</link>
		<comments>http://www.trouble.net.au/blog/bulwynkl/2009/10/19/simple-shell-script-example/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 07:11:01 +0000</pubDate>
		<dc:creator>bulwynkl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.trouble.net.au/blog/bulwynkl/2009/10/19/simple-shell-script-example/</guid>
		<description><![CDATA[I know this can be done but invariably when I come to do it &#8211; I forget what it is&#8230; for example, lets say I have a bunch of tar files that I want to move to my home directory&#8230; I can do this&#8230; ls *.tgz&#62;myfilelist for file in `cat myfilelist`; do cp $file /home/username/; [...]]]></description>
			<content:encoded><![CDATA[<p>I know this can be done but invariably when I come to do it &#8211; I forget what it is&#8230;<br />
for example, lets say I have a bunch of tar files that I want to  move to my home directory&#8230; I can do this&#8230;</p>
<p>ls *.tgz&gt;myfilelist<br />
for file in `cat myfilelist`; do<br />
        cp $file /home/username/;<br />
done</p>
<p>I could also untar and process them too if I wanted &#8211; e.g.</p>
<p>ls *.tgz&gt;myfilelist<br />
for file in `cat myfilelist`; do<br />
        tar xzf /home/username/$file;<br />
done</p>
<p>or something&#8230;<br />
(corrected typo &#8211; in original I changed directory inside the script which would break finding the next file)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trouble.net.au/blog/bulwynkl/2009/10/19/simple-shell-script-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &#8220;tar trick&#8221;</title>
		<link>http://www.trouble.net.au/blog/bulwynkl/2009/09/07/the-tar-trick/</link>
		<comments>http://www.trouble.net.au/blog/bulwynkl/2009/09/07/the-tar-trick/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 23:07:54 +0000</pubDate>
		<dc:creator>bulwynkl</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.trouble.net.au/blog/bulwynkl/?p=22</guid>
		<description><![CDATA[Part of my motivativation for even having a blog &#8211; probably my ONLY motivation for having a blog &#8211; is to keep all those little usefull things that I know work but keep forgetting about&#8230;  For instance &#8211; I was going to do my cisco journal as an extended blog&#8230; some day&#8230;. anyway&#8230; if you [...]]]></description>
			<content:encoded><![CDATA[<p>Part of my motivativation for even having a blog &#8211; probably my ONLY motivation for having a blog &#8211; is to keep all those little usefull things that I know work but keep forgetting about&#8230;  For instance &#8211; I was going to do my cisco journal as an extended blog&#8230; some day&#8230;.</p>
<p>anyway&#8230;</p>
<p>if you want to copy data on a *nix machine from one place to the other and preserve permissions, you can do this&#8230;</p>
<p>From the source directory&#8230;</p>
<p>tar czf  &#8211; * | (cd /target ; tar xzfp -)</p>
<p>This creates a compressed tar stream from the current directory to the standard input, then changes to the target directory and uncompresses the stream, preserving ownership and permissions into the target directory.</p>
<p>there is an alternative form &#8211; not sure if it&#8217;s supported by all versions of tar but it runs like this&#8230;</p>
<p>tar czf -C/source/ &#8211; * |  tar xzfp -C/target/ -</p>
<p>where -C says change to directory blah. I need to check the syntax &#8211; e.g. absolute versus relative, and if there is a space b/w the C and the name&#8230;  if in doubt, check &#8216;man tar&#8217;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trouble.net.au/blog/bulwynkl/2009/09/07/the-tar-trick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t do it!</title>
		<link>http://www.trouble.net.au/blog/bulwynkl/2009/05/21/dont-do-it/</link>
		<comments>http://www.trouble.net.au/blog/bulwynkl/2009/05/21/dont-do-it/#comments</comments>
		<pubDate>Thu, 21 May 2009 11:14:05 +0000</pubDate>
		<dc:creator>bulwynkl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.trouble.net.au/blog/bulwynkl/?p=16</guid>
		<description><![CDATA[I was recently asked about my six rules for doing a PhD &#8211; which happens from time to time &#8211; probably because I mention that I have a set of six rules for doing a PhD from time to time&#8230; Anyway I wrote them down some time past on www.korner.org.au and they seem to have [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently asked about my six rules for doing a PhD &#8211; which happens from time to time &#8211; probably because I mention that I have a set of six rules for doing a PhD from time to time&#8230;<br />
Anyway I wrote them down some time past on <a title="korner" href="http://www.korner.org.au/" target="_blank">www.korner.org.au</a> and they seem to have disappeared&#8230; so here they are thanks to the <a href="http://www.angryflower.com/timelo.gif" target="_blank">timelooker backwardstube</a> &#8211; <a href="http://www.archive.org" target="_blank">archive.org</a></p>
<p><strong>My 6 rules for doing a PhD&#8230;</strong></p>
<p>1) don&#8217;t do it.</p>
<p>2) don&#8217;t do it.</p>
<p>3) don&#8217;t do it.</p>
<p>4) don&#8217;t do it.</p>
<p>5) don&#8217;t do it.</p>
<p>6) don&#8217;t do it.</p>
<p>OK. if you really want to know, don&#8217;t do it&#8230;</p>
<p>1) unless you really really really really really really want to.</p>
<p>Academia is a strange beast, feircely competitive, not much actual research, no money and usually you don&#8217;t get to choose what you research. So saving the world is usually not on the cards. Getting noticed is a vague possibility, but you&#8217;d do better on a game show.</p>
<p>2) You have a super-fantastic supervisor.</p>
<p>Make that 2 really super fantastic supervisors. In 2 subject areas. That way when one leaves for a better position elsewhere (because why would they stick around anywhere near here if they were any good) you will still have one good supervisor. Also try and get them to have different areas of expertise. This way a) they can&#8217;t disagree with eachother much, and 2) you have to learn each of their areas good enough to explain it to the other. You will therefore learn both areas and do well.  Also if you are looking at something that covers two disciplines you&#8217;ll probably be doing something interesting&#8230;</p>
<p>3) DO NOT give up your life to do it.</p>
<p>Make sure you have things other than the PhD to do. Give up the PhD before you give up the hobbies.</p>
<p>4) DO NOT do the PhD in the same country as your undergrad.</p>
<p>Even the same state is bad. The same uni is asking for trouble. The whole point of the PhD is to grow. Familiarity breeds contempt. Besides, it should be hard.</p>
<p>5) The subject is so clearly an award winning idea it make you sit up at night wondering how no one else saw it before.</p>
<p>Odds on they have&#8230; this means that at the last 3 weeks before subittion you will find 5 years of papers in an obscure Finnish publication a) refuting your work and/or b) giving exactly the same experiments in greater detail, etc. The alternative is something so boring people&#8217;s eyes will glaze over upon recieving an email with your CV in it&#8230; without even turning on their computer.  If it truely is a new idea work hard and fast because it won&#8217;t stay new for long&#8230;  Most cutting edge research seems to be discovered simultaneously at two or three different places around the world.</p>
<p>6) join a research group.</p>
<p>Make sure you have collegues working on similar things. share results with collegues, go to as many<br />
conferences as you can. Network. Email friends OS. Be active in your community, whatever form that takes. Then it does not matter if you ever complete.</p>
<p>OK. if at the end of all that you still want to do it, good luck. now read phillip greenspun&#8217;s <a href="http://philip.greenspun.com/careers/">Career guide for PhD&#8217;s</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.trouble.net.au/blog/bulwynkl/2009/05/21/dont-do-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 upgrade helps me spend more time with family&#8230;</title>
		<link>http://www.trouble.net.au/blog/bulwynkl/2009/04/27/ubuntu-904-upgrade-helps-me-spend-more-time-with-family/</link>
		<comments>http://www.trouble.net.au/blog/bulwynkl/2009/04/27/ubuntu-904-upgrade-helps-me-spend-more-time-with-family/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 01:05:03 +0000</pubDate>
		<dc:creator>bulwynkl</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.trouble.net.au/blog/bulwynkl/?p=10</guid>
		<description><![CDATA[Ubuntu 9.04 upgrade has allowed me to spend more time with my family&#8230; By breaking &#8211; very badly&#8230;  Now rather than do stuff on the computer, I spend quiet evenings arguing with my 5-yo about cleaning up her room, changing nappies for the 0.59 yo and discussing the situation in the middle-east with my wife&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 9.04 upgrade has allowed me to spend more time with my family&#8230; By breaking &#8211; very badly&#8230;  Now rather than do stuff on the computer, I spend quiet evenings arguing with my 5-yo about cleaning up her room, changing nappies for the 0.59 yo and discussing the situation in the middle-east with my wife&#8230;</p>
<p>Thank you Ubuntu!</p>
<p>*sheesh*  what a mess.</p>
<p>I started with Ubuntu 6.04 and have used the upgrade path each time &#8211; either apt-get dist-upgrade or the upgrade tool. I&#8217;ve had to rebuild my machine atleast 4 times as a consequence.  You&#8217;d think I&#8217;d've learned by now&#8230;</p>
<p>I&#8217;m rather frustrated. Each time I do a fresh install I have to re install and configure <strong><em>everything</em></strong>.</p>
<p>This time I was using the upgrade tool &#8211; which does not show you what it is doing &#8211; could not get the console to show anything &#8211; so when it hung downloading (on er&#8230; about day 2 of the download), I could not see why&#8230;</p>
<p>so I shut down the GUI and ran apt-get dist-upgrade instead</p>
<p>fine.</p>
<p>installed, rebooted&#8230; er. no dual screen. OK, check the nvidia drivers. Ah, need to activate the  nvidia 180 driver&#8230; OK, reboot&#8230; no gdm. bummer. OK, reconfigure xorg &#8211; xorg not installed. install xorg&#8230; can&#8217;t &#8211; can&#8217;t remove nvidia driver. remove nvidia driver &#8211; does not exist. install then remove nvidia driver- no install candidate. insert several more hours of frustraction then *scream*</p>
<p>so I&#8217;ve burned the ISO to CD and installed on a fresh partition&#8230;</p>
<p>said it before&#8230; what a mess.</p>
<p>addendum &#8211; As an example &#8211; things that don&#8217;t work now &#8211; no pdf viewer from firefox, no youtube vids.  Isn&#8217;t it about time they got over their culture war on closed source?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trouble.net.au/blog/bulwynkl/2009/04/27/ubuntu-904-upgrade-helps-me-spend-more-time-with-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did I mention I like food?</title>
		<link>http://www.trouble.net.au/blog/bulwynkl/2009/04/14/did-i-mention-i-like-food/</link>
		<comments>http://www.trouble.net.au/blog/bulwynkl/2009/04/14/did-i-mention-i-like-food/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 10:39:50 +0000</pubDate>
		<dc:creator>bulwynkl</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://www.trouble.net.au/blog/bulwynkl/?p=6</guid>
		<description><![CDATA[I&#8217;m home alone tonight and lazy &#8211; so it&#8217;s pasta and something tomatoe-ie A red capsicum, chopped a couple of tomatoes &#8211; 3 I think &#8211; roughly chopped a small amount of spagetti 3 mushrooms spash of red wine, splash of olive oil 3 v thin slices of salami 1 kangaroo fillet &#8211; sliced into [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m home alone tonight and lazy &#8211; so it&#8217;s pasta and something tomatoe-ie</p>
<p>A red capsicum, chopped</p>
<p>a couple of tomatoes &#8211; 3 I think &#8211; roughly chopped</p>
<p>a small amount of spagetti</p>
<p>3 mushrooms</p>
<p>spash of red wine, splash of olive oil</p>
<p>3 v thin slices of salami</p>
<p>1 kangaroo fillet &#8211; sliced into 1cm slices</p>
<p>heat pan, boil jug, defrost roo.</p>
<p>fry capsicum, add tomato</p>
<p>add wine and oil</p>
<p>splash of chilli if that&#8217;s what you like.</p>
<p>add the mushrooms and shredded salami</p>
<p>turn off heat and cover with lid</p>
<p>boil spagetti, grill roo &#8211; do not over cook &#8211; should be bloody</p>
<p>assemble.</p>
<p>spagetti in a flat pile.</p>
<p>sprincke some cheese</p>
<p>roo next.</p>
<p>then sauce&#8230;</p>
<p>rest of the bottle of wine&#8230;</p>
<p>Drool&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trouble.net.au/blog/bulwynkl/2009/04/14/did-i-mention-i-like-food/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Something to say?</title>
		<link>http://www.trouble.net.au/blog/bulwynkl/2009/04/14/something-to-say/</link>
		<comments>http://www.trouble.net.au/blog/bulwynkl/2009/04/14/something-to-say/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 09:42:39 +0000</pubDate>
		<dc:creator>bulwynkl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[introductions]]></category>

		<guid isPermaLink="false">http://www.trouble.net.au/blog/bulwynkl/2009/04/14/something-to-say/</guid>
		<description><![CDATA[Having a Blog pre-supposes (against all evidence to the contrary) that one has something&#8230; well I do. This then shall be my brain dumping ground about&#8230; things&#8230;]]></description>
			<content:encoded><![CDATA[<p>Having a Blog pre-supposes (against all evidence to the contrary) that one has something&#8230; well I do. This then shall be my brain dumping ground about&#8230; things&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trouble.net.au/blog/bulwynkl/2009/04/14/something-to-say/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.trouble.net.au/blog/bulwynkl/2009/03/16/hello-world/</link>
		<comments>http://www.trouble.net.au/blog/bulwynkl/2009/03/16/hello-world/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 22:47:00 +0000</pubDate>
		<dc:creator>bulwynkl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to trouble.net.au blogs. This is your first post. Edit or delete it, then start blogging! what beautiful prose &#8211; how could I delete that? *sigh*]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://www.trouble.net.au/blog/">trouble.net.au blogs</a>. This is your first post. Edit or delete it, then start blogging!</p>
<p>what beautiful prose &#8211; how could I delete that?</p>
<p>*sigh*</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trouble.net.au/blog/bulwynkl/2009/03/16/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

