<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>Florian Hengartner&apos;s Blog</title>
        <link>http://weblog.hengartner.biz/</link>
        <description></description>
        <language>en</language>
        <copyright>Copyright 2010</copyright>
        <lastBuildDate>Fri, 18 Sep 2009 16:34:30 +0100</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>Format prices as swiss francs (CHF) in PHP - painless!</title>
            <description><![CDATA[Formatting prices as swiss francs in PHP is actually very easy .. if you know how.<br />Requires: PHP 5 &gt;= 5.3.0, PECL intl &gt;= 1.0.0<br /><br />The number formatter handles all pitfalls like rounding to "5 Rappen", fraction, apostrophe's, etc.<br /><br />$formatter = new NumberFormatter('de_CH', NumberFormatter::DECIMAL );<br />$formatter-&gt;setAttribute(NumberFormatter::FRACTION_DIGITS,2);<br />$formatter-&gt;setAttribute(NumberFormatter::ROUNDING_INCREMENT,0.05);<br />echo $formatter-&gt;formatCurrency(123456.759,'CHF')."&lt;br /&gt;\n";<br />// Output: 123'456.75<br />echo $formatter-&gt;formatCurrency(123456,'CHF')."&lt;br /&gt;\n";<br />// Output: 123'456.00<br />echo $formatter-&gt;formatCurrency(123456.97,'CHF')."&lt;br /&gt;\n";<br />// Output: 123'456.95<br />echo $formatter-&gt;formatCurrency(123456.98,'CHF')."&lt;br /&gt;\n";<br />// Output: 123'457.00<br />echo $formatter-&gt;formatCurrency(.2,'CHF')."&lt;br /&gt;\n";<br />// Output: 0.20<br /><br />-----------------------------------------<br />German:<br /><br />Preise als Schweizer Franken zu Formatieren geht in PHP sehr einfach .. wenn man weiss wie.<br />Die NumberFormatter Klasse kann auf 5 Rappen runden, Hochkomma setzen, etc.<br />Benötigt wird  PHP 5 &gt;= 5.3.0, PECL intl &gt;= 1.0.0.<br />Beispiel siehe oben.<br /><br /><br /><br /><br /><br /> ]]></description>
            <link>http://weblog.hengartner.biz/2009/09/format-prices-as-swiss-francs.html</link>
            <guid>http://weblog.hengartner.biz/2009/09/format-prices-as-swiss-francs.html</guid>
            
            
            <pubDate>Fri, 18 Sep 2009 16:34:30 +0100</pubDate>
        </item>
        
        <item>
            <title>Fix crashing Unreal Tournament 2004 (on mac osx)</title>
            <description><![CDATA[<p>Until recently I played unreal tournament 2004 on my macbook pro without any trouble.<br />
Then one day, I quit the game, tried to start it again and since then it always crashed imediately after launch.<br />
It didn't even recreate the deleted preferences folder, it crashed that early.</p>

<p>The error report says this:</p>

<pre>
Dyld Error Message:
Library not loaded: @executable_path/libSDL-1.2.0.dylib
Referenced from: /Applications/games/Unreal Tournament 2004.app/Contents/MacOS/Unreal Tournament 2004
Reason: image not found
</pre>

<p>Google found some people with the same problem, but no solution.<br />
So here is the solution for all you out there with the same problem ;-)</p>

<p>After trying various things, fixing permissions, etc. I finaly found the solution.<br />
I copied the library (libSDL-1.2.0.dylib) mentioned in the error message to /usr/local/lib and voilà, ut2004 runs again.</p>

<p>Open a console, go to the folder where your "Unreal Tournament 2004.app" is, then copy the library file:<br />
<pre>sudo cp Unreal\ Tournament\ 2004.app/System/libSDL-1.2.0.dylib /usr/local/lib</pre><br />
</p>]]></description>
            <link>http://weblog.hengartner.biz/2008/12/fix-crashing-unreal-tournament.html</link>
            <guid>http://weblog.hengartner.biz/2008/12/fix-crashing-unreal-tournament.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">computer</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">mac</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">osx</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">tournament</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">unreal</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">ut2004</category>
            
            <pubDate>Wed, 31 Dec 2008 10:39:17 +0100</pubDate>
        </item>
        
        <item>
            <title>Release des Local.ch-Plugin für Address Book</title>
            <description><![CDATA[<p>
Vor einiger Zeit hatte ich das "<a href="http://www.macosxhints.com/article.php?story=20050208234638329">Google Map Of</a>" Script für das OSX Address Book entdeckt. (Unterdessen gibts das mächtigere "<a href="http://www.briantoth.com/addressbook/">Google Map Plugin</a>".)
</p>
<p>
Von dem "Google Map Of" Script hatte ich mir eine Kopie angefertigt die local.ch verwendet.
Dieses habe ich jetzt noch ein wenig verfeinert und online gestellt unter "<a href="http://www.hengartner.biz/projects/localch-address-book-plugin.html">Local.ch Address Book Plugin</a>". Long live applescript ;-)
</p>
<img alt="adresse menu.png" src="http://weblog.hengartner.biz/upload/img/addressbook/adresse%20menu.png" width="250" style="border: 1px solid black;">
<img alt="telefon menu.png" src="http://weblog.hengartner.biz/upload/img/addressbook/telefon%20menu.png" width="250" style="border: 1px solid black;">]]></description>
            <link>http://weblog.hengartner.biz/2008/10/release-des-localchplugin-fur.html</link>
            <guid>http://weblog.hengartner.biz/2008/10/release-des-localchplugin-fur.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">computer</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">addressbook</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">local.ch</category>
            
            <pubDate>Sat, 11 Oct 2008 10:11:21 +0100</pubDate>
        </item>
        
        <item>
            <title>Filesystem for external harddrive</title>
            <description><![CDATA[<font style="font-size: 1.25em;">Which format?</font><br />Recently I bought a new external harddrive. I asked myself is there a <i>good</i> reason today to leave it formated with fat32 (sometimes even in fat16!). Many of todays filesystems have superior features, but is there also a filesystem with the cross platform compatibility of FAT?<br /><br /><font style="font-size: 1.25em;">My requirements for the filesystem</font><br /><ul><li>good compatibility with my main operating system: mac os x<br /></li><li>high filesize limits</li><li>unix filesystem permissions</li><li>journaling if possible<br /></li><li>cross-platform:<br /></li><ul><li>linux</li><li>mac os x</li><li>windows</li></ul></ul>While writing this entry I found an excellent article that covers many point's (so I don't have to): <a href="http://www.freesoftwaremagazine.com/blogs/move_your_data">move your data</a>.<br />It explores the positives and negatives of the different filesystems. It's main focus is on a filesystem that is accessable by windows and linux.<br /><br /><font style="font-size: 1.25em;">The idea of two partitions</font><br />My personal focus is on data that is read&amp;writable with linux and mac os x and at least readable under windows.<br />I begun conducting research on this filesystem question. I discovered the idea of two partitions on a jumpdrive.<br />A small partition formatted with fat32 which is readily mountable in windows and everywhere. The second,larger and main partition is formatted with the more "special" filesystem.<br />On the small partition I place a driver or other applications that allow access to the more specially formatted partition. Furthermore if you can't or don't want to install the driver you can store some files directly on the FAT partition.<br /><br /><font style="font-size: 1.25em;">First run with EXT3</font><br />Ext3 was my main filesystem with linux, has unix permissions, journaling and a driver for <a href="http://www.fs-driver.org/">windows</a> and <a href="http://sourceforge.net/projects/ext2fsx/">osx</a>. It covers all my requirements (at least I thought so). No journaling with windows, but I won't use it often with windows so I could live with that. Thus I decided to take this way.<br />As I didn't have my macbook pro back then I couldn't test the filesystem with osx. As the future showed the osx driver is not stable. The first and only time I had kernel crashes was while using this driver. Alternatively I tried to use the <a href="http://sourceforge.net/projects/ext2fuse">fuse ext2 driver</a> with <a href="http://code.google.com/p/macfuse/">macfuse</a> - no success. Time to find a new filesystem.<br /><br /><font style="font-size: 1.25em;">Success with HFS+</font><br />My next try with hfs+ - the standard os x filesystem - was successful.<br />It mounts without manual work in my Ubuntu GNU/Linux box and has limited support for windows.<br />A fileexplorer (readonly) for Windows XP is <a href="http://hem.bredband.net/catacombae/hfsx.html">HFSExplorer</a>.<br />For more drivers and information see the wikipedia article for <a href="http://de.wikipedia.org/wiki/HFS_plus#Unixoide_Betriebssysteme">HFS+</a>.<br />HFS+ is mounted readonly, to enable the write support within linux I had to disable the journal of the HFS+ partition, see <a href="http://gentoo-wiki.com/HOWTO_hfsplus">http://gentoo-wiki.com/HOWTO_hfsplus</a>. It's sad I have to disabe the journal, but at least I get write support if I need it. Don't forget to reenable the journal afterwards ;-)<br /><br /><br />]]></description>
            <link>http://weblog.hengartner.biz/2007/10/filesystem-for-external-harddr.html</link>
            <guid>http://weblog.hengartner.biz/2007/10/filesystem-for-external-harddr.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">computer</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
            <pubDate>Fri, 26 Oct 2007 22:30:17 +0100</pubDate>
        </item>
        
        <item>
            <title>Back home</title>
            <description><![CDATA[<div class="entry-body">
                              <p>It's about time to update my blog, cause I'm back in switzerland since moren than one week!<br />
My flight from Sydney left late what messed up the whole flight plan
and the connecting flight in Singapur was already gone. In the end i
flew over Frankfurt instead of Paris and luckily arrived no later than
originaly planed, hurray :)</p>

<p>I enjoyed my last station - Sydney - very much. It's a magnificient,
living city with lots to see &amp; do. Unfortunately I couldn't stay
longer.</p>

<p>Now I'm enjoying the conveniences of settledness. No 8hrs drive a
day, my own bed and i don't have to live out of my suitcase - ah :)<br />
Some of the other things I missed:<br />
</p><ul class="module-list"><li class="module-list-item">good cheese</li><li class="module-list-item">real bread</li><li class="module-list-item">good pizza (without ketchup but with real tomato puree)</li><li class="module-list-item">long showers</li></ul>

<p>Overall it was a very good, enjoyable experience and I could handle all glitches and most was running smoothly anyway.<br />
And to all you new people I've met - have a good time and I hope I see the one or the other again some day.</p>



<p>the end</p>
                           </div> ]]></description>
            <link>http://weblog.hengartner.biz/2007/07/back-home.html</link>
            <guid>http://weblog.hengartner.biz/2007/07/back-home.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
            <pubDate>Wed, 18 Jul 2007 22:34:00 +0100</pubDate>
        </item>
        
        <item>
            <title>Alice Springs</title>
            <description><![CDATA[<div class="entry-body">
                              <p>I crossed half of australia since I left Cairns.<br />
From Cairns I started travelling together with my mate Serge who made
it at the last minute on our plane to Darwin. "Just in time" as he says.</p>

<p>From darwin we went to the kakadu national park. On our croc boat
cruise we even saw a croc eating another animal which looked very
spectacular.</p>

<p>Later we drove from darwin to alice spring in a rather uncomfortable
bus. On the journey we bathed in hot springs, visited the devils
marbles (big round rocks laying around in the middle of nowhere). Now
we've experienced "the real outback" which mainly consists of nothing.
Big landscapes of dry gras, small bushes, cattle stations as huge as
switzerland, small villages with a population changing from 2,3 people
(wetseasen, summer) and around 12 in the dryseason (winter).</p>

<p>So now we are in Alice Springs and continue tomorrow to Uluru (Ayers Rock), Kings Canyon, etc.</p>

<p>During day the temperature is around 20 degrees celcius but during
the night it falls down to 0! Brr! But nevertheless our mood is good :)</p>

<p>Cheers</p>
                           </div> ]]></description>
            <link>http://weblog.hengartner.biz/2007/06/alice-springs.html</link>
            <guid>http://weblog.hengartner.biz/2007/06/alice-springs.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">alicesprings</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">crocodile</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
            <pubDate>Tue, 26 Jun 2007 08:07:00 +0100</pubDate>
        </item>
        
        <item>
            <title>update</title>
            <description><![CDATA[<div class="entry-body">
                              <p>this is going to be a short summary only.<br />
after a farewell party I had to leave all my mates behind me and I left brisbane on sunday a week ago.<br />
I then flew to the whitsunday islands and joined a sailing trip. The 3
days on the boat were very enjoyable. The snorkeling was very good,
also we could help hissing the sails.<br />
The weather at the whitsunday islands is the worst we had yet - often cloudy and with some rainfalls.</p>

<p>After that I meet the people of my tour. we had much fun in long island and then went on for cairns.<br />
there we've been for 3 days. I did a skysurf - wuhuuu! - something of the best I ever did.</p>

<p>now we are on the way back to cairns from cape tribulation, there we
took look at the rainforest, yet another beach, relaxing, swimming in
the coldest creek ever ...</p>

<p>I'll put up some photos the next time.</p>
                           </div>
                           
                                        
                                                      
                                ]]></description>
            <link>http://weblog.hengartner.biz/2007/06/update.html</link>
            <guid>http://weblog.hengartner.biz/2007/06/update.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
            <pubDate>Mon, 11 Jun 2007 04:17:00 +0100</pubDate>
        </item>
        
        <item>
            <title>Scuba diving</title>
            <description><![CDATA[<div class="entry-body">
                              <p>This week I learnt scuba diving. I'm a PADI certified diver now :)<br />
We've been 2 days in the classroom learning the theorie and practising
in the pool. Then we went on a boat for 3 days with which we drove out
to the great barrier reef.</p>

<p>Once you are in the wet wetsuit and have the bcd, tank, regulator,
weights, fin , mask/snorkel and all that stuff mounted the adventure
can begin. I saw many many different fishes down there. trompet fish,
flutemouth fish, clownfish (nemo :), parrot fish, lion fish,
barracuda's, shark, turtle etc. and the different corrals, sea
cucumbers, sea star, x-mas tree worm, ...</p>

<p>The live on the boat consited of diving, eating, a short brake,
diving, eating, a short brake .... ( to be continued) ... and sometimes
sleeping.</p>

<p>The night dive was very special. You see barely nothing in the
water, everything is dark. The conditions were very rough, rougher than
on any other dive. It rained and even on the ground the current was
pulling on you. Also we trained some navigation skills. All of that
made it challenging, but on the other hand that's why this is one my
favourite dives. Though we didn't see many animal's because of the
darkness. In the night everyone has a glowing marker on his tank and a
torch. The torch is realy important, because otherwise you hardly can
see anything underwater and not less important it helps to regain the
possibilty to communicate with signals as you can't speek to each other
under water. The funniest thing of the night dive was the funky
underweare and shirts we wore over the wetsuit. The purpose is to
identify your dive-buddy (and everyone else) in the darkness.</p>

<p>I had a fantastic instructor (crazy girl), boat crew and many great dive mates.<br />
On a side note: I knew they also offer a german course (I took the
english) but I was very surprised to find a swiss instructor at the
school. In total we've been six swiss people on the boat.</p>

<p>I enjoyed the diving very much and would recommend it to everyone!<br />
..maybe with exception of people who get seasick. As for me I liked the
bumps very much - it's like on a neverending rollercoaster ride :)</p>

<p><br />
have a good time.<br />
florian</p>
                           </div> ]]></description>
            <link>http://weblog.hengartner.biz/2007/06/scuba-diving.html</link>
            <guid>http://weblog.hengartner.biz/2007/06/scuba-diving.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">scuba dive</category>
            
            <pubDate>Thu, 07 Jun 2007 07:18:00 +0100</pubDate>
        </item>
        
        <item>
            <title>Byron Bay</title>
            <description><![CDATA[<span class="mt-enclosure mt-enclosure-image"><img alt="byron_bay_fine.jpg" src="http://dev.weblog.hengartner.biz/australia/521078394_56584afd13.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" width="300" height="140" /></span><p>This
weekend I drove to Byron Bay with 3 classmates. I rented a car for
that. It's no problem to do that as long as you've got a credit card
and are at least 21.<br />
To drive on the wrong side is scary for the first minutes. My aim then
was to get on the highway as fast as possible. However I have to say I
felt realy comftable to drive on the left lane after to days.</p>

<p>We arrived in Byron late saturday evening. In the morning I've had a
couvert with the dumbest fine I ever received on the carwindow. <br />
<img src="file:///Volumes/500GBHFS/backup/fornax-2007-09-03/home/flo/files/private/webpages/hengartner/archive/weblog/byron%20bay_files/521078394_56584afd13.jpg" /><br />
I was realy angry because of that. There was nowhere a sign on the
street or something else that indicated that you have to park this way!</p>

<p>On sunday we went to the lighttower, which is on the most eastern
point of the australian mainland. The rest of the day we spent swimming
in the waves - that's great fun!<br />
I would have liked to spend a day more there, but not all of us agreed with that, so we went back..<br />
If I would immigrate to australia, than to a place with sea access like in Byron.</p>

<p>Today it's pokertime again - wish me good luck.<br />
see you</p> <div><br /></div>]]></description>
            <link>http://weblog.hengartner.biz/2007/05/byron-bay.html</link>
            <guid>http://weblog.hengartner.biz/2007/05/byron-bay.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">byronbay</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">fine</category>
            
            <pubDate>Wed, 30 May 2007 08:25:00 +0100</pubDate>
        </item>
        
        <item>
            <title>Australia Map</title>
            <description><![CDATA[<p>I've roughly updated my <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=115167603864855244173.000001128a37cb134cfaa">australia map</a> with some points, i've been or i'll go to in the future - including the tours I do after school.</p>

<p>One week of school is left.<br />
After that i'll fly to Airlie Beach.<br />
There I join a trip which consists of 3 days sailing around the
whitsunday islands, then we drive up to cairns, stay there a day and go
ahead to cooktown and finaly return back to cairns. I'll stay in cairns
for about a week to make a scuba dive course.</p>

<p>Then a friend from school will join me and we fly to Darwin.<br />
From there we do a 14day trip to Adelaide. In the first three days we
visit the Kakadu National Park near Darwin. Afterwards we travel by bus
through the middle of australia with a lot of short stops and a bigger
one in Alice Springs. Hopefully I'll see a lot of interesting stuff.</p>

See ya ]]></description>
            <link>http://weblog.hengartner.biz/2007/05/australia-map.html</link>
            <guid>http://weblog.hengartner.biz/2007/05/australia-map.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
            <pubDate>Sun, 27 May 2007 08:25:00 +0100</pubDate>
        </item>
        
        <item>
            <title>Feeling homesick?</title>
            <description><![CDATA[<div class="entry-content">
                                                      <div class="entry-body">
                              <p>No not realy. But here are two things I miss of switzerland.</p>

<p>1) good bread</p>

<p>aussies just don't know what good bread is.<br />
they only know toast bread and a kind of garlic bread.<br />
it's even hard to get other flavors than just white toast bread.</p>

<p>2) taking loooong showers</p>

<p>because of the dry you are advised to take short showers.<br />
I can stand under the shower for hours, just letting the water flow. I just love this!</p>

<p>It's something you shouldn't do here. </p>

<p>On a side note. Because of the dry there are some (new) laws and orders like:<br />
..my homesty family has a pool:<br />
- it's prohibited to refill it<br />
- they are required to buy a pool cover<br />
- they are required to buy a water tank (as rainwater-reservoir)</p>

<p>- all tap's have to be checked for leakage by a professional</p>

<p>they have to pay all those things by themself. at least they get a commission.<br />
all those things have to be done until the end of this month or they could get fined.</p>
                           </div>
                           
                                        
                           
                        </div> ]]></description>
            <link>http://weblog.hengartner.biz/2007/05/feeling-homesick.html</link>
            <guid>http://weblog.hengartner.biz/2007/05/feeling-homesick.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
            <pubDate>Thu, 17 May 2007 12:05:00 +0100</pubDate>
        </item>
        
        <item>
            <title>Stradbroke Island Trip</title>
            <description><![CDATA[<div class="entry-content"><div class="entry-body"><p>
ca. 05:00: I creep into my bed.<br />
07:25: Ups, the bus drives in a minute, I'm still in the bed.<br />
Yeah you guess it - I missed the bus.<br />
It's getting really close. I have to be at the meeting-point at 08:00.<br />
Just enough time for the taxi to drive to my home and into the city.<br />
And I can't even ring them, because there is no money left on my pre-paid card.<br />
But in the end I get there nearly on time, and the trip starts.</p>

<p>We are about 20 people and drive in a small bus to the ferry for Stradbroke island.<br />
As usual the people on the trip are from different language schools.<br />
After a 30 minute ride by ferry we are on the island.<br />
We go to the sea-beach where I go swimming.<br />
The waves always pull you back to the beach. It's hard to get into a bit deeper water.<br />
No wonder there are many surfers. It's interesting to watch them.<br />
Later we try to surf down a sand dune, but today the sand is too wet. </p>

<p>After lunch we go for a walk on the coast. The views from the cliffs are really spectacular.</p>

<p>The last stop is on a lake.<br />
Some people go for a short swim - I for myself have enough for today - it's already getting dark.</p>

<p><a href="http://www.flickr.com/photos/fhengartner/tags/%22stradbroke%20island%22">Stradbroke Island Photos</a></p>
                           </div>
                           
                                        
                           
                        </div> ]]></description>
            <link>http://weblog.hengartner.biz/2007/05/stradbroke-island-trip.html</link>
            <guid>http://weblog.hengartner.biz/2007/05/stradbroke-island-trip.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">island</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">stradbroke</category>
            
            <pubDate>Tue, 15 May 2007 11:59:00 +0100</pubDate>
        </item>
        
        <item>
            <title>Poker</title>
            <description><![CDATA[<p>Wednesday evening.<br />
We are about 10 people from my school - only swiss .. - and are on the way to a poker game.<br />
It's held in a restaurant and without money - the only target is to enjoy playing and win.</p>

<p>There are a man and a women who look after the players and manage the game evening.<br />
It has 6 real poker tables and on each play 8 people.<br />
Game mode is "Texas hold'em Poker", the blinds are doubled approx. all 15 minutes.<br />
If you consume drinks or food before the game starts you receive the double amount of chips.</p>

<p>It's really interesting to play. You see some new tactics, exciting
card mixing techniques and it's thrilling to see which player falls out
of the game - which not.</p>

On the end I manage to get the 15th place out of 44, I'm satisfied, it's a good result for my first try in tournament poker. ]]></description>
            <link>http://weblog.hengartner.biz/2007/05/poker.html</link>
            <guid>http://weblog.hengartner.biz/2007/05/poker.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
            <pubDate>Tue, 15 May 2007 11:49:00 +0100</pubDate>
        </item>
        
        <item>
            <title>Arrival at brisbane</title>
            <description><![CDATA[<div class="entry-body">
                              <p>Hi folks,<br />
I will write here in english - practice for me, and all the new people I meet here will also be able to understand this stuff.<br />
So, if you don't understand it or have a question, just ask ;-).</p>

<p>I flew from zurich to paris, then over to singapure and from there directly to brisbane.<br />
The flights were not bad. It's just that I could barely sleep in those seats.<br />
At least you get always a sleep mask our you can watch some movies -
there's a tv screen in the back of the seat in front of you - or listen
to music.</p>

<p>On my first day I took a cab to drive to my homestay family - that was realy scary.<br />
At every road cross I thought the driver is taking the wrong lane. Its
the same if I drive by bus - but now its better, after two days I got
used to that.</p>

<p>My guest family is very friendly. There are grant and teena dickson
- the homestay parents, teena is a great cooker, and there's steve a
classmate (he is from geneva). The house is very cool, it has a nice
veranda and a pool :). I have a bus stop just at my house and about 20
minutes to drive into the city. Thats pretty good - the bad thing is,
that the busses don't drive after 7pm during the week. Then I have to
take the train and walk 30 minutes or take a taxi.</p>

<p>The school started this monday. First we did was a little test which
included listening to a tape, answering some questions about that, fill
out the gaps in a text and speaking to a teacher.<br />
I made it into the advanced class - the highest one (but there's still a lot to learn).<br />
We have a good teacher - he makes the classes funny and interesting. We
are eleven people in my class, three of them finished this week. Thus
we will be a very small class next week, even more as some students
come only on the morning. My school day ends at 3:15pm.<br />
I could make some friends in the school, so I have some mates to do all the funny stuff, that you can do here.<br />
The students are mostly from korea, japan, brazil and switzerland.<br />
There is an english only policy at the school. You are not allowed to
speak your native language, only english! If a teacher catches you - he
will send you home for the rest of the day.<br />
A good thing - you barely hear someone speaking another language.</p>

<p>The weather is very good. Its allways possible to wear short
clothes. As long as you do nothing, you are fine, but as soon as you
begin to walk in the sun you start sweating. In Brisbane itself (the
heart of the city) you can even wear long clothes. That's because of
the big buildings. The sun does not reach the ground and you're always
in the shadow with a fresh breeze.<br />
Brisbane is not that big. I think its as big as St.Gallen. But you
could drive through the suburbs for hours until you reach the end.
There's one residential house after the other. I already got lost some
times between all those houses. The houses are much simpler than in
switzerland. Many of them are built using wood or bricks and the walls
are not thicker than 15cm.</p>

<p>This wednesday was a public holiday. So I went to the australian zoo with a school mate.<br />
You know crocodile hunter from tv? The one that died last year. Yeah, thats his zoo.<br />
You could see some crocodiles, different birds, birds of prey, snakes, cangaroos, wombats, koalas, elephants, lions, etc.<br />
Cangaroos in the zoo have an easy live, they doen't not need to make a move. The tourists come directly to them and feed them. <br />
They had a show, with snakes, crocs and birds. It was a bit boring.
They took the snakes out of a box, did nothing and put them back into
the box. They tried to educate people about not throwing rubbish out
into the green, not panik if you see a snake, and so on.. good
intention, but not that interesting.<br />
Besides of that we had a good and funny day in the zoo.</p>

<p>Could tell you much more, but have to get to an end now.<br />
I have to say its really good down here. I'm curious what the next week will bring.</p>

<p>I'll try to upload some pictures next time.<br />
Hope you have it good back in switzerland, I would be pleased to hear from you, bye.<br />
</p>
                           </div>
                           
                                        
                                                      
                                ]]></description>
            <link>http://weblog.hengartner.biz/2007/04/arrival-at-brisbane.html</link>
            <guid>http://weblog.hengartner.biz/2007/04/arrival-at-brisbane.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">australia</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">brisbane</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">english</category>
            
            <pubDate>Sun, 29 Apr 2007 05:33:00 +0100</pubDate>
        </item>
        
        <item>
            <title>www.sakku.ch ist live!</title>
            <description><![CDATA[<div class="entry-content">
                                                            <div class="entry-body">
                                 <p>Soeben konnte ich die Webseite livespielen. Diese habe ich mit der Hilfe des OpenSource CMS <a href="http://www.typo3.com/">Typo3</a> umgesetzt.</p>
<p>Und los gehts! Hol dir jetzt deine Tasche unter <a href="http://www.sakku.ch/">http://www.sakku.ch</a>. Das nötige Kleingeld vorausgesetzt ;-).</p>
                              </div>
                              
                              
                              
                        </div> ]]></description>
            <link>http://weblog.hengartner.biz/2006/07/wwwsakkuch-ist-live.html</link>
            <guid>http://weblog.hengartner.biz/2006/07/wwwsakkuch-ist-live.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">typo3</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">sakku</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">typo3</category>
            
            <pubDate>Mon, 03 Jul 2006 21:55:00 +0100</pubDate>
        </item>
        
    </channel>
</rss>

