<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0"><channel><title>Caramboo Dot Com</title> <link>http://caramboo.com</link> <description>The Web Log  (b-log) of Dave Naylor</description> <lastBuildDate>Wed, 10 Mar 2010 13:22:54 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CarambooDotCom" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="caramboodotcom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">CarambooDotCom</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item><title>Wordpress Remote Cron-Scheduling</title><link>http://caramboo.com/2010/03/wordpress-remote-cron-scheduling/</link> <comments>http://caramboo.com/2010/03/wordpress-remote-cron-scheduling/#comments</comments> <pubDate>Wed, 10 Mar 2010 13:13:13 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[Wordpress]]></category><guid isPermaLink="false">http://caramboo.com/?p=698</guid> <description><![CDATA[I host several Wordpress sites on my Linode VPS, some of which are quite active and others that are for development purposes or just generally quiet.  The VPS itself runs Debian Lenny and the sites are served by Apache, reverse proxied from Nginx.  It&#8217;s a little bit over-complicated but the set-up is sweet, [...]]]></description> <content:encoded><![CDATA[<p>I host several <a
href="http://wordpress.org/">Wordpress</a> sites on my <a
href="http://www.linode.com/?r=38744316d36d5ae18473ba72c2b14b29aef23512">Linode VPS</a>, some of which are quite active and others that are for development purposes or just generally quiet.  The VPS itself runs <a
href="http://www.debian.org/">Debian Lenny</a> and the sites are served by Apache, reverse proxied from Nginx.  It&#8217;s a little bit over-complicated but the set-up is sweet, fast and until a few months ago, really stable.</p><p>However, sometime at the start of the year, Apache would sometimes throw a wobbler during the night here in the UK.  Perhaps one day in 14 I&#8217;d get up and find my VPS slowed to a crawl; the culprit would be Apache hogging the CPU.  Ouch!  Restarting the Apache process would calm things down and I didn&#8217;t need to reboot but obviously something was awry.</p><p>At first I thought that the problem was an Apache misconfiguration.  I focused my attention on a few segments of the main Apache configuration file and fiddled with these as follows:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p698code5'); return false;">View Code</a> APACHE</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p6985"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td
class="code" id="p698code5"><pre class="apache" style="font-family:monospace;">&lt;<span style="color: #000000; font-weight:bold;">ifmodule</span> mpm_prefork_module&gt;
    <span style="color: #00007f;">StartServers</span>          <span style="color: #ff0000;">3</span>
    <span style="color: #00007f;">MinSpareServers</span>       <span style="color: #ff0000;">3</span>
    <span style="color: #00007f;">MaxSpareServers</span>       <span style="color: #ff0000;">7</span>
    <span style="color: #00007f;">MaxClients</span>           <span style="color: #ff0000;">20</span>
    <span style="color: #00007f;">MaxRequestsPerChild</span>  <span style="color: #ff0000;">1000</span>
&lt;/<span style="color: #000000; font-weight:bold;">ifmodule</span>&gt;
&lt;<span style="color: #000000; font-weight:bold;">ifmodule</span> mpm_worker_module&gt;
    <span style="color: #00007f;">StartServers</span>          <span style="color: #ff0000;">2</span>
    <span style="color: #00007f;">MaxClients</span>          <span style="color: #ff0000;">150</span>
    <span style="color: #00007f;">MinSpareThreads</span>      <span style="color: #ff0000;">25</span>
    <span style="color: #00007f;">MaxSpareThreads</span>      <span style="color: #ff0000;">75</span> 
    <span style="color: #00007f;">ThreadsPerChild</span>      <span style="color: #ff0000;">25</span>
    <span style="color: #00007f;">MaxRequestsPerChild</span>   <span style="color: #ff0000;">0</span>
&lt;/<span style="color: #000000; font-weight:bold;">ifmodule</span>&gt;</pre></td></tr></table></div><p>This didn&#8217;t do the trick (although the configuration is sound).  I decided to trawl through my log-files and found that since most of my visitors are UK based, the sites were generally quiet during the UK night.  However, around 6.00am, I&#8217;d get hit with a plethora of robots from all over the place wanting to spider my site.  So that&#8217;s a good thing yeah?  Well not in my case. It was around this time that my VPS would go wonky.</p><p>I wondered about the Wordpress pseudo-cron facility.   Wordpress can perform tasks on your site(s) at pre-determined times but in the absence of a real cron, the task is triggered on the next page load after the scheduled time has passed.</p><p>I run several time dependent plug-ins on my sites such as Lifestreams, RSS feeds and Caches, so if these weren&#8217;t going to run until a page load, and there were next to no page loads in the night, then when the robots came-a-calling, all the cron jobs across several sites would trigger at the same time.  So I thought about a solution and came up with:</p><ul><li>Disabling the Wordpress pseudo-cron</li><li>Enabling a remote cron where I could control the time schedule</li></ul><h3><em>Disabling the Pseudo-Cron</em></h3><p>This is easy.  All you need to do is add this code-snippet into your wp-config.php file:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p698code6'); return false;">View Code</a> INI</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p6986"><td
class="line_numbers"><pre>1
</pre></td><td
class="code" id="p698code6"><pre class="ini" style="font-family:monospace;">define<span style="">&#40;</span>'DISABLE_WP_CRON', true<span style="">&#41;</span><span style="color: #666666; font-style: italic;">;</span></pre></td></tr></table></div><p>Once added, that&#8217;s it.  Wordpress doesn&#8217;t run its cron on page loads.  OK, so now we need to run a real cron.  I run mine from a remote server like so:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p698code7'); return false;">View Code</a> BASH</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p6987"><td
class="line_numbers"><pre>1
</pre></td><td
class="code" id="p698code7"><pre class="bash" style="font-family:monospace;"><span style="color: #000000;">0</span>,<span style="color: #000000;">30</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-O</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null http:<span style="color: #000000; font-weight: bold;">//</span>foobar.com<span style="color: #000000; font-weight: bold;">/</span>wp-cron.php?doing_wp_cron <span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span></pre></td></tr></table></div><p>The above crontab entry runs the Wordpress cron every 30 minutes, on the hour and on the half-hour.  That&#8217;s easy for me since I have a remote shell account.  If you don&#8217;t or the world of crontabs is a little bit mysterious to you, you can get a free web based cron account here:<br
/> <a
href=" http://www.mywebcron.com/"></p><p>http://www.mywebcron.com/</a></p><p>Once you&#8217;ve set-up your freebie account you can configure your cron call thus:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p698code8'); return false;">View Code</a> BASH</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p6988"><td
class="line_numbers"><pre>1
</pre></td><td
class="code" id="p698code8"><pre class="bash" style="font-family:monospace;">http:<span style="color: #000000; font-weight: bold;">//</span>foobar.com<span style="color: #000000; font-weight: bold;">/</span>wp-cron.php?doing_wp_cron</pre></td></tr></table></div><h3><em>Nice and Stable</em></h3><p>Good news.  Since employing the above strategy, Apache is behaving itself and my sites achieved a 100% uptime during February.  There is one little caveat to this news though.  At the same time as making these changes to my system, I also installed <a
href="http://mmonit.com/monit/">Monit</a>:</p><blockquote><p>Monit is a free open source utility for managing and monitoring, processes, files, directories and filesystems on a UNIX system. Monit conducts automatic maintenance and repair and can execute meaningful causal actions in error situations.</p></blockquote><p>What all that means is that if Apache does misbehave, Monit will gracefully restart the process and notify me.  Since I installed it, Monit hasn&#8217;t had to do anything because my system has been OK but it&#8217;s a useful addition to my uptime bragging ability!  I&#8217;ll write about Monit in another post.</p> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2010/03/wordpress-remote-cron-scheduling/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Another Look</title><link>http://caramboo.com/2010/03/another-look/</link> <comments>http://caramboo.com/2010/03/another-look/#comments</comments> <pubDate>Thu, 04 Mar 2010 08:56:42 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[Web]]></category><guid isPermaLink="false">http://caramboo.com/?p=690</guid> <description><![CDATA[I&#8217;ve decided to adopt Ian Stewart&#8217;s Kirby theme while I work on another look for my site.  I think I prefer the smash down what was there before and rebuild method rather than a smooth transition.  So this theme is meant to be a starting point for people new to Wordpress and was [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;ve decided to adopt Ian Stewart&#8217;s Kirby theme while I work on another look for my site.  I think I prefer the <em>smash down what was there before and rebuild</em> method rather than a smooth transition.  So this theme is meant to be a starting point for people new to Wordpress and was designed by Ian as a potential default theme for Wordpress 3.0.  So it seems like a good set of clothes to wear while I work away in the background.</p><p>Anyway, I&#8217;ll do a new theme (most likely child-theme) by the end of the month.</p> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2010/03/another-look/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>My Blogging Future</title><link>http://caramboo.com/2010/02/my-blogging-future/</link> <comments>http://caramboo.com/2010/02/my-blogging-future/#comments</comments> <pubDate>Wed, 03 Feb 2010 21:21:57 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[Featured]]></category> <category><![CDATA[Stuff]]></category><guid isPermaLink="false">http://caramboo.com/?p=648</guid> <description><![CDATA[I think I'm at a bit of a blogging crossroads.  I've said it many times before but the real buzz I get out of blogging is the behind the scenes techy side of things.  I love to get various bits of software working and then spend ages fine tuning all the settings.  I then blog for a week or two with my new toy before I get bored.  So it's got me thinking of what to do in the future.  Should I carry on, should I sack it all off and just spout off on Twitter or should I reassess my position and move into something a bit different.]]></description> <content:encoded><![CDATA[<p>I think I&#8217;m at a bit of a blogging crossroads.  I&#8217;ve said it many times before but the real buzz I get out of blogging is the behind the scenes techy side of things.  I love to get various bits of software working and then spend ages fine tuning all the settings.  I then blog for a week or two with my new toy before I get bored.  So it&#8217;s got me thinking of what to do in the future.  Should I carry on, should I sack it all and just spout off on <a
href="http://twitter.com/caramboo">Twitter</a> or should I re-assess my position and move into something a bit different.</p><h3>I Don&#8217;t Do Diaries</h3><p>I&#8217;ve never been one to keep a paper diary.  You know the <em>&#8220;Dear Diary, today I discovered what&#8217;s been missing from my life&#8230;&#8221;</em> kind of thing.  I&#8217;ve always been too busy actually doing things rather than writing about them.  All my best experiences and images I&#8217;ve seen are in my head and I don&#8217;t really feel the need to write about it too much.  So that&#8217;s got me questioning the need to write about things I do on a daily basis on-line on a blog, on here.   Who cares about my trip to town, my evening in the pub or how I love my cat?  I wouldn&#8217;t if I was someone else.  All the dross and random shit in my life gets recorded on <a
href="http://twitter.com/caramboo">Twitter</a> anyway and therefore it also appears on my <a
href="http://caramboo.com/lifestream">Lifestream Page</a>.</p><p>I think the removal of the feeling that &#8220;<em>I should really do a blog entry today&#8230;</em>&#8221; will allow me to get other things done.</p><h3>Multiple Interests</h3><p>I think one of the reasons that I don&#8217;t write on my site too much is that I have conflicting or perhaps too many interests.  I enjoy:</p><ul><li>Techy stuff, mainly Linux related</li><li>Web Development, particulary Wordpress</li><li>Sport. Cricket, Rugby, sometimes Football</li><li>Horse Racing, including betting</li><li>Photography, both taking photos and post production</li><li>English, punctuation pedantry and use/misuse</li><li>Politics, I think I&#8217;m a closet Marxist (a bit)</li><li>Films</li><li>Music and Music Festivals (<em>well OK just Glastonbury these days</em>)</li><li>Having just bought a new mountain bike, cycling</li></ul><p>So what I&#8217;m thinking is that I really should departmentalise my blogging.  Maybe have a page that&#8217;s a focal point for everything I get up to on-line.  Sort of like a portal to everything that&#8217;s me.  If that&#8217;s not too narcissistic.  I&#8217;m going to mull it over and perhaps come up with something in the next few weeks.  I&#8217;ve got a bit of time on my hands coming up anyway so maybe this is a good time to shake off the cobwebs!</p> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2010/02/my-blogging-future/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Oh Shit, I’m Going Veggie</title><link>http://caramboo.com/2009/12/oh-shit-im-going-veggie/</link> <comments>http://caramboo.com/2009/12/oh-shit-im-going-veggie/#comments</comments> <pubDate>Thu, 31 Dec 2009 13:56:03 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[Stuff]]></category><guid isPermaLink="false">http://caramboo.com/?p=645</guid> <description><![CDATA[The title of this post says it all really but it's true, I've decided to <em>go veggie</em> in the new year.  I realise that I'm not the first person to make the change after a lifetime of meat eating and even last night I tucked into a Thai Chicken Curry.  I'll probably be eating some form of meat tonight at the dinner party we're attending but when the clock strikes 12 that's it.  Goodbye chicken, beef, pork, fish and all.  So what's the deal, why am I making what amounts to a lifestyle changing decision?]]></description> <content:encoded><![CDATA[<p>The title of this post says it all really but it&#8217;s true, I&#8217;ve decided to <em>go veggie</em> in the new year.  I realise that I&#8217;m not the first person to make the change after a lifetime of meat eating and even last night I tucked into a Thai Chicken Curry.  I&#8217;ll probably be eating some form of meat tonight at the dinner party we&#8217;re attending but when the clock strikes 12 that&#8217;s it.  Goodbye chicken, beef, pork, fish and all.</p><p>The weird thing is, I like meat.  A meal without the central focus of meat or fish is something I always find a bit bland.  Even things like pizzas always seem to be missing something when there isn&#8217;t any ham or pepperoni etc.  I think it might be in my mind because I was brought up believing that the meat in a meal was the most important aspect of the food placed before me.  If I was full I could leave stuff as long as I ate the meat.   I even think I eat in a particular way that pays homage to the steak of pork chops on my plate. That&#8217;s going to go in (<em>checks clock</em>) a little over 12 hours time.  Eeek!</p><p>So what&#8217;s the deal, why am I making what amounts to a lifestyle changing decision?  Here are a few random things that have influenced me:</p><ul><li>I like animals.  Especially cats.  Particularly our cat George.  I think I&#8217;m a bit obsessed with his well being and I like the fact that we got him from a rescue centre.  We saved him and that&#8217;s cool.  So, how can I justify loving my Georgey so much and then tuck into, for example, Roast Duck.  I mean, I like ducks!  I was watching an Animal Rescue program on telly the other day and this RSPCA guy was trying to capture an injured duck on a riverbank.  The guy got the duck and they sorted out the injury.  Hurrah.  Except I also like to <strong>eat</strong> duck.  Imagine some alien observers watching our day to day goings on.  RSPCA guy saving a duck in one scene while a restaurant serves up duck in another.  The aliens would think we were crazy and hypocrites.  We probably are.</li><li>A few years ago I had to frequently visit a slaughterhouse.  I always felt really uneasy about it.  On one occasion I found myself at the rear of the building and I saw a little fenced off area containing several lambs.  They were all looking at me and behind them was a green door.  On the other side of the door was death.  Not good.  During the same period in my life I would often follow vehicles carrying large amounts of chickens.  All piled on top of each other and they&#8217;d be staring out at me not knowing what was going on.  They were on their way to the chicken processing factory.  Not good.</li><li>In another period of my life I attended quite a few human post mortems.  I&#8217;ve seen human bodies of all ages sawn open and witnessed the removal of vital organs.  Once the internals are out, you may as well be at the butchers counter in Sainsbury&#8217;s.  There&#8217;s no difference.  So whenever I have to cut up chicken or beef, I wonder what my reaction would be if I were cutting up human flesh.  Chicken = OK, Human = Throwing up.  But there&#8217;s no difference, meat is meat.</li><li>If I were marooned on a desert island and had to kill to stay alive, I could probably bring myself to do it, even if I wouldn&#8217;t like it.  Could I accompany say Jamie Oliver to a farm, select a goat, kill it and then cook it?  Not a bloody chance.  Can I go to the supermarket and buy a joint of beef where it&#8217;s all sanitised and the death and slaughter is kept hidden from me.  Course I can.  More hypocrisy.</li><li>I know animals kill other animals for food, I know there&#8217;s a food chain and we&#8217;re at the top.  I know my rejection of meat isn&#8217;t going to change the world.  It&#8217;s my choice though and I don&#8217;t want to eat something that has a face and eyes and can look at me.</li><li>Of course there are a few other reasons to turn veggie, such as green issues.  Fewer cattle means less carbon emmisions and more grain for humans.  I understand all that.  There&#8217;s the health advantage from not eating red meat etc.  I understand all that too.  They aren&#8217;t my reasons though.  My carbon footprint is a bit shite due to my techy interests and I can&#8217;t claim health reasons since I probably knock days off my life every time I quaff copious amounts of Brothers Cider.</li><li>So how about eating <em>lesser</em> animals.  Like prawns and lower life forms.  Well, I have a problem with that too.  Where do you draw the line.  Who decides what&#8217;s on my vegetarian Schindler&#8217;s list.  So I&#8217;m not drawing the line.  No animals directly or indirectly.  I will drink milk though.  That&#8217;s going to make me a lacto-vegetarian apparently.</li><li>I&#8217;ve also started to think about animal products that I don&#8217;t eat.  Leather springs to mind.  So I&#8217;m going to avoid leather products as well.  I&#8217;m not going to throw out all my belts and shoes but after mid-night tonight I won&#8217;t buy any more.</li></ul><p>I realise that my life is going to be a bit more complicated from now on.  People are going to have to go out of their way to accommodate me.  I&#8217;m going to have to work a bit harder to find tasty nutritional meals and I&#8217;ll be scouring the ingredient panels on food I buy but I&#8217;m up for the challenge.  There will be things I&#8217;ll really miss. <a
href="http://twitter.com/milliesmum">@MilliesMum</a> has agreed to join me but I don&#8217;t <em>think</em> she&#8217;ll go the distance.  Perhaps I won&#8217;t but I&#8217;m going to try my hardest to give it a good go.</p><p>It&#8217;ll give me a few things to write about on here anyway!</p> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2009/12/oh-shit-im-going-veggie/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Lies – Episode One</title><link>http://caramboo.com/2009/12/lies/</link> <comments>http://caramboo.com/2009/12/lies/#comments</comments> <pubDate>Thu, 24 Dec 2009 16:07:39 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[Stuff]]></category><guid isPermaLink="false">http://caramboo.com/2009/12/24/lies/</guid> <description><![CDATA[Great video from John McClure and Heskey Tucker:]]></description> <content:encoded><![CDATA[<p>Great video from John McClure and Heskey Tucker:</p><p><object
width="580" height="469"><param
name="movie" value="http://www.youtube.com/v/UjlZ0Y6k7Yk&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param
name="allowFullScreen" value="true"></param><param
name="allowScriptAccess" value="always"></param><embed
src="http://www.youtube.com/v/UjlZ0Y6k7Yk&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="580" height="469"></embed></object></p> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2009/12/lies/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Cold Blooded Christmas</title><link>http://caramboo.com/2009/12/cold-blooded-christmas/</link> <comments>http://caramboo.com/2009/12/cold-blooded-christmas/#comments</comments> <pubDate>Thu, 24 Dec 2009 11:30:48 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[Music]]></category><guid isPermaLink="false">http://caramboo.com/?p=642</guid> <description><![CDATA[I really love the Christmas message in this video.  Click through to see it.  John Lajoie, you rock!]]></description> <content:encoded><![CDATA[<p>I really love the Christmas message in this video.  Click through to see it.  John Lajoie, you rock!</p><div
style="margin: 0 0 18px 50px"> <object
width="500" height="405"><param
name="movie" value="http://www.youtube.com/v/23cjXModWpA&#038;hl=en_GB&#038;fs=1&#038;rel=0&#038;border=1"></param><param
name="allowFullScreen" value="true"></param><param
name="allowscriptaccess" value="always"></param><embed
src="http://www.youtube.com/v/23cjXModWpA&#038;hl=en_GB&#038;fs=1&#038;rel=0&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></div> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2009/12/cold-blooded-christmas/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Advent Conspiracy</title><link>http://caramboo.com/2009/12/advent-conspiracy/</link> <comments>http://caramboo.com/2009/12/advent-conspiracy/#comments</comments> <pubDate>Mon, 21 Dec 2009 10:32:42 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[I Hate Christmas]]></category> <category><![CDATA[advent conspiracy]]></category><guid isPermaLink="false">http://caramboo.com/?p=637</guid> <description><![CDATA[I really like the message in this video.  OK, it may be surprising for me to post a video that contains a religious theme but I think the same way as the authors, apart from the God/Jesus bits:
]]></description> <content:encoded><![CDATA[<p>I really like the message in this video.  OK, it may be surprising for me to post a video that contains a religious theme but I think the same way as the authors, apart from the God/Jesus bits:</p><div
style="margin: 0 0 18px 50px"> <object
width="480" height="385"><param
name="movie" value="http://www.youtube.com/v/eVqqj1v-ZBU&#038;hl=en_GB&#038;fs=1&#038;rel=0"></param><param
name="allowFullScreen" value="true"></param><param
name="allowscriptaccess" value="always"></param><embed
src="http://www.youtube.com/v/eVqqj1v-ZBU&#038;hl=en_GB&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></div> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2009/12/advent-conspiracy/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Reason 12: Illuminating Chez Vous</title><link>http://caramboo.com/2009/12/reason-12-illuminating-chez-vous/</link> <comments>http://caramboo.com/2009/12/reason-12-illuminating-chez-vous/#comments</comments> <pubDate>Sat, 19 Dec 2009 17:17:37 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[I Hate Christmas]]></category> <category><![CDATA[christmas]]></category> <category><![CDATA[decorations]]></category> <category><![CDATA[lights]]></category><guid isPermaLink="false">http://caramboo.com/?p=631</guid> <description><![CDATA[I once registered the domain name tackyxmas.co.uk with the plan of taking photos of people&#8217;s exterior Christmas lights.  I was then going to upload the pictures to a website for viewing pleasure.  Once I&#8217;d set things in motion I realised that despite my misgivings about the lighting displays themselves, it might be considered [...]]]></description> <content:encoded><![CDATA[<p>I once registered the domain name tackyxmas.co.uk with the plan of taking photos of people&#8217;s exterior Christmas lights.  I was then going to upload the pictures to a website for viewing pleasure.  Once I&#8217;d set things in motion I realised that despite my misgivings about the lighting displays themselves, it might be considered a bit offside putting images of peoples homes on-line.  So I abandoned the idea, which was a shame.</p><p>The thing is, the way people are decorating their houses is getting way out of hand.  The entire frontage of their homes are strewn with an array of light strings; fake animals, generally reindeer and the odd huge Father Christmas (<em>Coca-cola variety, obviously</em>).  What are they trying to achieve?  It strikes me that it&#8217;s nothing more than <em>Beat the Joneses</em>.  John Jones up the street has an impressive display, right, I&#8217;m going even bigger.</p><p>What has any of this got to do with Christmas anyway.  Let&#8217;s celebrate the alleged birthday of Jesus by sticking hundreds if not thousands of light bulbs on the outside of our house.  In fact let&#8217;s do it just after bonfire night, that way we can get that warmy fuzzy Christmassy feeling for about seven weeks.  Nice.  We can conveniently forget about green issues for the festive period.  Instead of switching stuff off to do our bit to save the planet, we can switch shit loads more stuff on!</p><p>Oh that last paragraph just made me think about something.  I bet those people who do illuminate their homes have a green waste wheely bin.  Can you imagine the ridiculous idea of someone taking their cardboard and paper and plastic out to their green wheely bin whilst at the same time lit up by their festive display.  It sounds ridiculous doesn&#8217;t it but it <em>will</em> be happening, you just know it.  Amazing.  I&#8217;m going to keep on the look-out in the next few weeks to try and see that situation with my own eyes.</p><p>I hate Christmas</p><p><span
class="siggy">Dave</span></p> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2009/12/reason-12-illuminating-chez-vous/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Catch-Up</title><link>http://caramboo.com/2009/12/catch-up-2/</link> <comments>http://caramboo.com/2009/12/catch-up-2/#comments</comments> <pubDate>Fri, 18 Dec 2009 13:05:58 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[Stuff]]></category><guid isPermaLink="false">http://caramboo.com/?p=626</guid> <description><![CDATA[It wasn't really the plan was it but I've let a few weeks slip by without writing on the main part of my blog.   As usual a few <em>real world</em> issues got in the way.   So I thought I'd do a quick catch up post, I may write separately about one or two of the topics but for now:]]></description> <content:encoded><![CDATA[<p>It wasn&#8217;t really the plan was it but I&#8217;ve let a few weeks slip by without writing on the main part of my blog.   As usual a few <em>real world</em> issues got in the way.   So I thought I&#8217;d do a quick catch up post, I may write separately about one or two of the topics but for now:</p><h3>Oxford University</h3><p>My youngest daughter Rebecca was invited to Oxford University for an interview.  She&#8217;d applied to read English there.  Now I didn&#8217;t go to Uni, instead I did vocational studies.  Rebecca&#8217;s Mum didn&#8217;t go to Uni either.  However, I realise that this is a big deal for Rebecca and the magnitude of her achievement on simply getting an interview has left me very proud indeed.  Ironically she appeared apathetic to the whole process and whether that was a feeling of fear or perhaps lacking self-belief, who knows.  Nevertheless <em>they</em> asked to see <em>her</em> and even if she isn&#8217;t offered a place, that&#8217;s something which she can add to her CV of achievements.</p><p>Lisa, Rebecca and I all travelled down to Oxford and stayed overnight.  While Rebecca was being interviewed Lisa and I did a walking tour of the university and very good it was too.  We were even able to have lunch at the <a
href="http://www.pieminister.co.uk/">Pieminister</a> shop in the covered market.  Oh happy days!</p><p>The interviews seem to have gone OK and Rebecca was very calm when we saw her at the end of the day.  She&#8217;s a bright button and if she wasn&#8217;t successful then it&#8217;s nothing to be embarrassed about.  She&#8217;s already been offered places at two of the better Universities in the country and no matter what she does or where she goes I know she&#8217;ll do well.  I think we find out tomorrow funnily enough.</p><h3>Goodbye Newark, Hello London</h3><p>Out of the blue I spotted that my server hosts, <a
href="http://www.linode.com/?r=38744316d36d5ae18473ba72c2b14b29aef23512">Linode</a> opened a new data centre in London.  I got myself a second server there server pretty sharpish and I&#8217;ve spent about 5 days moving everything over.  I eventually deleted my server in Newark and now everything I do is UK based.  Ping responses from my new server = 28ms compared to 107ms before.  Cool!  I also took the opportunity of moving from CentOS to Debian.  I think I&#8217;m happier with Debian, it makes me feel a bit more beardy!</p><p>If you want yourself a super-cool UK based Private Server, it&#8217;s a no-brainer. <a
href="http://www.linode.com/?r=38744316d36d5ae18473ba72c2b14b29aef23512">Linode</a> seriously rock.  Hell I&#8217;ll even help you set it up for a few beers or something.  It&#8217;s EASY!  Click one of the <a
href="http://www.linode.com/?r=38744316d36d5ae18473ba72c2b14b29aef23512">Linode</a> links in this post to go look-see and I get referrer credit towards my hosting.</p><h3>GIT</h3><p>One of the knock-on effects of my new server has been that I&#8217;ve stopped using <a
href="http://subversion.tigris.org/">Subversion</a> for the time being.  There was an incompatibility problem that I could either sort out (which I couldn&#8217;t be arsed doing) or try something else.  That something is <a
href="http://git-scm.com/">GIT</a>, the fast version control system.  I&#8217;m only using it for web development and the only user will be me so although it&#8217;s a bit like using a sledge hammer to crack a nut, it works for me.  I&#8217;ll write more about it in another post.</p><p>Incidentally, I&#8217;m not knocking Subversion, I&#8217;m just trying something different.</p><h3>Christmas</h3><p>Over the festive (sic) period I&#8217;m going to try and put a few sites together.  More later&#8230;</p> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2009/12/catch-up-2/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Reason 11: Consumerismas</title><link>http://caramboo.com/2009/12/reason-11-consumerismas/</link> <comments>http://caramboo.com/2009/12/reason-11-consumerismas/#comments</comments> <pubDate>Fri, 11 Dec 2009 11:11:54 +0000</pubDate> <dc:creator>Dave</dc:creator> <category><![CDATA[I Hate Christmas]]></category> <category><![CDATA[christmas]]></category> <category><![CDATA[consumersim]]></category><guid isPermaLink="false">http://caramboo.com/?p=609</guid> <description><![CDATA[Now I may be talking way out of my depth here from a sociological viewpoint but the biggest thing I hate about Christmas bar none is consumerism.  I hate it so very much it makes my blood boil.  I know some of the people around me don't see it that way and I don't think that I alone can change the world but boy does it get me angry. ]]></description> <content:encoded><![CDATA[<p>Now I may be talking way out of my depth here from a sociological viewpoint but the biggest thing I hate about Christmas bar none is consumerism.  I hate it so very much it makes my blood boil.  I know some of the people around me don&#8217;t see it that way and I don&#8217;t think that I alone can change the world but boy does it get me angry.</p><p>The festive season must be a massive if not the biggest source of income for corporations trying to flog you stuff.   I&#8217;ve not even bothered looking for stats to prove it because it&#8217;s just going to be true.  I hate the whole idea of having to buy things for people, not because you love them but because the Christmas monster says you have to.  Imagine not buying for someone who&#8217;s expecting you to buy them a present.  Just imagine.  I really want to write on the cards that I give to people:</p><blockquote><p>Here&#8217;s a gift from me. I can&#8217;t really afford it, I&#8217;m only buying it for you because it&#8217;s Christmas and I&#8217;ll be skint because of it.  You don&#8217;t actually need it, you probably won&#8217;t use it.  Merry Christmas.</p></blockquote><p>I don&#8217;t suppose that&#8217;d go down too well though would it.</p><p>From a very early age we are all duped into this merry-go-round of what I call <em>Consumerismas</em>.  The big build up, the day arrives, the opening of stuff wrapped in shiny paper and boy-oh-boy this is great.  The idea that buying stuff for people == love and happiness is etched into your soul and you&#8217;re fucked.  And not just one present. Oh no, we&#8217;re now in the gluttonous age of more meaning better and the quantity or cost of something is directly proportional to the amount of love you feel for someone.</p><p>If you don&#8217;t join in with all this corporate fuelled madness you&#8217;re labelled as a Scrooge.  Well if that&#8217;s the case we&#8217;ll ignore the fact that I spend the other 364 days of the year trying my damn best to be helpful, generous, polite, courteous, caring, thoughtful and loving.  No, just because I hate lining executives pockets by buying pointless gifts I&#8217;m a bad person.  For fuck&#8217;s sake.</p><h3>Perfume Adverts on Telly</h3><p>Sometime in early November they start.  The Christmas adverts come on the telly and for me, the absolute worst examples are the bloody perfume/aftershave ones.  You take one fit looking celebrity or model and show them: wandering down a deserted beach at sunset; attending a high-class society function; cavorting with some other fit looking celebrity or model; rambling on about life changing meaningless stuff or some other fantasy scene, shot in soft focus or monochrome.  You watch and take it all in.  Yes, you too <em>Karen</em> who works down the market with three kids, yes you <em>John</em> working as a plumber covered in shit all day, you too can look like Nicole Kidman and Ewan McGregor and live in fantasy land and have a six pack stomach or a barbie doll figure.  All you need to do is spend shit loads of your hard earned cash for some fancy looking bottle of stuff that smells like chemicals and boom, your made it into the big time.</p><p>Well.  I&#8217;m sorry <em>Karen</em> and <em>John</em>.  No you haven&#8217;t. <em>Karen</em>, you still have to get up at six in the morning to get the kids sorted before you&#8217;re off to that market stall and<em> John</em>, sorry mate, that bunged up toilet is just around the corner.   You should celebrate who you are and not try and be something you&#8217;re not and shouldn&#8217;t want to be.  It&#8217;s a big fat lie of a fantasy that people with much more money than you are selling you.  The end result is that they stay rich and you stay where you are.  It&#8217;s time you, we, figured that out.</p><h3>God and Jesus, Again</h3><p>So, what has all this to do with religion.  Fuck all that&#8217;s what.  Corps selling consumers stuff they don&#8217;t need is not religious.  It&#8217;s exploitation of the stupid masses by the rich and powerful.  It&#8217;s the absolute antithesis of what the Christmas spirit is all about.  If Jesus was alive and God existed, would you catch them down Argos buying Diesel perfume?  Would you fuck.  Do people buying all the shit think of God and Jesus when their gifts.  Do they fuck.</p><p>Pathetic.  And I&#8217;m not even a Christian!</p><h3>Capitalism</h3><p>Yeah, I understand that perhaps the whole structure of Western Capitalism is based on the corporations being rich.  They keep rich partly due to Christmas.  Well, in my world, all that would change.  I think you could substitute the word Christmas for the word Capitalism in these posts and in a lot of cases, you wouldn&#8217;t notice the difference.  Would you brother.</p><p>I hate Christmas</p><p><span
class="siggy">Dave</p><p> </span></p> ]]></content:encoded> <wfw:commentRss>http://caramboo.com/2009/12/reason-11-consumerismas/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss><!-- Served from: localhost.localdomain @ 2010-03-17 00:20:07 by W3 Total Cache -->
