<?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>RimuHosting Blog &#187; Office</title>
	<atom:link href="http://blog.rimuhosting.com/category/office/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rimuhosting.com</link>
	<description>Mighty Linux servers, support worth raving about</description>
	<lastBuildDate>Wed, 01 Feb 2012 01:07:34 +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>Security at home &#8211; encrypted home directories</title>
		<link>http://blog.rimuhosting.com/2010/10/15/security-at-home-encrypted-home-directories/</link>
		<comments>http://blog.rimuhosting.com/2010/10/15/security-at-home-encrypted-home-directories/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 19:26:27 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[automount]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[encfs]]></category>
		<category><![CDATA[encrypted]]></category>
		<category><![CDATA[fuse]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[theft]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://blog.rimuhosting.com/?p=752</guid>
		<description><![CDATA[This isn't directly server related at all, more for the home or office user who wants to make sure things are nice and secure. At the office we like to also make sure our desktops are fairly safe to connect &#8230; <a href="http://blog.rimuhosting.com/2010/10/15/security-at-home-encrypted-home-directories/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This isn't directly server related at all, more for the home or office user who wants to make sure things are nice and secure.</p>
<p>At the office we like to also make sure our desktops are fairly safe to connect from as well, mostly  in case the machines ever get stolen, we know our data and ssh keys are safe.</p>
<p>So we set up encrypted /home dirs like this...<br />
<span id="more-752"></span></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">﻿<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">su</span> -
<span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libpam-encfs encfs
<span style="color: #7a0874; font-weight: bold;">echo</span> fuse <span style="color: #000000; font-weight: bold;">&gt;&gt;/</span>etc<span style="color: #000000; font-weight: bold;">/</span>modules
<span style="color: #007800;">encusername</span>=<span style="color: #000000; font-weight: bold;">&lt;</span>yourusername<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #666666; font-style: italic;">#put the username you want to setup to use fuse here (test user?)</span>
adduser <span style="color: #800000;">${encusername}</span> fuse
<span style="color: #7a0874; font-weight: bold;">echo</span> user_allow_other <span style="color: #000000; font-weight: bold;">&gt;&gt;/</span>etc<span style="color: #000000; font-weight: bold;">/</span>fuse.conf</pre></div></div>

<p> vim /etc/security/pam_encfs.conf and add the following</p>
<pre>﻿drop_permissions
encfs_default --idle=1
fuse_default allow_other,nonempty
- /home/.enc - -v allow_other
</pre>
<p>If you have ubuntu check it does not have allow_root earlier in the config.</p>
<p>vim /etc/pam.d/common-auth and make sure it contains only the following</p>
<pre>auth sufficient pam_encfs.so
auth [success=2 default=ignore] pam_unix.so nullok_secure use_first_pass
auth [success=1 default=ignore] pam_winbind.so krb5_auth krb5_ccache_type=FILE cached_login try_first_pass
auth requisite pam_deny.so
auth required pam_permit.so
</pre>
<p>Then follow these commands</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>.enc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>
<span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> <span style="color: #800000;">${encusername}</span>:<span style="color: #800000;">${encusername}</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>.enc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>.bak
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>
<span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> <span style="color: #800000;">${encusername}</span>:<span style="color: #800000;">${encusername}</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>
<span style="color: #c20cb9; font-weight: bold;">su</span> <span style="color: #800000;">${encusername}</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span><span style="color: #000000; font-weight: bold;">/*</span>
encfs <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>.enc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span> <span style="color: #666666; font-style: italic;"># Same password as the user!!!,  won't work with gdm since it will ask for a password again.</span>
rsync <span style="color: #660033;">-av</span> <span style="color: #660033;">--delete</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>.bak<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>
<span style="color: #7a0874; font-weight: bold;">logout</span>
fusermount <span style="color: #660033;">-u</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>
<span style="color: #7a0874; font-weight: bold;">logout</span></pre></div></div>

<p>Test the user login in tty and the encfs mount can be seen during login,  also gdm should work.</p>
<p>Encfs should umount automatically the partition that spent idle more  than 1 minute, works on my laptop (Debian) but does not seem to work ok  on Ubuntu, do not know why, here is a quick and dirty hack to solve it:<br />
Put this into /etc/cron.d/encfshomeautoumount</p>
<pre>
*/5 * * * *    root    mount | grep '^encfs on' | awk '{print $3}' | while  read home; do if ! w\
| grep -q $( getent passwd | grep ':'$home':' | awk  -F':' '{print $1}' ); then fusermount -u $home;\
 fi; done >/dev/null 2>&#038;1
</pre>
<p>Once you are sure you can remove the backup home folder:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${encusername}</span>.bak</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.rimuhosting.com/2010/10/15/security-at-home-encrypted-home-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rimuhosting does LCA2010</title>
		<link>http://blog.rimuhosting.com/2010/02/12/rimuhosting-does-lca2010/</link>
		<comments>http://blog.rimuhosting.com/2010/02/12/rimuhosting-does-lca2010/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 23:05:07 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[copyleft]]></category>
		<category><![CDATA[david]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[lca2010]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux.conf.au]]></category>
		<category><![CDATA[merritt]]></category>
		<category><![CDATA[wellington]]></category>

		<guid isPermaLink="false">http://blog.rimuhosting.com/?p=489</guid>
		<description><![CDATA[A couple of the die hard Linux fanatics here at Rimuhosting decided to bribe the boss into letting us go to Linux.conf.au this year, and in fact even managed to get him to become a little blue penguin sponsor. Luckily &#8230; <a href="http://blog.rimuhosting.com/2010/02/12/rimuhosting-does-lca2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A couple of the die hard Linux fanatics here at Rimuhosting decided to bribe the boss into letting us go to Linux.conf.au this year, and in fact even managed to get him to become a  little blue penguin sponsor. Luckily we have a fantastic employer[1] who was keen to get rid of us. We had fun <a href="http://lca2010.blogspot.com/2010/01/hacking-lca-badges.html">hacking the name badges</a> whilst registering also (it became office sport whilst drinking beer one afternoon)</p>
<p>Despite John and I booking our flights several weeks apart, we still managed to get on the same flight, and even the same row, which was fine since I had a window seat and was able to take plenty of fantastic photos out the window.</p>
<p style="text-align: center;"><a href="http://www.lca2010.org.nz/schedules/photos/800px/dsc_30939.jpg"><img class="aligncenter" title="Rimuhosting Open Day" src="http://www.lca2010.org.nz/schedules/photos/800px/dsc_30939.jpg" alt="Rimuhosting Open Day" width="560" height="375" /></a></p>
<p><span id="more-489"></span></p>
<p>The Waikato where we were located had been in the middle of some amazing weather and 25-30 degrees most days, we were dressed in shorts and shirts when we landed and were informed that they had 30 knot winds and rain and a temperature of 13 degrees.</p>
<p>John grabbed his bags and caught a taxi to the Ustay where we were both booked (I think everyone from LCA was booked in there, 12 stories of geeks!), and i grabbed my bike i had brought with me, assembled it, and cycled the 6km into town.</p>
<p>The weather wasn't as bad as expected at all, and it was great seeing all the sights and having a bike around Wellingtons down town.<br />
<a title="IMG_2023 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4312615090/"><img src="http://farm3.static.flickr.com/2711/4312615090_ed2e568567_m.jpg" alt="IMG_2023" width="139" height="240" /></a> <a title="IMG_2044 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4312615546/"><img src="http://farm3.static.flickr.com/2692/4312615546_8303def00c_m.jpg" alt="IMG_2044" width="240" height="160" /></a> <a title="IMG_2033 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4311878801/"><img src="http://farm5.static.flickr.com/4013/4311878801_2d5f6b1643_m.jpg" alt="IMG_2033" width="240" height="160" /></a> <a title="IMG_2033 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4311878801/"></a> <a title="IMG_2078 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4311880087/"><img src="http://farm3.static.flickr.com/2694/4311880087_dbe2d1755c_m.jpg" alt="IMG_2078" width="240" height="160" /></a> <a title="IMG_2064 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4312615922/"><img src="http://farm3.static.flickr.com/2789/4312615922_593b116846_m.jpg" alt="IMG_2064" width="240" height="160" /></a> <a title="IMG_2079 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4312616572/"><img src="http://farm3.static.flickr.com/2743/4312616572_a3abe84b6b_m.jpg" alt="IMG_2079" width="240" height="160" /></a></p>
<p>I found the uStay ok, and stumbled over the 1st floor which was a common area/lounge to which there was always some form of geeks hacking, soldering, coding, etc at all hours of the day and night.<br />
<a title="IMG_1968 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4312590080/"><img src="http://farm5.static.flickr.com/4032/4312590080_69de8b4e35_m.jpg" alt="IMG_1968" width="240" height="160" /></a> <a title="IMG_1970 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4311854059/"><img src="http://farm3.static.flickr.com/2727/4311854059_9d7629228f_m.jpg" alt="IMG_1970" width="240" height="160" /></a></p>
<p><a title="IMG_1970 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4311854059/"></a> <a title="IMG_1969 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4312590298/"><img src="http://farm5.static.flickr.com/4003/4312590298_fd47a78e0d_m.jpg" alt="IMG_1969" width="240" height="160" /></a> <a title="IMG_1973 by Velofille, on Flickr" href="http://www.flickr.com/photos/wishes/4311854465/"><img src="http://farm5.static.flickr.com/4047/4311854465_d705bf3f41_m.jpg" alt="IMG_1973" width="240" height="160" /></a></p>
<p>The talks were varied and very interesting from a range of subjects. The Keynotes were always the highlight being both informative and interesting to pretty much everyone, all from well spoken and knowledgeable people. I even managed to have a photo of me on the big screen during one of the lightening talks from a computer show back in 2002</p>
<p>There was far too much to see and do most of the time, and often we had to hope that the video stream will be great to watch later on to catch up on what we missed. John and I didn't see each other much at the actual conference however we did end up drinking together or eating together at more than one place. There were after hours functions pretty much every night, either formal or informal. I don't think anyone got to bed before midnight the entire week, and I have to compliment Wellington on its excellent Coffee, Beer, and Food.</p>
<p><a href="http://www.flickr.com/photos/casadecruz/4284082229/"><img class="alignnone" title="John on the right" src="http://farm5.static.flickr.com/4067/4284082229_45af2705d3_m.jpg" alt="John on the right" width="240" height="160" /></a> <a href="http://www.flickr.com/photos/piawaugh/4291269104/"><img class="alignnone" title="Mako Talking" src="http://farm5.static.flickr.com/4057/4291269104_29e1780a84_m.jpg" alt="Mako talking" width="240" height="180" /></a> <a href="http://www.flickr.com/photos/malcolmtredinnick/4293984081/"><img class="alignnone" title="Rusty Russells talk" src="http://farm5.static.flickr.com/4071/4293984081_d57a079367_m.jpg" alt="Rusty Russells talk" width="240" height="159" /></a> <a href="http://www.flickr.com/photos/malcolmtredinnick/4293983679/"><img class="alignnone" title="LCA2010 Hallways" src="http://farm3.static.flickr.com/2722/4293983679_1732a39bb3_m.jpg" alt="LCA2010 Hallways" width="240" height="159" /></a></p>
<p>They ran a Photography competition also during the LCA, however much as I love photography I didnt fancy lugging that around and trying to get photos, I only had my netbook which was unable to open most (i have an SLR) and i prefered to spend my time talking and socializing. However some of the Photographs were specitacular, this one in particularly i loved and came runner up</p>
<p><a href="http://www.lca2010.org.nz/media/news/170"><img class="alignnone" title="Wellington at Night" src="http://www.lca2010.org.nz/images/photo-entries/gopal-vijayaraghavan-89.jpg" alt="Wellington at Night" width="640" height="425" /></a></p>
<p>During the week I met a Busker called David Merritt who wrote his own CopyLeft books containing amazing Poetry &amp; Prose, and one in particular i knew would go down well with the Linux.conf.au attendees so i asked him to turn up at the Open Day. When the Open Day came, there was no room for him to sell, so we shuffled around and did what we do best, and hosted him on our table. This turned out to be brilliant since everyone else had freebies and cool give aways and all we had were pamphlets until then.</p>
<p><a href="http://www.lca2010.org.nz/schedules/photos/800px/dsc_30939.jpg"><img class="aligncenter" title="Rimuhosting Open Day" src="http://www.lca2010.org.nz/schedules/photos/800px/dsc_30939.jpg" alt="Rimuhosting Open Day" width="800" height="536" /></a></p>
<p>Overall, we enjoyed the week, it was fantastic and a total sucess. Unsure about John but I'm pretty glad i took a second week holiday afterwards to recover.</p>
<p>I'll leave you with a couple of excepts from David Merritts book titled 'Geek Prayers' (if you want a copy of the book email him lrfpress at gmail.com - its $5 NZD)</p>
<p>"Lord,</p>
<p>May I never receive Zillions of weird and curious emails extorting me to increase my breast or penis size or transfer funds to bogus Nigerians"</p>
<p>"Lord,</p>
<p>May all my interweb page and backend site code be w3 compliant, not browser dependant and be free of all proprietary operating system kibble as well as be backwards compatible to the very first generation of interweb browsers"</p>
<p>We are now looking forward to  next year in Brisbane <a href="http://followtheflow.org/" target="_blank">http://followtheflow.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rimuhosting.com/2010/02/12/rimuhosting-does-lca2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Trying out the new Thunderbird 3</title>
		<link>http://blog.rimuhosting.com/2010/01/05/trying-out-the-new-thunderbird-3/</link>
		<comments>http://blog.rimuhosting.com/2010/01/05/trying-out-the-new-thunderbird-3/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 21:48:26 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[thunderbird]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.rimuhosting.com/?p=411</guid>
		<description><![CDATA[One of my co-workers mentioned something about thunderbirds new features, i thought this is an excellent time to break my mail client! so promptly looked up installing the new thunderbird. My work box is Ubuntu, so here's the easiest process &#8230; <a href="http://blog.rimuhosting.com/2010/01/05/trying-out-the-new-thunderbird-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of my co-workers mentioned something about thunderbirds new features, i thought this is an excellent time to break my mail client! so promptly looked up installing the new thunderbird.</p>
<p>My work box is Ubuntu, so here's the easiest process to get Thunderbird 3 installed</p>
<p>I used Ubuntuzilla to get the latest packages http://sourceforge.net/apps/mediawiki/ubuntuzilla/index.php?title=Main_Page</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;deb http://switch.dl.sourceforge.net/project/ubuntuzilla/mozilla/apt all main&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #660033;">-a</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> adv <span style="color: #660033;">--recv-keys</span> <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com C1289A29
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> thunderbird-mozilla-build</pre></div></div>

<p>Then because i wanted my old profile i started it with the profile manager</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">thunderbird <span style="color: #660033;">--profileManager</span></pre></div></div>

<p>I added a profile, then pointed it to ~/.mozilla-thunderbird/profiledir which was the old schema. The new place is ~/.thunderbird so in hindsight i probably just have copied over the profile to there before using it. No biggie though.<br />
It crashed a few times with various errors as I updated plugins and other things, but after the 3rd time it just worked.<br />
All i can says is 'wow' very cool! I have a global inbox for all my emails, and then an inbox for each account individually. It has tabs and some brilliant UI looks.</p>
<p>Give it a go yourself and see what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rimuhosting.com/2010/01/05/trying-out-the-new-thunderbird-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pacman Cookies at Rimuhosting.com</title>
		<link>http://blog.rimuhosting.com/2009/11/26/pacman-cookies-at-rimuhosting-com/</link>
		<comments>http://blog.rimuhosting.com/2009/11/26/pacman-cookies-at-rimuhosting-com/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 02:07:38 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[pacman]]></category>
		<category><![CDATA[waga]]></category>

		<guid isPermaLink="false">http://blog.rimuhosting.com/?p=309</guid>
		<description><![CDATA[Last night i spent a while making Pacman cookies, i brought them into the office today. The idea originated from when i was making Xmas Mince pies, i cut the circle then cut a V out so i wouldn't have &#8230; <a href="http://blog.rimuhosting.com/2009/11/26/pacman-cookies-at-rimuhosting-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last night i spent a while making Pacman cookies, i brought them into the office today.</p>
<p>The idea originated from when i was making Xmas Mince pies, i cut the circle then cut a V out so i wouldn't have leftover dough. Since i was doing a cookie swap at the time i made a quick mock up with the Pie Dough which my kids loved.</p>
<p>I gathered my cookie mixture together in the following few days, and did some research (clearly not enough, i almost only made 3 Ghosts when there are 4!), then sat down one night to make the cookies.</p>
<p>I took photos of the process for you to have a giggle. Apologies for the poor photo quality,  It was night from 9pm-1am , i don't have a decent flash unit etc. I made 3 sets, one for each of the people in the cookie swap, and one as a spare in case things went wrong which i took to work.</p>
<p>After wiping the conference room table, i placed the cookies out in a pattern, everyone loved it and wanted to eat it,. John grabbed a Ghost immediately, and then there was talk about 'you cant eat the ghost until you get a powerup! and you need Pacman to eat his way along the line to get to those!.</p>
<p>So for the rest of the day everyone would eat a small cookie, and move Pacman along a pace whilst making the 'waga waga' noise.  Slowly they all disappeared.</p>
<p>You can find the full photo set here <a href="http://www.flickr.com/photos/wishes/sets/72157622749111189/" target="_blank">http://www.flickr.com/photos/wishes/sets/72157622749111189/</a></p>
<p><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4133472196/"><img src="http://farm3.static.flickr.com/2779/4133472196_20dfdb7309_t.jpg" alt="Pacman Cookies" /> </a><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4132712289/"><img src="http://farm3.static.flickr.com/2715/4132712289_0d260b005a_t.jpg" alt="Pacman Cookies" /> </a><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4132711735/"><img src="http://farm3.static.flickr.com/2628/4132711735_c909200b95_t.jpg" alt="Pacman Cookies" /> </a><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4133473292/"><img src="http://farm3.static.flickr.com/2488/4133473292_4aa72e692e_t.jpg" alt="Pacman Cookies" /></a><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4134200755/"> <img src="http://farm3.static.flickr.com/2735/4134200755_e3e44bb633_t.jpg" alt="Pacman Cookies" /> </a></p>
<p><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4134944990/"><img src="http://farm3.static.flickr.com/2600/4134944990_ba84227567_t.jpg" alt="Pacman Cookies" /></a><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4134945280/"> <img src="http://farm3.static.flickr.com/2499/4134945280_24ab4228ff_t.jpg" alt="Pacman Cookies" /> </a><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4134945918/"><img src="http://farm3.static.flickr.com/2740/4134945918_ed05b525e1_t.jpg" alt="Pacman Cookies" /> </a><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4134944756/"><img src="http://farm3.static.flickr.com/2555/4134944756_4648ca2e6c_t.jpg" alt="Pacman Cookies" /> </a><a title="Pacman Cookies" href="http://www.flickr.com/photos/26423786@N00/4134946088/"><img src="http://farm3.static.flickr.com/2538/4134946088_eee3a84b02_t.jpg" alt="Pacman Cookies" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rimuhosting.com/2009/11/26/pacman-cookies-at-rimuhosting-com/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rimuhosting Summer Soccer 2009</title>
		<link>http://blog.rimuhosting.com/2009/11/05/rimuhosting-summer-soccer-2009/</link>
		<comments>http://blog.rimuhosting.com/2009/11/05/rimuhosting-summer-soccer-2009/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 20:12:40 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Rimuhosting]]></category>
		<category><![CDATA[soccer]]></category>
		<category><![CDATA[summer]]></category>

		<guid isPermaLink="false">http://blog.rimuhosting.com/?p=248</guid>
		<description><![CDATA[Every year the staff at rimuhosting.com head offices are made to do this thing called exercise. It apparently keeps us fit and healthy and makes our brain work or some such. Either way, its a legitimate way to beat the &#8230; <a href="http://blog.rimuhosting.com/2009/11/05/rimuhosting-summer-soccer-2009/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Every year the staff at rimuhosting.com head offices are made to do this thing called exercise. It apparently keeps us fit and healthy and makes our brain work or some such.<br />
Either way, its a legitimate way to beat the crap out of our workmates and other innocent gamers using a ball as our weapon, and for me, i just take photos and pretend like it was hard work (i do other exercise! honest!).  More photos will come throughout the season.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fwishes%2Fsets%2F72157622609377661%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fwishes%2Fsets%2F72157622609377661%2F&amp;set_id=72157622609377661&amp;jump_to=" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowfullscreen="true" flashvars="offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fwishes%2Fsets%2F72157622609377661%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fwishes%2Fsets%2F72157622609377661%2F&amp;set_id=72157622609377661&amp;jump_to="></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rimuhosting.com/2009/11/05/rimuhosting-summer-soccer-2009/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>We&#8217;re a Team</title>
		<link>http://blog.rimuhosting.com/2009/09/15/were-a-team/</link>
		<comments>http://blog.rimuhosting.com/2009/09/15/were-a-team/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 03:21:24 +0000</pubDate>
		<dc:creator>davidmace</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Rimuhosting]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[team]]></category>

		<guid isPermaLink="false">http://blog.rimuhosting.com/?p=100</guid>
		<description><![CDATA[We see lots of different problems every day as Liz noted the other day.  It's really quite varied work that we do and you can go from resetting a password one minute to setting up load balanced proxy servers the &#8230; <a href="http://blog.rimuhosting.com/2009/09/15/were-a-team/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We see lots of different problems every day as Liz noted the other day.  It's really quite varied work that we do and you can go from resetting a password one minute to setting up load balanced proxy servers the next.  There's always a fun and challenging problem right around the corner.</p>
<p>The most important thing, for us, is delighting customers and showing them we care about their issues and we're here to help whenever trouble strikes.</p>
<p>How do we do that?</p>
<p>Simple, we're a team of professionals with varied backgrounds.  There is a good deal of middle ground between all of us of course (remember, we see lots of similar problems day-in day-out), but there's usually 1-3 of us that are really keen on any particular topic.</p>
<p>This explains why you may see a delay with a given issue that you've submitted.  If I think the problem warrants somebody else, I'll let that stay into our queue or I'll annotate that message to someone's attention so that they go look at it.  If it's urgent, I'll dig in and get after it myself.</p>
<p>I think that's what makes us a great team; we're all good at 'our own thing'.  As a result, we can tackle just about any problem you can throw at us and that's a great thing to have on your side when you're trying to keep your service up and running against the brutality of the open web.</p>
<p>I came across a good article over at linux-mag describing a good sysadmin team and it got me thinking about all of us here at RimuHosting.</p>
<p><a href="http://www.linux-mag.com/cache/7455/1.html" target="_blank">http://www.linux-mag.com/cache/7455/1.html</a></p>
<p>We don't have anybody that "used to raid drug boats for the United States Coast Guard", but give us a call if Apache is giving you grief.  We can handle that.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rimuhosting.com/2009/09/15/were-a-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Pool table that never happened</title>
		<link>http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/</link>
		<comments>http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 00:10:24 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Rimuhosting]]></category>
		<category><![CDATA[pool table]]></category>

		<guid isPermaLink="false">http://blog.rimuhosting.com/?p=24</guid>
		<description><![CDATA[Now here's a story about how awesome our boss Peter is, and how our offices are just a little to hard to get too at times .. Once apon a time, Rimuhosting was based in a room in Peters house &#8230; <a href="http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Now here's a story about how awesome our boss Peter is, and how our offices are just a little to hard to get too at times ..</p>
<p>Once apon a time, Rimuhosting was based in a room in Peters house (like all good start-up companies). Eventually he gained the trust of many  customers and made the move to a small office at on the top floor of a building in town. This was great,  he hired more fantastic Sys-admins and slowly got bigger.</p>
<p>Eventually came the day when he decided to buy the entire top floor and extend into the other offices.  Since he had grand ideas to get a development team this worked out well.</p>
<p>Next to the kitchen there was a large room which he named the conference room.  He then purchased a large table made of Rimu which weighed in at about 150KG.  Once this table arrived all the workers stopped work, unbolted the legs, tied ropes to this table and hauled it up through the center of the stairwell half way, and then jiggled it up each step until finally it arrived.</p>
<p>It was no easy mission, and the table was fantastic. Recently somebody suggested a pool table would go well with the ping pong table we have. Thus we have the Pool table theory.  Peter bought a pool table, and being Peter he didn't get the normal cheap wooden one, but a proper one with a slate base that weighed in at 450KG.</p>
<p>The size  of it was smaller or similar to the conference table, so he thought we ought to be able to get it up the stairs.</p>
<p>It took a few guys to carry off the truck and into the downstairs area.  They carefully pulled it apart into smaller pieces, took parts they could carry up then prepared ropes and people to hoist it up the middle of the stairway.</p>
<p>The guys all sat about and looked at each other,  discussed what way was the best to get the remaining table top up the stairs. About 30 minutes later we all came to the conclusion that, though it was a fantastic idea, there was no real safe way to get this huge heavy table up the stairwell.</p>
<p>We brought back down all the parts, and had to send the pool table back from where it came.</p>

<a href='http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/img_0085/' title='IMG_0085'><img width="150" height="150" src="http://blog.rimuhosting.com/wp-content/uploads/2009/08/IMG_0085-150x150.jpg" class="attachment-thumbnail" alt="IMG_0085" title="IMG_0085" /></a>
<a href='http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/img_0087/' title='IMG_0087'><img width="150" height="150" src="http://blog.rimuhosting.com/wp-content/uploads/2009/08/IMG_0087-150x150.jpg" class="attachment-thumbnail" alt="IMG_0087" title="IMG_0087" /></a>
<a href='http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/img_0088/' title='IMG_0088'><img width="150" height="150" src="http://blog.rimuhosting.com/wp-content/uploads/2009/08/IMG_0088-150x150.jpg" class="attachment-thumbnail" alt="IMG_0088" title="IMG_0088" /></a>
<a href='http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/img_0089/' title='IMG_0089'><img width="150" height="150" src="http://blog.rimuhosting.com/wp-content/uploads/2009/08/IMG_0089-150x150.jpg" class="attachment-thumbnail" alt="IMG_0089" title="IMG_0089" /></a>
<a href='http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/img_0090/' title='IMG_0090'><img width="150" height="150" src="http://blog.rimuhosting.com/wp-content/uploads/2009/08/IMG_0090-150x150.jpg" class="attachment-thumbnail" alt="IMG_0090" title="IMG_0090" /></a>
<a href='http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/img_0091/' title='IMG_0091'><img width="150" height="150" src="http://blog.rimuhosting.com/wp-content/uploads/2009/08/IMG_0091-150x150.jpg" class="attachment-thumbnail" alt="IMG_0091" title="IMG_0091" /></a>
<a href='http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/img_0092/' title='IMG_0092'><img width="150" height="150" src="http://blog.rimuhosting.com/wp-content/uploads/2009/08/IMG_0092-150x150.jpg" class="attachment-thumbnail" alt="IMG_0092" title="IMG_0092" /></a>

]]></content:encoded>
			<wfw:commentRss>http://blog.rimuhosting.com/2009/08/27/the-pool-table-that-never-happened/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

