tag:blogger.com,1999:blog-74643112007-09-19T01:11:44.816+02:00TeutonMariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comBlogger12125tag:blogger.com,1999:blog-7464311.post-73261595080326444592007-09-18T08:08:00.000+02:002007-09-18T20:12:44.270+02:00Lock Screen on Mac OS X using keyboard shortcut.1. Download "Global Hotkey"<br />2. Create a folder "Global Hotkey" and copy contents of downloaded DMG to that.<br />3. In a terminal do:<br />cd "/Applications/Global Hotkey"<br />ln -s /System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app "command f10"<br />4. Make sure Screensaver is set to prompt for password (you may need to relog for this to take effect)<br />5. Preferences -> Accounts -> <your user> -> Login Items : Add "Global Hotkey.app"<br />6. Launch the app as wellMariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1149153770926735202006-06-01T11:22:00.000+02:002006-06-01T11:22:50.943+02:00Dapper Drake Final Ready for download!Get it <a href="http://releases.ubuntu.com/6.06/">here.</a>Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1146839997252508862006-05-05T16:16:00.000+02:002006-05-05T16:44:17.933+02:00Free Windows FirewallsIt seems like every year I need to go through this exersize over and over again.<br />The Firewall landscape seems to be like a formicating pool changing goalposts and lanscape as you watch.<br /><br />What was good is now deprecated and vice-versa.<br /><br />I used to prefer AtGuard, but then new exploits came on the scene which it did not catch (Due to some Windows low-level flaws) and the product was discontinued (and later bought by another company and defiled)<br /><br />Then I swote by Tiny Personal Firewall (version 2015a), and that also went the way of the dodo.<br /><br />Then it was Zone Alarm 5 (version 55940).<br /><br />Then it was Kerio Personal Firewall 4.2.3.912.<br /><br />And for the past year I was using Sygate Personal Firewall (which I bought)<br /><br /><br />To my great dismay I have now discovered that Symantec has bought Sygate and basically deprecated the product, and having no great love for Norton/Symantec or MacAfee I started to look for alternative.<br /><br /><br />These are my options now. (in order of preference)<br /><ol><li>Core Force<br /></li><li>ZoneAlarm 55940</li><li>Sygate 5.6</li><li>Tiny Personal Firewall 2015a</li><li>Kerio 4.2.3.912</li><li>AtGuard 322u</li></ol><br /><br />For most people I would suggest ZoneAlarm 5 which can be found at <a href="http://www.oldversion.com/">OldVersion</a>, but if you have a bit of time (at least initially) but want FULL and I mean *FULL!* control over all programs and access on your machine, look no further than Core Force. It may not be as polished as the rest, but it is totally free and massivle configureable.<br /><br />Most of these firewalls and versions can be found using google or on the OldVersions site.<br /><br />My criteria have been:<br /><ul><li>Machine Performance Degredation/Footprint (Sygate was the best here)</li><li>Ease of Use (ZoneAlarm)</li><li>Configureability (Core Force, Sygate, Kerio, Tiny)</li><li>Cost (Can't argue with Free)<br /></li></ul>Any comments welcome.Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1146828003672756622006-05-05T12:55:00.000+02:002006-05-05T13:28:03.913+02:00Creating a SSH tunnel to the internet.Ever been at a client with Orwellian access restrictions on the internet?<br /><br />Why not use what they provide you to the max without cracking their security.<br /><br /><span style="font-weight:bold;">What you will need:</span><br /><br />1. Access/login to a linux machine with ssh running on port 80 (or 443)<br /><br />(See <a href="http://www.unixshell.com/">UnixShell</a> - They're grrreat!)<br /><br />2. The <a href="http://proxytunnel.sourceforge.net/">proxytunnel client program</a>.<br /><br /><br /><span style="font-weight:bold;">Creating the tunnel:<br /></span><br />Firstly you will need to create a TCPIP tunnel through your proxy server. For my example I'm running OS X (on my shiny MacBook Pro).<br /><br />To do this, add the following (2 lines) to your ~/.ssh/config file:<br /><br /><PRE><br />Host shell.my-host.com<br /> ProxyCommand /Users/teuton/bin/proxytunnel -N -p "local-proxy:8080" -u "proxy-user" -s "proxy-pass" -d "shell.my-host.com:443"<br /></PRE><br /><br />Great! We are all set! You may need to tweak these settings depending on your local proxy server type and configuration (NTML auth etc)<br /><br />Now the easy part.<br /><br /><span style="font-weight:bold;">Creating the proxy:</span><br /><br />To ssh into your machine simply type:<br /><PRE><br />> ssh teuton@shell.my-host.com<br /></PRE><br />To make things easier it is advised that you create ssh public and private key pairs and set these up... (see ssh-keygen command, and always check access rights are correct!)<br /><br />Now create a proxy to services you require.<br /><br />The following will create a SOCKS5 proxy for you:<br /><PRE><br />> ssh -N -D 8080 teuton@shell.my-host.com<br /></PRE><br />This will create a tunnel to your remote POP port: (local port 2110)<br /><PRE><br />> ssh -N -L 2110:127.0.0.1:110 teuton@shell.my-host.com<br /></PRE><br />This will create a tunnel to a jabber port at a 3rd party host<br /><PRE><br />> ssh -N -L 6222:jabber.third-party.com:5222 teuton@shell.my-host.com<br /></PRE><br /><br /><span style="font-weight:bold;">How all you need to do is create a script file:<br /></span><br /><PRE><br />~/bin$ cat t<br />#!/bin/sh<br />while true<br />do<br /> ssh -N -L 2143:127.0.0.1:143 -D 8080 teuton@shell.my-host.com<br /> sleep 1<br />done<br /></PRE><br /><br /><span style="font-weight:bold;">And you are set:</span><br /><br />Lastly to configure your applications, just add a SOCKS server entry (no other HTTP/S entries should be added). Some applications may still not work. For these you may need to create custom direct proxies to specified ports.Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1112529153277614302005-04-03T13:50:00.000+02:002005-04-03T14:00:21.106+02:00So which is better? The Sony PSP or the Nintendo DS?I recently went on a trip to Japan, and was faced with a choice on a new handheld gaming device to purchase for a friend.<br /><br />So which is better? What are the differences?<br /><br />First-off, I personally own a Gameboy Advance, and I finally chose to buy the PSP.<br /><br />The reason for the choice was that I already owned both an iPod and a Gameboy Advance, but this friend of mine had neither... so for me the DS may have been a better choice, but only slightly.<br /><br />Firstly the DS:<br /><br />This little machine is slightly heavier than the PSP, but folds away neatly, it's more solid and resiliant, the games are cheap, load fast and can use older Advance cartridges. The screen has a huge surface and the touch screen is really nifty. The technology is way behind the PSP, but it is also about $50 less in price.<br /><br />So this device has a huge advantage with current game availability.<br /><br />It also has a good battery life (something I appreciate after my Japan trip on both my iPod and Gameboy).<br /><br />The PSP:<br /><br />This is a slick-looking device, but unfortunately the screen picks up scratches and fingerprints quickly. The teething problems with the first release has been sorted out, so no more bad buttons and broken pixels. It's battery life is poor, but is expected for the processing it delivers. It's really an amazingly fast little machine... way way way ahead of the DS. The games come on disc (UMD) and can hold a lot more than the DS cartrige, but loads slower (only slightly really) and are more expensive. The PSP seems pretty versatile though and you can easily get games and other software and upload it to the Sony memory stick (of which I have 512Mb and you can also get 1Gb now...).<br /><br />It can also play movies from the disc (or from the memory stick if you (re-)encode and upload it yourself as well as music as MP3 (and some other silly format).<br /><br />It's got WiFi and bluetooth (and I have already updated the firmware to a new version using WiFi without a problem).<br /><br />The screen is brilliantly scrisp and clear, and even though it is smaller in size than the DS's two displays, it's still larger in size than a single DS display and about double or more in resolution than both DS screens combined.<br /><br /><br />Both these devices are good with playing WiFi linked games with multiple players, and the PSP can even 'clone' a game to a second machine allowing you to only need one copy of a game to play multiple players.<br /><br /><br />Overall the PSP is a well-rounded machine with a lot more potential growth. You will see a lot of 3rd party apps being released for it in the near future.<br /><br />If you want something innocuous but reliable and fun nontheless, go for the DS.<br /><br />Just my view.Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1111049829707150582005-03-17T10:57:00.000+02:002005-03-17T10:57:09.706+02:00Japan trip (pt. 1)A bit late, but better late than never...<br /><br />A quick journal of my trip so far:<br /><br />(Times are as per locality)<br /><br />5 March:<br /><br />13:10 Depart from JHB<br /><br />About a 12 hour flight on which I did not sleep and watched many movies...<br /><br />07:00 Arrive in Hong Kong<br /><br />On my first day there, I found my hostel first, dumped all my luggage and started walking.<br />walk walk walk...<br /><br />I tried to stay awake until 11pm and got to bed pretty exhausted.<br /><br />I stayed in Hong Kong for three days, seeing many cool sights and also taking the time to buy a good digital camera (About R5k)<br /><br />Also saw and met some cool Tai-Chi people, and suffered no jet-lag.<br /><br />8 March:<br />11:20 Fly to Tokyo.<br /><br />Arrived at Narita airport, picked up my JR Pass, caught a train, then a bullet train, then another train, and finally a local rapid train.<br /><br />I spend the first two days just eating sushi and planning my next few days...<br /><br />20:00 Finally arrived at my destination... Hozumi. I was picked up at the train station by a friend of Charisse and Jason's called Sumire.<br /><br />10 March:<br />I took some trains to Takayama, a city pretty high up and surrounded by mountains... absolutely lovely. Walking into an antique shop I found a nice go table (Goban). Saw many cool temples and shrines. Higher up the mountains I had to trudge through snow... it being only the second time in my life that I have actually seen snow (this time it was just lying there though...)<br /><br />My path led me up some pretty deserted trails in the mountains (lots of snow... sometimes sunk in up to my knees!) Emerging from a trail there was a welcome restaurant. At this point I should mention that practically no-one speaks English, and that there are none or very few signs in English... this is a Japanese only country... monolinguility? in extreme! I ordered some ramen (yummy!) and some unrefined sake (woot!). After eating I had to rush back to the station to be able to catch my train, as I was not keeping track of time. Fortunately this was not a problem. (The morning train I had missed, but this is really not a big problem since most trains were free for me and they tend to run often...)<br /><br />The most beautiful part of this day-trip I would say was the trip there and back... an expensive (free for me) train through some stunning mountain passes.<br /><br />11 March:<br />Today I visited Nagoya (the closest largish city). This was the first time I got an idea of the sheer scope and popularity of Manga (Japanese comics). 6 floors of comics did the trick. 4 floors of those were purely porn (the Japanese culture is strange... they censor only the genitals... they seem more critical of images than thoughts and meanings. So these comics are pretty damn explicit. An entire floor dedicated to female lesbian porn! (And I don't mean male-centric lesbian porn, guys!) There were also some other stores with more than just manga... they had cels and figurines and some Anime...<br /><br />Anime here seems to be scarcer... also without ANY English whatsoever... so nothing I can really buy. The most I could buy were figurines and cells.<br /><br />Manga is sold EVERYWHERE... in every 7eleven (seven11?), on every station platform and in every street. They get Anime for free on TV, so it's not as big. (For us in SA it is all we really see...)<br /><br />Hmm... perhaps I should make some things clear about their culture...<br /><br />Pachinco centres... these seem to be popular as well... kinda quasi-legal gambling (a recent thing). These parlours have a huge number of metal ball-based machines sticking out like sore thumbs all over the place and basically just making a lot of noise. I really pity the people in these places.<br /><br />Cell-phones. Japanese cell phone networks are TOTALLY incompatible with the rest of the world... they are also way, way ahead of us. The cameras in these phones are 2Megapixel and up... they all get upgraded CONSTANTLY. About half the people I see who aren't otherwise occupied are always busy on their phones... I've even heard of girls text-ing away on two phones AT THE SAME TIME!<br /><br />Also, second-hand does not exist... people just don't really buy second had stuff... so it's pretty cheap!<br /><br />You only get antiques and recycled goods.<br /><br />Anyway... back to Nagoya... only Charisse and I went, and met a friend of theirs names Kobus (a SA ex-RAU student basically doing a thesis... quite an interesting chap.). Charisse had to leave early, so Kobus took us around some shops and later left me to my own devices.<br /><br />(He also helped me buy a Japanese/English translator... quite an amazing little device really...)<br /><br />After wandering around a bit more in the rain, I decided to call it quits and go home. I took a subway train to the main Nagoya station, and instead of going home I decided to check out an electronics store close to the station first... wow! (this was not an exceptional store either!) It was about 7 floors of electronics!<br /><br />I did not stay long, and left for Nagoya station again after which I went home to Hozumi.<br /><br />12 March:<br /><br />Today I drove to an interesting place... got a good idea of the traffic here. I went to visit a place called <br />'The Site of Reversible Destiny'<br />Which was an exercise in architecture and geometry and how it can confuse the senses... look it up on the net!<br /><br />Nothing much else done... only a cool party in the evening.<br />This part ended at a Karaoke bar... I was pretty amazed at the selection available... even had some Nine Inch Nails... but I refrained from doing these. -grin-<br /><br />One of the guys there even did the Cowboy Bebop theme song (just for me -grin-). A cool thing is that he (Hideki Kudomi) was a character designer on the 'Real Myst' game! His business card looks sooo cool!<br />:)<br /><br />13-16 March:<br /><br />I decided to tour a little... first I went to Kyoto. There I visited some temples and castles and shrines and basically just walked and walked and walked. I stayed for two nights there. I also tracked down and found a Go salon... had a quick game or two (or three).<br /><br />Then I left for Osaka... here I just experience the city some... nothing really special... like Tokyo (which I'm still to visit) just less so. (Still quite impressive and intimidating)<br /><br />I only stayed here for one night (uncomfortably) in a capsule hotel (missed the 'Love Hotel' experience!). It's really just a little capsude (with lights, TV, clock).<br /><br />The next day I decided I had had enough of Osaka, and on a whim decided to visit Hiroshima. Well... It was a wise thing to do. It was awesome! It was also pretty warm... I only needed a T-shirt! <br /><br />Hiroshima was the bomb, Baby!<br />;)<br />It was also quite toasty... -grin-<br /><br />-cough-<br /><br />Anyway... city is of great cultural and historical significance... it symbolises one of the greatest lows of the USA. Quite a moving moment to have been to ground zero (IQ).<br /><br />Having had enough of this... I head back to Hozumi (Read: Home)<br /><br />17 March: (Today)<br /><br />Wrote this blog and did some future (financial) planning.<br /><br />I'm going to buy the Goban tomorrow and investigate ways of getting it back to ZA. I've also booked for my stay in Tokyo (4500 yen per night) and needed to borrow some cash from Jason.<br /><br />Ah, yes... Japan does not DO credit cards... Hmm... there are *some* vendors in Tokyo, but in general they seem like a pretty isolated country.<br /><br />They have all the big brand stores here... much more quality stuff than SA could ever have, yet they are missing something. They seem more concerned with images and appearances than in quality and meaning... at least that is the modern youth's view.<br /><br />They are more first world than I have even seen in Europe, yet I feel it is a step back, somehow... I sound like I am contradicting my own words, yet this is how I can best describe Japan.<br /><br />Anyway... off I am.Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1105350414466021852005-01-10T11:37:00.000+02:002005-01-10T11:46:54.466+02:00Avoid: "The Incredibles" for MacI bought a friend of mine "The Incredibles" for Christmas. It seems he was having some trouble getting the game to run, reporting that it switched resolutions and seemingly did not want to start running at all otherwise.
<br />
<br />He is using a dual G5 desktop Apple Mac, running OS X version 10.3.5. (fully patched)
<br />
<br />It's a pretty standard machine with no additional hardware or software.
<br />
<br />The strange thing is that the official site does not even recognise that the game runs on the Mac at all! This I find pretty worrying!
<br />
<br />See: http://www.thq.com/
<br />
<br />I've seen other people on the net having similar problems, but no solutions are forthcoming... if anyone has a solution, please post it here!
<br />
<br />One thing I have seen that is a similarity is the fact that both machines are Dual CPU machines.
<br />
<br />And as well all know, Apple's Java seems to be vulnerable to a user space system panic on dual CPU machines via some name lookup problem. (See Azureus forums)
<br />
<br />So as I know of both G4 and G5 dual CPU owners having similar problems, I'm thinking it may be related.
<br />
<br />I'm sorta glad Disney and Pixar are splitting soon, as Disney only seems to tarnish the Pixar/Apple name.
<br />(light jab)
<br />
<br />
<br />Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1103971046017443682004-12-25T13:22:00.000+02:002004-12-25T12:37:26.016+02:00Why torrent low-ratio banning is killing the network and is generally a bad idea.It seems a growing trend for people to get banned for low share ratios.
<br />
<br /> Now I can understand how this would appeal to some people`s sense of (in)justice as there are people out there who do not understand that not sharing while you download will ultimately make you download yours slower as you supply bits to other people who would otherwise been supplied by the seeder, making it possible for you to download from open slots at the seeder. These are typlically low-intellect `kiddies` who don`t do math and then download hacked clients because they are just stupid.
<br />
<br /> I agree that these people are evil.
<br />
<br /> But putting a share-ratio of 0.9 and higher as mandatory is just insane. (IMHO 0.1 is the absolute maximum)
<br />
<br /> Take the following example (using mathematical induction and taking values to extremes) if I limited my download to 1k/s and my upload to 25k/s (I have a 256/256 connection) my share ratio inexorably tends to go to sub-1.0. In fact, I find that only the T1 people seems to get any use out of these torrents. I start on the same torrent as everyone else, and I seed like crazy, but even so, those 30 people I started together with on the torrent all have the file completely downloaded within the first hour, and I still download the file for the next day at a measly 20k/s. So no matter HOW much I share and am willing to contibute, it seems I cannot win. (Yes, about all of those 30 people have high bandwidth, as most lower bandwidth users have already fallen prey to this)
<br />
<br /> In a way these torrent sites seem to be quite similar in nature to pyramid schemes where the rich only get richer and feed off the poor, ignorant and innocent. (Hehe... which am I?)
<br />
<br /> I joined p2p, and not understanding the low-ratio banning for lack of contemplation I was excited about the whole prospect of torrents. It seems now, however, that only the people creating the site and it's rules who, togther with a few select users, have the download (yes download) and upload bandwidth capacity to be able to stay in the black. The other poor fools who always seem to come at the end of torrents and never are able to seemingly finish downloading torrents as they are always the last in the queue, only serve to help the file spread a bit for those big users.
<br />
<br /> The two things that are equally bad to torrents in general are idiotic leechers, and pedantic rules.
<br />
<br /> I`ve just joined this eFarm and read the usuage policy/guide, and was dismayed to find these rules here as well.
<br />
<br /> I initially got invited here as I want to promote art/horror/noir/cult/foreign movies by seeding these. I`m not really interested in general releases, but would probably partake in spreading some of those as well) The only thing keeping me back is the general difficulty of creating torrent releases as I do not just re-seed scene ones like most other people, but have many of my own hard-to-find and not-released-by-local-distributor releases. For a list of what I`m talking about:
<br />
<br /> <a href="http://www.mediachest.com/users/lailoken/dvds.html">http://www.mediachest.com/users/lailoken/dvds.html</a>
<br />
<br />(In my country the film industry is controlled by only two companies who have not sense of what art-films are supposed to be about... and thus refuse to ever supply anything of real value)
<br />
<br /> And delaying low-ratio users will only exacerbate their situation, and they can just as well quit.
<br />
<br /> Let`s hope these views start a constructive conversation and not a flame war. It is a difficult problem to solve, but "cutting off one's nose" is not the ultimate solution. It's like using `chemo` to treat cancer when there *is* a cure...
<br />
<br />
<br />
<br />Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1102592566129271442004-12-09T13:31:00.000+02:002004-12-09T13:42:46.130+02:00Firefox Tweaks/Speed-upsThese options can go into the user.js file, or can be set from the 'about:config' url.
<br />
<br />(Editing the user.js file may need to be done when FireFox is not running)
<br />(Editing the about:config may require a FireFox restart)
<br />
<br />
<br />Speed-ups:
<br />
<br /> user_pref("network.http.max-connections", 128);
<br /> user_pref("network.http.max-connections-per-server", 48);
<br /> user_pref("network.http.max-persistent-connections-per-proxy", 24);
<br /> user_pref("network.http.max-persistent-connections-per-server", 12);
<br />
<br /> // Enable pipelining:
<br /> user_pref("network.http.pipelining", true);
<br /> user_pref("network.http.proxy.pipelining", true);
<br /> user_pref("network.http.pipelining.maxrequests", 100);
<br />
<br />
<br />Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1102591751494922322004-12-09T13:27:00.000+02:002004-12-09T13:29:11.493+02:00Firefox: Open diverted links in new background tab instead of new window<span style="font-weight: bold;">This has frustrated me for a long time... something I really liked about Opera.
<br />
<br /></span>Go to 'about:config' url and set:
<br />
<br />browser.tabs.loadInBackground to true (should be already)
<br />browser.tabs.showSingleWindowModePrefs to true
<br /><div id="mb_0">browser.tabs.loadDivertedInBac<wbr>kground to true
<br />
<br />Then in advanced preferences is a new option:
<br /> 'Force links that open a new window to:'
<br />
<br />can be used for immesdiate effect.
<br />
<br /></div> Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1101743644764134512004-11-29T17:48:00.000+02:002005-05-24T08:53:30.496+02:00VMWare referral discount codeI thought I would try this since I really do think VMWare is the best thing since sliced potatoes.<br /><br />If you want a 5% discount toward buying VMWare Workstation 4.x, (perhaps ESX and GSX server as well) then just use this referral code during the checkout phase:<br /><br />VMRC-MARVAN882<br /><br />Edit: Seems to work for VMWare 5.0 as well!<br /><br />I've been doing all my major development in Windows 2000 and RedHat VMWare sessions, and even though I have changed desktop PCs multiple times and re-installed even more times, I have always had a stable and CLEAN development (compile/link/build and test ISO) environment.<br /><br />This will save you many hours, as well as the extra cost of hardware.<br /><br />Don't even bother with other products (unless you need something like VirtualPC for the Mac).<br /><br />Have fun!<br /><br />Marius.Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.comtag:blogger.com,1999:blog-7464311.post-1101723207401950262004-11-29T13:13:00.000+02:002004-11-30T13:42:43.600+02:00What a week-end.Well, this week-end started off with a bang. First I had the EPI-USE year-end function: a dangerously silly-sounding theme of 50s, 60s and 70s. I had a shower and then took a nap, hoping beyond hope for fate to take a hand and cause me to oversleep and miss it. But then Aubrey phoned and chided me into going after all. (By that time I was already 30 minutes late, but found this not to be a problem since everyone else was).
<br />
<br />Well, the party turned out to be entertaining, and I could at least squeeze out a "Jean Genie" from the Jukebox.
<br />
<br />I left early (11pm) with some friends, and went to my place to watch "Princess Bride", chat some and watch some music videos, talk and drink coffee.
<br />
<br />Got to bed at only 2am.
<br />
<br />Saturday after I got back from the 'boere-mark' having bought loads of berries, I decided to clean out my place, and I practically got rid of half my furniture. I drove around like a crazy looking tor places selling leather couches, and finally went home. The evening I went to Menlyn shopping centre, and true to self, impulsively bought a neat 3-seater plush leather couch. Yummy... (will only get it in Feb. though) I felt so flamboyant, that afterward I went to dine (without a reservation!) at 'La Madeleine' with by best friend.
<br />
<br />Sunday started with the holistic fayre (an essoteric fair) where I had my eyes examined by an Iridologist who likened me to a stud bull.... Hmm...
<br />
<br /><pre>| (__) [@@] ? (__) ? (__)
<br />| (oo) <=|^^|=> ? (oo) ? |\/|(oo)
<br />| /-------VV /--------- \/ /-------\/ /--| \--\/
<br />| / | || / | || / | || / | ||
<br />|* ||----|| / | || * ||----|| * ||----||
<br />| ^^ ^^ * ||------|| ^^ ^^ ^^ ^^
<br />| ^^ ^^
<br />| Cownt Dracula Francownstein Where Cow Cow bird
<br />| Cow </pre> -grin-
<br />
<br />After the fair I got rid of most of my furniture with the help of Aubrey, after which I rushed to the gym and had a grueling session of squash (of which I lost 6 games out of 6)
<br />
<br />Also quickly played 2 Go games against Riaan... one even, the other with 6 stones handicap... beat him both times by about 35 points.
<br />
<br />Then went home and slept.
<br />
<br />Well, nothing more to report...
<br />
<br />Mariushttp://www.blogger.com/profile/17769862029472245291noreply@blogger.com