<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>kristarella.com</title>
	
	<link>http://www.kristarella.com</link>
	<description>Blog of design-loving, photo-taking, Mac-using, Christian molecular biologist and qualified geek.</description>
	<pubDate>Tue, 18 Nov 2008 00:16:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/kristarella/blog" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">1218613</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Thesis full-width headers 101</title>
		<link>http://www.kristarella.com/2008/11/thesis-full-width-headers/</link>
		<comments>http://www.kristarella.com/2008/11/thesis-full-width-headers/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 05:52:10 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Geek]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=2927</guid>
		<description><![CDATA[I recently ported my blog to Thesis by DIYthemes.
Thesis has excellent SEO, and with it you can choose the number of sidebars that you want and their position, you can adjust the widths of content and sidebars, and you can change fonts across the webpage&#8230; all from dropdown options in the admin area. There are [...]]]></description>
			<content:encoded><![CDATA[<p>I recently ported my blog to <a href="http://diythemes.com/?a_aid=kristarella" title="Thesis affiliate link">Thesis by DIYthemes</a>.</p>
<p>Thesis has excellent <abbr title="Search Engine Optimisation">SEO</abbr>, and with it you can choose the <a href="http://diythemes.com/thesis/rtfm/layout-constructor/" title="Thesis layout constructor">number of sidebars</a> that you want and their position, you can adjust the widths of content and sidebars, and you can change <a href="http://diythemes.com/thesis/rtfm/fonts-and-sizes/" title="Thesis font selector">fonts</a> across the webpage&hellip; all from dropdown options in the admin area. There are a bunch of other options allowing you to change the <a href="http://diythemes.com/thesis/rtfm/your-navigation-menu/" title="Thesis customisable navigation menu">nav menu</a>, size of gravatars, comment count, author link, category, date and tag display, and more. If you&#8217;re not a coder you can receive assistance with <a href="http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/" title="Thesis custom.css">custom CSS</a> and <a href="http://diythemes.com/thesis/rtfm/customizing-with-hooks/" title="customise with Thesis hooks">PHP hooks</a> on the forum.</p>
<p>For those reasons and a few others I am now using Thesis. The new <a href="http://diythemes.com/thesis/version-13-release/">full page framework</a> makes it fairly easy to have full-width headers and footers. In this post is a how-to on customising your header.</p>
<h3>Full page framework</h3>
<p>The first step of making a full-width header and footer is to choose the <em>Full-width framework</em> from the Design Options page.<br />
<small>NB if you have done the coloured background thing with the page framework, selecting full-width will mess it up. You&#8217;ll need to rearrange your CSS a bit. The following assumes you haven&#8217;t modified much of your design yet.</small></p>
<h3 id="new-header">Prepare header and navigation</h3>
<p>The easiest way to swap the positions of the header and navigation is as described in the Thesis documentation, by adding code to <tt>custom_functions.php</tt>.</p>
<pre>remove_action('thesis_hook_before_header', 'thesis_nav_menu');
add_action('thesis_hook_after_header', 'thesis_nav_menu');</pre>
<div id="attachment_2930" class="wp-caption alignnone" style="width: 510px"><a href="http://www.kristarella.com/wp-content/uploads/thesis-header1.png"><img src="http://www.kristarella.com/wp-content/uploads/thesis-header1.png" alt="Swap header and navigation" title="Thesis Header 1" width="500" height="114" class="size-full wp-image-2930" /></a><p class="wp-caption-text">Swap header and navigation</p></div>
<p>Doing that makes the header area structure,</p>
<ul>
<li>div#header_area</li>
<ul>
<li>div.page</li>
<ul>
<li>div#header</li>
<li>ul#tabs</li>
</ul>
</ul>
</ul>
<p>Which basically means that <code>div#header_area</code> spans the full width of the page and everything else is inside that.</p>
<p>On the <a href="http://blog.tipd.com/">Tip&#8217;d blog</a> Chris has created new divs, which make it easier to give the header and nav different backgrounds. If you do that with <tt>custom_functions.php</tt> I don&#8217;t think it&#8217;s possible to remove the <code>#header_area</code>. However, for this demonstration I&#8217;m going to do it anyway and just hide <code>#header_area</code> with CSS.</p>
<p>Place the following at the very bottom of <tt>custom_functions.php</tt>.</p>
<pre>remove_action('thesis_hook_before_header', 'thesis_nav_menu');
remove_action('thesis_hook_header', 'thesis_default_header');

function full_width_header() { ?&gt;
	&lt;div id="nav_area" class="full_width"&gt;
		&lt;div class="page"&gt;
			&lt;?php thesis_nav_menu(); ?&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;div id="title_area" class="full_width"&gt;
		&lt;div class="page"&gt;
			&lt;div id="header"&gt;
				&lt;?php thesis_default_header(); ?&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;?php }
add_action('thesis_hook_before_html', 'full_width_header');
</pre>
<p>This adds the nav above the title, or you can take the whole <code>nav_area</code> and move it below the title and before <code>&lt;?php }</code>, to have the nav below the header.</p>
<div id="attachment_2929" class="wp-caption alignnone" style="width: 510px"><a href="http://www.kristarella.com/wp-content/uploads/thesis-header2.png"><img src="http://www.kristarella.com/wp-content/uploads/thesis-header2.png" alt="Replace header with new title and navigation" title="Thesis Header 2" width="500" height="114" class="size-full wp-image-2929" /></a><p class="wp-caption-text">Replace header with new title and navigation</p></div>
<h3 id="styles">Styling the header with CSS</h3>
<p>All your CSS should go in <tt>custom.css</tt>.</p>
<h4>Remove unwanted styles</h4>
<p>There are a bunch of borders and related styles that we don&#8217;t necessarily want in our new header, so I&#8217;m going to remove them. I&#8217;ve done it in a specific way that should allow you to add some back in if you want to.</p>
<pre>.custom #header_area{display:none;}

.custom #nav_area ul {border-bottom:none; border-left:none;}
	.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none;}

.custom #header {border-bottom:none;}</pre>
<p>These styles hide the original header (unfortunately the empty div is still in the markup); remove borders, padding and margin from the nav that were mainly related to current page styles; remove the header double border.</p>
<div id="attachment_2931" class="wp-caption alignnone" style="width: 510px"><a href="http://www.kristarella.com/wp-content/uploads/thesis-header3.png"><img src="http://www.kristarella.com/wp-content/uploads/thesis-header3.png" alt="Remove unwanted styles" title="Thesis Header 3" width="500" height="114" class="size-full wp-image-2931" /></a><p class="wp-caption-text">Remove unwanted styles</p></div>
<h4>Add some new styles</h4>
<p>Now we&#8217;re set to add some backgrounds and some more space for the nav, which feels a bit squished up the top, as well as some borders, which just make things feel much more complete. Building on the previous CSS:</p>
<pre>.custom #header_area{display:none;}

.custom #nav_area {background:#c3d9d6; padding:0.5em 0; border-bottom:1px solid #ddf;}
	.custom #nav_area ul {border-bottom:none; border-left:none;}
		.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none;}

.custom #title_area {background:#de6a61; padding:1em 0; border-bottom:1px solid #c55;}
	.custom #header {border-bottom:none;}</pre>
<div id="attachment_2932" class="wp-caption alignnone" style="width: 510px"><a href="http://www.kristarella.com/wp-content/uploads/thesis-header4.png"><img src="http://www.kristarella.com/wp-content/uploads/thesis-header4.png" alt="Background colours and borders" title="Thesis Header 4" width="500" height="114" class="size-full wp-image-2932" /></a><p class="wp-caption-text">Background colours and borders</p></div>
<p>I like to use background images to spruce things up, then hide the title and description. In thesis you can opt not to show them, but I like to leave them in and hide them in case someone loads the page without CSS and because Google bots don&#8217;t care about CSS.</p>
<pre>.custom #title_area {background:#de6a61; padding:1em 0 0.5em; border-bottom:1px solid #c55;}
	.custom #header {border-bottom:none; height:150px; padding-top:0; padding-bottom:0; background:url(images/header.png) center left no-repeat;}
		.custom #header #logo {display:none;}
		.custom #header #tagline {display:none;}</pre>
<div id="attachment_2935" class="wp-caption alignnone" style="width: 510px"><a href="http://www.kristarella.com/wp-content/uploads/thesis-header5.png"><img src="http://www.kristarella.com/wp-content/uploads/thesis-header5.png" alt="Title &amp; description hidden, background image added" title="Thesis Header 5" width="500" height="137" class="size-full wp-image-2935" /></a><p class="wp-caption-text">Title &amp; description hidden, background image added</p></div>
<p><small>Coffee cup is from <a href="http://openclipart.org/people/tomas_arad/tomas_arad_cup_of_coffee.svg" title="coffee cup vector">OpenClipart.org</a>.</small></p>
<p>The other option is to replace the default title and description in <tt>custom_functions.php</tt>.</p>
<pre>&lt;div id="title_area" class="full_width"&gt;
	&lt;div class="page"&gt;
		&lt;div id="header"&gt;
			&lt;p id="logo"&gt;&lt;img src="&lt;?php bloginfo('template_directory') ?&gt;/custom/images/header.png" alt="&lt;?php bloginfo('name') ?&gt;" /&gt;&lt;/p&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;</pre>
<p>The process to customise your footer is similar, but even easier since there is only the one footer element, as opposed to both the title and nav bar. I&#8217;ll follow up with a post about footers in due course.</p>
<h3>Questions?</h3>
<p>If you have any questions, ask away! There is a <a href="http://diythemes.com/forums/thesis-customization-tips/1889-full-width-headers.html">forum thread</a> so other thesis users can discuss it too.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=HR45n"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=HR45n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=qvjzN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=qvjzN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=seyUn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=seyUn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=3Qogn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=3Qogn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=oy9GN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=oy9GN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/452600651" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/11/thesis-full-width-headers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Telstra FAIL (what’s new?)</title>
		<link>http://www.kristarella.com/2008/11/telstra-fail-whats-new/</link>
		<comments>http://www.kristarella.com/2008/11/telstra-fail-whats-new/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 09:57:49 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=2923</guid>
		<description><![CDATA[It was my brother&#8217;s birthday today (Happy Birthday Justin!). Naturally, he wanted to buy an iPhone.
Although my Dad probably feels like my li&#8217;l bro is frivolous in his technological purchases, he does take time to research them. He went into the Telstra shop on two different occasions to ask the price of an iPhone outright. [...]]]></description>
			<content:encoded><![CDATA[<p>It was my brother&#8217;s birthday today (Happy Birthday Justin!). Naturally, he wanted to buy an iPhone.</p>
<p>Although my Dad probably feels like my li&#8217;l bro is frivolous in his technological purchases, he does take time to research them. He went into the Telstra shop on two different occasions to ask the price of an iPhone outright. He also called Telstra to make sure his <abbr title="Groupe Sp&eacute;cial Mobile or Global System for Mobile communications">GSM</abbr> <abbr title="Subscriber Identity Module">SIM</abbr> card would work in the iPhone 3G until he wanted to upgrade to a NextG SIM.</p>
<p>So, he gathered his money together and went to the Telstra shop, where they fetched an iPhone and faffed around for a while. They told us that it was taking a while because they couldn&#8217;t find the form that is required to sell an iPhone outright; apparently Telstra changed the website and the link to the form didn&#8217;t work anymore (reassuring for a telecommunications company don&#8217;t you think?).</p>
<p>We went to a movie (Burn After Reading, not nearly as funny as the trailer, don&#8217;t even bother) and came back about two and a half hours later. They still hadn&#8217;t found the form (surely it would only take one phone call and an email?!), so instead we asked for the price to be written down, which we would then take to JB Hifi for a price match. The price was $762.30. Not the $726 that Justin had been told on two separate occasions, which apparently is the staff price.</p>
<p>So, we went to JB Hifi, told the mobile phone girlie the story of Telstra&#8217;s incompetence and she happened to be on the phone to a manager who said Justin could have the phone for $726! They didn&#8217;t have to wait for a form, or spend time being snarky about Justin&#8217;s requests. They were friendly and just did it.</p>
<p>It&#8217;s not new news, but further evidence that JB Hifi is cool and Telstra bites.</p>
<p><small>So far the GSM SIM card isn&#8217;t working&hellip; not sure whose fault that is yet.</small></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=HKh0n"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=HKh0n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=gXToN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=gXToN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=Pk7Ln"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=Pk7Ln" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=OBkQn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=OBkQn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=9Q60N"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=9Q60N" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/449380670" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/11/telstra-fail-whats-new/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Writing a thesis in LaTeX</title>
		<link>http://www.kristarella.com/2008/11/writing-a-thesis-in-latex/</link>
		<comments>http://www.kristarella.com/2008/11/writing-a-thesis-in-latex/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 12:29:53 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Geek]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Uni]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=1504</guid>
		<description><![CDATA[LaTeX is a document markup system, which helps you to focus on what you&#8217;re writing and reduces some of the hassle of tedious tasks like adding references and numbering sections, figures and tables. It also natively handles footnotes, table of contents, lists of figures, lists of tables, headers, footers, margin notes and probably a hundred [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/LaTeX">LaTeX</a> is a document markup system, which helps you to focus on what you&#8217;re writing and reduces some of the hassle of tedious tasks like adding references and numbering sections, figures and tables. It also natively handles footnotes, table of contents, lists of figures, lists of tables, headers, footers, margin notes and probably a hundred other things. It lays documents out intelligently, for readability, and you can apply any number of styles to suit your document, be it book, journal article, letter or thesis.</p>
<p>I used <a href="http://sourceforge.net/projects/texshop/">TeXShop</a> to edit the .tex files and typeset (render) the document. I also used <a href="http://bibdesk.sourceforge.net/">BibDesk</a> to manage my references (just as easy, if not easier, to use as Endnote). Both of these programs are for Mac OS X; for Windows you might be able to try <a href="http://www.latexeditor.org/">LaTeX Editor</a>, or <a href="http://www.toolscenter.org/">TeXnicCenter</a> looks very nice. I&#8217;m not sure what you would want to use on Windows for managing references though.</p>
<h3>Dave&#8217;s thesis in a box</h3>
<p>For my thesis I needed something a little more complicated than the standard document template. So I started with <a href="http://www.cs.usyd.edu.au/~dasymond/dtiab/">Dave&#8217;s thesis in a box</a>. It&#8217;s basically a collection of files that get compiled together to create your document. It has a separate file for each chapter, which makes writing simpler and reduces the load on your computer (imagine trying to save 70 pages of writing in Word!).</p>
<p>There are other thesis templates floating around if you don&#8217;t think this one suits you.</p>
<h3>Useful things LaTeX can do</h3>
<h4>Defining new terms</h4>
<p>If you have to type something a lot, you could use <a href="http://www.smileonmymac.com/TextExpander/">TextExpander</a> (which I did for a while), or you could just define some shorthand. Somewhere near the start of your document you put <code>\def\Mf{Methanogenium frigidum}</code> and then whenever you type <code>\Mf</code> in your document, it will output &#8220;Methanogenium frigidum&#8221; instead.</p>
<h4>Math mode &amp; equations</h4>
<p>LaTeX has a math mode that you can begin using a dollar sign ($) and also an equation environment using <code>\begin{equation}</code>. It is very useful for typing Greek letters (you need quite a few in biology), writing simple equations, or writing large complex equations. It typesets them very nicely.</p>
<h4>Hyphen in math mode</h4>
<p>Conveniently, hyphens are automatically changed to minus signs when you&#8217;re in math mode. Less convenient when you actually want a hyphen. You can do it with <code>\mbox{-}</code>.</p>
<h4>Long tables</h4>
<p>You can make a table span multiple pages by using the longtable package and using <code>\begin{longtable}</code> instead of <code>\begin{table}</code>. I used that for my list of abbreviations, which I formatted as a table because I thought it was a bit nicer.</p>
<h4>Rotating tables and figures</h4>
<p>Apart from placing figures pretty much any way you like, you can use the rotating package to create <a href="http://www.manicai.net/comp/latex/latex_tricks.html">sideways figures and tables</a>. Very good for wide figures and tables that you don&#8217;t want to shrink to unreadable proportions.</p>
<h3>Stuff I couldn&#8217;t do and had to work around</h3>
<h4>Table descriptions</h4>
<p>It seems like the standard format for tables in biology has the table number and title above the table, whereas figures have the number, title and legend beneath. I wanted to add a small legend/description underneath the table, but there was no standard way to do it. The normal title and legend would be inserted with <code>\caption{Title. Description goes here.}</code>, but if you put another one of those in it creates another table number.</p>
<p>I ended up hacking a solution by adding<br />
<code>\linebreak[4]<br />
\linebreak[4]<br />
{\footnotesize Sequence alignment scores calculated by Clustal 2.0.1.0.}</code><br />
underneath the tabular environment.</p>
<h3>Bottom line</h3>
<p>The long and the short of it is that LaTeX is huge in its versatility and well worth learning. However, it does take a bit of learning and I recommend trying it out on smaller projects before venturing into a huge one. However, if you are venturing into a thesis, even if you haven&#8217;t tried LaTeX on something smaller it could well be worth learning. It may save you much time in referencing, cross-referencing and document layout. If worst comes to worst you could just copy your text into Word, OpenOffice or Pages and reformat it, which I&#8217;m sure you&#8217;d be doing several times working in those editors anyway. So give it a go!</p>
<p>If you need to find a specific function for LaTeX I suggest using Google and searching for &#8220;latex&#8221; plus a description of what you want to do. I usually found the answer quite quickly.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=VPsEn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=VPsEn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=QqKXN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=QqKXN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=vkbhn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=vkbhn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=eCa8n"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=eCa8n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=fhtuN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=fhtuN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/443201651" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/11/writing-a-thesis-in-latex/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Movember is on!</title>
		<link>http://www.kristarella.com/2008/11/movember-is-on/</link>
		<comments>http://www.kristarella.com/2008/11/movember-is-on/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 12:39:46 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Life and ramblings]]></category>

		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=1514</guid>
		<description><![CDATA[Hey crew,
Hope you had a good Halloween, or lack there of (as I did). Just a short note to say w00t! I handed in my thesis yesterday. I am now free to do stuff I enjoy, plus some cooking and cleaning and real life stuff. Sweet.
Also, last month was Breast Cancer Awareness month. This month [...]]]></description>
			<content:encoded><![CDATA[<p>Hey crew,</p>
<p>Hope you had a good Halloween, or lack there of (as I did). Just a short note to say w00t! I handed in my thesis yesterday. I am now free to do stuff I enjoy, plus some cooking and cleaning and real life stuff. Sweet.</p>
<p>Also, last month was <a href="http://www.kristarella.com/category/breast-cancer-awareness/">Breast Cancer Awareness</a> month. This month is <a href="http://www.movember.com/">Movember</a> for men&#8217;s health. <a href="http://www.mathewpacker.com/2008/10/31/im-all-ready-for-movember-are-you/">Mat Packer</a> has shaved off his enormous beard to grow a moustache and raise some money, and raise some awareness of men&#8217;s health issues&hellip; that&#8217;s right, they&#8217;re not as unbreakable as we all like to pretend.</p>
<p>Have a great Movember! Good luck with the election America!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=P5zsn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=P5zsn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=P498N"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=P498N" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=MXZYn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=MXZYn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=fRmbn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=fRmbn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=Gtl7N"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=Gtl7N" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/439102355" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/11/movember-is-on/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Beautiful Sydney</title>
		<link>http://www.kristarella.com/2008/10/beautiful-sydney/</link>
		<comments>http://www.kristarella.com/2008/10/beautiful-sydney/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 23:46:19 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Photoblog]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/2008/10/beautiful-sydney/</guid>
		<description><![CDATA[
Shot out of the plane window when I flew to San Francisco in February.
]]></description>
			<content:encoded><![CDATA[<p><img class="frame aligncenter" src="http://www.kristarella.com/wp-content/uploads/20081024132306_sydney5.jpg" alt="Beautiful Sydney" /></p>
<p>Shot out of the plane window when I flew to San Francisco in February.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=JG91n"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=JG91n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=S9rQN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=S9rQN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=N2OEn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=N2OEn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=v1Bfn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=v1Bfn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=0HbAN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=0HbAN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/444063475" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/10/beautiful-sydney/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sydney Skyline</title>
		<link>http://www.kristarella.com/2008/10/sydney-skyline/</link>
		<comments>http://www.kristarella.com/2008/10/sydney-skyline/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 23:46:19 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Photoblog]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/2008/10/sydney-skyline/</guid>
		<description><![CDATA[
Shot out of the plane window when I flew to San Francisco in February.
]]></description>
			<content:encoded><![CDATA[<p><img class="frame aligncenter" src="http://www.kristarella.com/wp-content/uploads/20081024132142_sydney3.jpg" alt="Sydney Skyline" /></p>
<p>Shot out of the plane window when I flew to San Francisco in February.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=XiKLn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=XiKLn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=VyvpN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=VyvpN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=SUKfn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=SUKfn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=pqftn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=pqftn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=DqvpN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=DqvpN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/444063476" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/10/sydney-skyline/feed/</wfw:commentRss>
		</item>
		<item>
		<title>October is ending</title>
		<link>http://www.kristarella.com/2008/10/october-is-ending/</link>
		<comments>http://www.kristarella.com/2008/10/october-is-ending/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 20:53:55 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Breast Cancer Awareness]]></category>

		<category><![CDATA[Breast Cancer]]></category>

		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=1510</guid>
		<description><![CDATA[Breast Cancer Awareness Month is drawing to a close. I&#8217;m a bit sad that I couldn&#8217;t participate more in it, but that&#8217;s what your last month of uni will do for you.
There is one last photo contest for this month and the word is bra.

Taken at the pink ribbon brunch I went to.
Please take care [...]]]></description>
			<content:encoded><![CDATA[<p>Breast Cancer Awareness Month is drawing to a close. I&#8217;m a bit sad that I couldn&#8217;t participate more in it, but that&#8217;s what your last month of uni will do for you.</p>
<p>There is one last <a href="http://pinkforoctober.org/2008/10/contest-bra/">photo contest</a> for this month and the word is <em>bra</em>.</p>
<p><img src="http://www.kristarella.com/wp-content/uploads/bra.jpg" alt="" title="Bras" width="500" height="330" class="aligncenter size-full wp-image-1509 frame" /></p>
<p>Taken at the pink ribbon brunch I went to.</p>
<p>Please take care of yourselves and don&#8217;t find yourself having to pad your bra one day!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=eESam"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=eESam" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=A7DAM"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=A7DAM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=wqCCm"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=wqCCm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=TWE2m"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=TWE2m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=G5V8M"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=G5V8M" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/433995398" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/10/october-is-ending/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sydney Harbour</title>
		<link>http://www.kristarella.com/2008/10/sydney-harbour/</link>
		<comments>http://www.kristarella.com/2008/10/sydney-harbour/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 23:46:19 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Photoblog]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/2008/10/sydney-harbour/</guid>
		<description><![CDATA[
Shot out of the plane window when I flew to San Francisco in February.
]]></description>
			<content:encoded><![CDATA[<p><img class="frame aligncenter" src="http://www.kristarella.com/wp-content/uploads/20081024132033_sydney4.jpg" alt="Sydney Harbour" /></p>
<p>Shot out of the plane window when I flew to San Francisco in February.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=mvz9n"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=mvz9n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=NbJdN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=NbJdN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=SvCPn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=SvCPn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=fu5nn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=fu5nn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=PixUN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=PixUN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/444063477" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/10/sydney-harbour/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Laughter</title>
		<link>http://www.kristarella.com/2008/10/laughter/</link>
		<comments>http://www.kristarella.com/2008/10/laughter/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 23:46:19 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Photoblog]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/2008/10/laughter/</guid>
		<description><![CDATA[
Candid photos are always better!
]]></description>
			<content:encoded><![CDATA[<p><img class="frame aligncenter" src="http://www.kristarella.com/wp-content/uploads/20081020143734_e+e-farewell77.jpg" alt="Laughter" /></p>
<p>Candid photos are always better!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=7cJ0n"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=7cJ0n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=B7ZGN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=B7ZGN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=lsq5n"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=lsq5n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=iWCnn"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=iWCnn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=8ULxN"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=8ULxN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/444063478" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/10/laughter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Weird advertisements</title>
		<link>http://www.kristarella.com/2008/10/weird-advertisements/</link>
		<comments>http://www.kristarella.com/2008/10/weird-advertisements/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 21:01:02 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
		
		<category><![CDATA[Graphics]]></category>

		<category><![CDATA[Australia]]></category>

		<category><![CDATA[Photos]]></category>

		<category><![CDATA[Random]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=1483</guid>
		<description><![CDATA[Gender UnFail
An update on my previous post Gender Fail. I got another email from Australia Post. It looks like they&#8217;ve FiXed the issue!


Who&#8217;s baby is that anyway?

I was on Facebook and spied this advert on the side of the page.
Is this what your baby starts to look like when you give them enough free stuff? [...]]]></description>
			<content:encoded><![CDATA[<h3>Gender UnFail</h3>
<p>An update on my previous post <a href="http://www.kristarella.com/2008/09/gender-fail/">Gender Fail</a>. I got another email from Australia Post. It looks like they&#8217;ve FiXed the issue!</p>
<p><img src="http://www.kristarella.com/wp-content/uploads/austpost1.png" alt="" title="Australia Post Email" width="500" height="75" class="aligncenter size-full wp-image-1492 frame" /></p>
<p><img src="http://www.kristarella.com/wp-content/uploads/austpost2.png" alt="" title="Australia Post Email image" width="500" height="95" class="aligncenter size-full wp-image-1491 frame" /></p>
<h3>Who&#8217;s baby is that anyway?</h3>
<p><img src="http://www.kristarella.com/wp-content/uploads/baby-weird.png" alt="" title="Funny looking baby" width="156" height="213" class="alignright size-full wp-image-1500 frame" /><br />
I was on Facebook and spied this advert on the side of the page.</p>
<p>Is this what your baby starts to look like when you give them enough free stuff? Is this free stuff some kind of consumer testing?</p>
<p>Just looking at that kid cracks me up!</p>
<h3>Four&#8217;N Twenty Magic Salad Plate</h3>
<p><img src="http://www.kristarella.com/wp-content/uploads/fn20-magic-salad-97x200.png" alt="" title="Four&#039;N Twenty" width="97" height="200" class="alignleft size-thumbnail wp-image-1496 frame" /><br />
I was driving home listening to the radio and I heard a rather extended advert, perhaps radio&#8217;s answer to the info-mercial. It was for the <a href="https://secure.promoplace.com.au/SaladPlate/">Four&#8217;N Twenty Magic Salad Plate</a>. By the end of the ad I thought that it might have been a joke. Definitely up the alley of some Aussies.</p>
<p>Have a look at their <a href="https://secure.promoplace.com.au/SaladPlate/faq.aspx">FAQ</a> though:<br />
<img src="http://www.kristarella.com/wp-content/uploads/fn20-faq.png" alt="" title="Four&#039;N Twenty FAQ" width="500" height="63" class="alignnone size-full wp-image-1497 frame" /></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/kristarella/blog?a=yLqim"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=yLqim" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=Fo91M"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=Fo91M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=XRDEm"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=XRDEm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=OQysm"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=OQysm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/kristarella/blog?a=ZZsVM"><img src="http://feeds.feedburner.com/~f/kristarella/blog?i=ZZsVM" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/432050789" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2008/10/weird-advertisements/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
