<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Axel Segebrecht &#187; Tutorials &amp; Tips</title>
	<atom:link href="http://www.axelsegebrecht.com/category/tutorials-and-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.axelsegebrecht.com</link>
	<description>Cameraman and website designer from Milton Keynes (Buckinghamshire)</description>
	<lastBuildDate>Wed, 11 Jan 2012 00:22:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Testing Nginx with APC, Varnish, WordPress and W3 Cache on a 128MB VPS</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/testing-nginx-with-apc-varnish-wordpress-and-w3-cache-on-a-128mb-vps/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=testing-nginx-with-apc-varnish-wordpress-and-w3-cache-on-a-128mb-vps</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/testing-nginx-with-apc-varnish-wordpress-and-w3-cache-on-a-128mb-vps/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 13:10:07 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[APC]]></category>
		<category><![CDATA[Cloudflare]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[FPM]]></category>
		<category><![CDATA[KVM]]></category>
		<category><![CDATA[Little Series]]></category>
		<category><![CDATA[PHP5]]></category>
		<category><![CDATA[Varnish]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[XEN]]></category>

		<guid isPermaLink="false">http://www.axelsegebrecht.com/blog/?p=12733</guid>
		<description><![CDATA[Finally got a bit of time (OK, I have forced myself to take some time) to get my VPS WordPress dream config sorted out and wrap it up in a handy bash script so that I can roll it out across my clients websites easily. After following various tutorials and picking certain peoples brains, I ...]]></description>
			<content:encoded><![CDATA[<p>Finally got a bit of time (OK, I have forced myself to take some time) to get my VPS WordPress dream config sorted out and wrap it up in a handy bash script so that I can roll it out across my clients websites easily.</p>
<p>After following various tutorials and picking certain peoples brains, I think I finally have arrived at the bees knees as they say (or do they?)!</p>
<p><span id="more-12733"></span></p>
<h2 id="The_configuration">The configuration</h2>
<p>The dream config breaks down as follows:</p>
<ul>
<li>128MB VPS (Virtualbox for testing, KVM or XEN for production</li>
<li>Debian 6 (Squeeze)</li>
<li>PHP5 with FPM (via dotdeb)</li>
<li>Nginx web server</li>
<li>APC Optcode cache</li>
<li>Varnish Caching Proxy</li>
<li>WordPress with W3 Cache plug-in</li>
<li>and for good measure Cloudflare CDN/Proxy</li>
</ul>
<p>I will write up an easy to follow, cut-and-past tutorial soon &#8211; promise! And publish my script once it&#8217;s done and working. Until then, please check out the following comparison between Nginx+Varnish and Nginx without Varnish. The difference is clear! </p>
<p>This is with WP (latest) and W3 Cache active, running on APC with browser caching.</p>
<p>The test were run with Apache Bench (apt-get install apache2-utils). </p>
<h2 id="Nginx_(with_APC_&amp;_W3C)">Nginx (with APC &amp; W3C)</h2>
<p><code>ab -kc 10 -n 1000 http://localhost:8080/</code><br />
<code><br />
This is ApacheBench, Version 2.3 <$Revision: 655654 $><br />
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br />
Licensed to The Apache Software Foundation, http://www.apache.org/</p>
<p>Benchmarking localhost (be patient)</p>
<p>Server Software:        nginx/1.0.2<br />
Server Hostname:        localhost<br />
Server Port:            8080</p>
<p>Document Path:          /<br />
Document Length:        0 bytes</p>
<p>Concurrency Level:      10<br />
<strong>Time taken for tests:   40.789 seconds</strong><br />
Complete requests:      1000<br />
Failed requests:        0<br />
Write errors:           0<br />
Non-2xx responses:      1000<br />
Keep-Alive requests:    0<br />
Total transferred:      263000 bytes<br />
HTML transferred:       0 bytes<br />
<strong>Requests per second:    24.52 [#/sec] (mean)</strong><br />
Time per request:       407.894 [ms] (mean)<br />
Time per request:       40.789 [ms] (mean, across all concurrent requests)<br />
<strong>Transfer rate:          6.30 [Kbytes/sec] received</strong></p>
<p>Connection Times (ms)<br />
              min  mean[+/-sd] median   max<br />
Connect:        0    0   2.2      0      37<br />
Processing:   235  407  30.6    404     534<br />
Waiting:      235  407  30.6    404     534<br />
Total:        235  407  30.7    405     534</p>
<p>Percentage of the requests served within a certain time <strong>(ms - milliseconds)</strong><br />
  <strong>50%    405</strong><br />
  66%    417<br />
  75%    424<br />
  80%    428<br />
  <strong>90%    444</strong><br />
  95%    459<br />
  98%    484<br />
  99%    496<br />
 100%    534 (longest request)<br />
</code></p>
<h2 id="Nginx_and_Varnish_(with_APC_&amp;_W3C)">Nginx and Varnish (with APC &amp; W3C)</h2>
<p><code>ab -kc 10 -n 1000 http://localhost/</code><br />
<code><br />
This is ApacheBench, Version 2.3 <$Revision: 655654 $><br />
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br />
Licensed to The Apache Software Foundation, http://www.apache.org/</p>
<p>Benchmarking localhost (be patient)</p>
<p>Server Software:        nginx/1.0.2<br />
Server Hostname:        localhost<br />
Server Port:            80</p>
<p>Document Path:          /<br />
Document Length:        6054 bytes</p>
<p>Concurrency Level:      10<br />
<strong>Time taken for tests:   1.299 seconds</strong><br />
Complete requests:      1000<br />
Failed requests:        0<br />
Write errors:           0<br />
Keep-Alive requests:    1000<br />
Total transferred:      6419989 bytes<br />
HTML transferred:       6054000 bytes<br />
<strong>Requests per second:    769.98 [#/sec] (mean)</strong><br />
Time per request:       12.987 [ms] (mean)<br />
Time per request:       1.299 [ms] (mean, across all concurrent requests)<br />
<strong>Transfer rate:          4827.39 [Kbytes/sec] received</strong></p>
<p>Connection Times (ms)<br />
              min  mean[+/-sd] median   max<br />
Connect:        0    0   0.0      0       0<br />
Processing:     0   13 113.2      1    1139<br />
Waiting:        0   13 113.2      1    1139<br />
Total:          0   13 113.2      1    1139</p>
<p>Percentage of the requests served within a certain time (<strong>ms - milliseconds </strong>)<br />
  <strong>50%      1</strong><br />
  66%      1<br />
  75%      2<br />
  80%      2<br />
  <strong>90%      2</strong><br />
  95%      3<br />
  98%     19<br />
  99%   1137<br />
 100%   1139 (longest request)<br />
</code></p>
<h2 id="Summary">Summary</h2>
<p>On its own Nginx (with APC and W3C) takes 40s to run a test with 1000 requests. With Varnish in front of it is only takes 1.2s to serve the same number!</p>
<p>On its own Nginx will handle 24.52 requests per second, whereas with Varnish in front it will handle 769.98! </p>
<p>On its own Nginx will transfer 6.30 Kbytes/sec with Varnish it will push 4,827.39 Kbytes/sec!</p>
<p>The majority of requests (90%) were served within 444ms with just nginx but just 2ms with varnish. This is from localhost of course. </p>
<p>Now imagine the whole thing protected and CDN&#8217;d by Cloudflare and you got yourself a website that can truly fly.</p>
<p>Cushty! ;D</p>
<p>PS: Thanks to <a href="http://shortbutuseful.com/88/install-nginx-phpfpm-mysql-apc-wordpress-debian-6/" target="_blank">Daniel Miesler&#8217;s post</a> for inspiration. There are more people to thank but I&#8217;ll save that until the next post.</p>
<h2 id="Coming_Soon">Coming Soon</h2>
<p>Related posts in this <a href="http://blog.axelsegebrecht.com/tag/little-series/">(little) series</a>:</p>
<ul>
<li><a href="http://blog.axelsegebrecht.com/tutorials-and-tips/testing-nginx-with-apc-varnish-wordpress-and-w3-cache-on-a-128mb-vps/"><strong>How to: Testing Nginx with APC, Varnish, WordPress and W3 Cache on a 128MB VPS</strong></a></li>
<li><a href="http://blog.axelsegebrecht.com/how-to/install-nginx-apc-varnish-wordpress-and-w3-cache-128mb-vps/">How to: Install Nginx with APC, Varnish, WordPress and W3 Cache on a 128MB VPS</a></li>
<li><a href="http://blog.axelsegebrecht.com/how-to/benchmark-nginx-varnish-wordpress-site/">How to: Benchmark Nginx and Varnish for a WordPress Site</a></li>
<li><a href="http://blog.axelsegebrecht.com/how-to/make-money-offering-vps-hosting/">How to: Make Money from Offering VPS Hosting</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/testing-nginx-with-apc-varnish-wordpress-and-w3-cache-on-a-128mb-vps/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Sky Broadband DNS Server IP</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/sky-broadband-dns-server-ip/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sky-broadband-dns-server-ip</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/sky-broadband-dns-server-ip/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 19:04:16 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[sky]]></category>

		<guid isPermaLink="false">http://www.axelsegebrecht.com/?p=11619</guid>
		<description><![CDATA[Note to self= Sky Broadband DNS Server IP addresses are: 90.207.238.97 and 90.207.238.99. Thanks to RTD from digitalspy.com forums! This is accurate as of 14-10-2010.]]></description>
			<content:encoded><![CDATA[<p>Note to self= <strong>Sky Broadband DNS Server IP addresses are: 90.207.238.97 and 90.207.238.99</strong>. Thanks to <a href="http://www.digitalspy.com/forums/showthread.php?t=1367341" rel="nofollow">RTD from digitalspy</a>.com forums! This is accurate as of 14-10-2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/sky-broadband-dns-server-ip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Backup Strategy for a Photographer &amp; Cameraman</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/a-backup-strategy-for-a-photographer-cameraman/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-backup-strategy-for-a-photographer-cameraman</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/a-backup-strategy-for-a-photographer-cameraman/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 16:43:30 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[Amahi]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[cameraman]]></category>
		<category><![CDATA[CrashPlan]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[G-SAFE]]></category>
		<category><![CDATA[Greyhole]]></category>
		<category><![CDATA[photographer]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[SugarSync]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Windows Home Server]]></category>

		<guid isPermaLink="false">http://www.axelsegebrecht.com/?p=4703</guid>
		<description><![CDATA[A question that finds a lot of discussion in the forums as much as in the Real World(tm) is &#8220;how to backup terabytes of photos and video rushes?&#8221;. It may only appear to be a simple question with a simple answer, however if your livelihood depends on recovering footage shot two years ago but the ...]]></description>
			<content:encoded><![CDATA[<p>A question that finds a lot of discussion in the forums as much as in the Real World(tm) is <strong>&#8220;how to backup terabytes of photos and video rushes?&#8221;</strong>. It may only appear to be a simple question with a simple answer, however if your livelihood depends on recovering footage shot two years ago but the hard drive or <abbr title="Digital Video Disc or Digital Versatile Disc">DVD</abbr> you put it on died, you are stuffed and the producer or editor will think twice before booking you again! So what&#8217;s an efficient, cost effective and straight-forward enough backup strategy then?</p>
<p><span id="more-4703"></span></p>
<p><abbr title="A camera raw image file contains minimally processed data">RAW</abbr> photos and uncompressed <abbr title="High Definition video">HD</abbr> video rushes are big! A project I filmed recently over two days weighs in with just over 50GB of HD1080i footage recorded by my Sony EX3 <abbr title="Sony's tapeless professional HD acquisition format">XDCAM</abbr>. My <a href="http://www.adobe.com/products/photoshoplightroom/" class="extlink" title="Link to Adobe's Lightroom product website">Lightroom</a> catalog is already 57.3GB of <abbr title="A camera raw image file contains minimally processed data">RAW</abbr> photos although I only started shooting professionally sometime in the second quarter this year. Not hard to imagine how large a collection of raw material I will have collected by the end of the year!</p>
<h2 id="The_olden_days">The olden days</h2>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/227917.jpg"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/227917-150x150.jpg" alt="" title="Mini DV Tape" width="150" height="150" class="alignleft size-thumbnail wp-image-4761" /></a> Before, I shot on <abbr title="Digital Video (tape)">DV</abbr> tape or took photos saved as <abbr title="JPG is a compression format for images">JPG</abbr>, producing a relatively small amount of data that needed backing up. In all cases I simply made sure the original tapes were stored safely and copied the final project with associated footage to <abbr title="Digital Video Disc or Digital Versatile Disc">DVD</abbr> and an external hard drive. So far this has worked pretty well and with the advent of &#8220;cloud&#8221; data storage (<a href="http://aws.amazon.com/s3/" class="extlink" title="Link to Amazon S3 cloud storage website">Amazon S3</a>, <a href="http://www.dropbox.com/referrals/NTU1ODcxNjk" class="extlink" title="Link to Dropbox including referral code">Dropbox</a>, <a href="https://www.sugarsync.com/referral?rf=c7796pke5remo" class="extlink" title="Link to SugarSync including referral code">SugarSync</a> to name but three), I also had a neat way to backup, version and share files while keeping them in-sync across multiple computers. </p>
<p>Using this system with hundreds of Gigabytes of files will make you poor very quickly as well as max out your internet connection for long periods. Even when you are on fibre optic cable pushing 2MBit/s upload speeds, you can expect your 50GB of newly acquired data to take a while to upload to the notoriously slow servers of most cloud storage providers.</p>
<p>Backing-up to <abbr title="Digital Video Disc or Digital Versatile Disc">DVD</abbr> results in not much more joy as you will need DVD-DL disks offering a measly 8GB of space and therefore a lot of disks. Hard drives are cheap but if you are using a single external <abbr title="Universal Serial Bus v.2">USB2</abbr> drive for backups then you are not much safer. <abbr title="Universal Serial Bus v.2">USB2</abbr> is also excruciatingly slow and even with Firewire 800 you are looking at not much better transfer times.</p>
<h2 id="Things_that_do_not_work_well">Things that do not work well</h2>
<p>Time for a quick summary to see what&#8217;s not working so far:</p>
<ul>
<li><strong>External USB or Firewire hard drives</strong><br />Because it&#8217;s slow as well as unsafe to store data on a single (cheap) hard drive.</li>
<li><strong>DVD disks</strong><br />Too many disks required to backup to. Professional grade archive quality disks are expensive too!</li>
<li><strong>Cloud storage providers</strong><br />Too slow and too expensive for huge amounts of data required to be stored!</li>
</ul>
<p>Find out how I do it on the next page&#8230; .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/a-backup-strategy-for-a-photographer-cameraman/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Apple TV Error &#8211; Verification Required</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/apple-tv-error-verification-required/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apple-tv-error-verification-required</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/apple-tv-error-verification-required/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 11:11:58 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[Apple TV]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[verification]]></category>

		<guid isPermaLink="false">http://www.axelsegebrecht.com/?p=3656</guid>
		<description><![CDATA[Just resolved a problem for a customer who was presented with the following error message on his Apple TV when he tried to purchase something: &#8220;verification required &#8211; before you can make purchases you must go to the iTunes store on your computer and verify your payment information.&#8221; After battling with itunes for an hour ...]]></description>
			<content:encoded><![CDATA[<p>Just resolved a problem for a customer who was presented with the following error message on his Apple TV when he tried to purchase something: <strong>&#8220;verification required &#8211; before you can make purchases you must go to the iTunes store on your computer and verify your payment information.&#8221;</strong> After battling with itunes for an hour and scouring the interweb, <a href="http://discussions.apple.com/message.jspa?messageID=11886171#11886171" class="extlink">pudjam666 on the Apple Support Forum</a> finally provided me with the required information to resolve the issue. It&#8217;s actually quite simple&#8230; </p>
<p><span id="more-3656"></span></p>
<ol>
<li>Go to your itunes store on PC/Mac and go to the user account (top right hand corner &#8211; usually your email address)<br /><a href="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.46.591.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.46.591-425x293.png" alt="Screen shot iTunes Store" title="Screen shot iTunes Store" width="425" height="293" class="aligncenter size-medium wp-image-3671" /></a></li>
<li>Enter your account password when prompted<br /><a href="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.031.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.031-425x223.png" alt="Screen-shot-iTunes-Login" title="Screen-shot-iTunes-Login" width="425" height="223" class="aligncenter size-medium wp-image-3672" /></a></li>
<li>Next thing you see is your account overview. From here we&#8217;ll select &#8220;Edit Payment Information&#8221; (second from top right)<br /><a href="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.161.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.161-425x293.png" alt="Screen shot itunes Overview" title="Screen shot itunes Overview" width="425" height="293" class="aligncenter size-medium wp-image-3721" /></a></li>
<li>You&#8217;ll notice a message in red at the top of this page. In my screenshot you will not see anything other than a normal screen though.<br /><a href="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.23.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.23-425x293.png" alt="Screen shot iTunes Edit Payment Details" title="Screen shot iTunes Edit Payment Details" width="425" height="293" class="aligncenter size-medium wp-image-3669" /></a></li>
<li>Scroll to the bottom and press &#8220;Done&#8221;.<br /><a href="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.26.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.26-425x293.png" alt="Screen shot iTunes Edit Payment Details Bottom" title="Screen shot iTunes Edit Payment Details Bottom" width="425" height="293" class="aligncenter size-medium wp-image-3670" /></a></li>
<li>You are back at the account overview. Press &#8220;Done&#8221; once more to exit.<br /><a href="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.161.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/Screen-shot-2010-07-29-at-17.47.161-425x293.png" alt="Screen shot itunes Overview" title="Screen shot itunes Overview" width="425" height="293" class="aligncenter size-medium wp-image-3721" /></a></li>
<li>Now reboot your Apple TV (don&#8217;t do &#8220;Standby&#8221;) &#8211; unplug the power cable and plug it back in again.</li>
<li>Now try logging on to your iTunes account on the Apple TV again and purchase something!</li>
</ol>
<p>This worked for my client and I hope it will work for you too. Let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/apple-tv-error-verification-required/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>How to block your caller ID</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/how-to-block-your-caller-id/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-block-your-caller-id</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/how-to-block-your-caller-id/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 12:59:53 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[caller id]]></category>
		<category><![CDATA[gsm]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[o2]]></category>

		<guid isPermaLink="false">http://www.axelsegebrecht.com/?p=1054</guid>
		<description><![CDATA[Just a quick note to myself really that I can just pre-fix any number I want to call with #31# to hide my caller ID. This works on o2 with my iPhone and should work with any other GSM provider and phone in the UK! Example: #31#07794132161]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to myself really that I can just pre-fix any number I want to call with <b>#31#</b> to hide my caller ID. This works on o2 with my iPhone and should work with any other GSM provider and phone in the UK!</p>
<p>Example: <code><span style="font-size:1.5em;">#31#07794132161</span></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/how-to-block-your-caller-id/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Simple way to backup Thunderbird emails</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/backup-thunderbird-emails/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=backup-thunderbird-emails</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/backup-thunderbird-emails/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 14:28:55 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[thunderbird]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.axelsegebrecht.com/blog/?p=212</guid>
		<description><![CDATA[A client just asked me how to easily export and save her emails. After a bit of Googling and trying to guide her through the normal &#8220;copy profile info to external hard drive&#8221; bit, I found something a heck of a lot easier. A little add-on to Thunderbird which allows you to save selected emails ...]]></description>
			<content:encoded><![CDATA[<p>A client just asked me how to easily export and save her emails. After a bit of Googling and trying to guide her through the normal &#8220;copy profile info to external hard drive&#8221; bit, I found something a heck of a lot easier. A little add-on to <a href="http://www.mozilla.com/products/thunderbird/">Thunderbird</a> which allows you to save selected emails right from within <a href="http://www.mozilla.com/products/thunderbird/">Thunderbird</a> and saves them in a human readable format to your hard drive.</p>
<p><span id="more-319"></span></p>
<p>[ad#ad-2]</p>
<p>Simply install <a href="https://nic-nac-project.org/~kaosmos/mboximport-en.html">the add-on</a> (Thunderbird Menu -> Tools -> Add-ons -> Install add-on) and then restart Thunderbird.</p>
<p>The backup add-on can be found at <strong><a href="https://nic-nac-project.org/~kaosmos/mboximport-en.html">Kaosmos website and downloaded for free</a></strong>! It works on all platforms as far as I know (Mac OS X, Windows, Linux).</p>
<p>Here&#8217;s a quick step-by-step guide on how to get it working (in my case it&#8217;s <a href="http://www.mozilla.com/products/thunderbird/">Thunderbird</a> running on Ma OSX). The screen shots can be enlarged by clicking on them:-</p>
<p>Go to your Thunderbird Tools Menu and select add-ons:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-1.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-1-300x221.png" alt="" title="Thunderbird Tools Menu" width="300" height="221" class="aligncenter size-medium wp-image-214" /></a></p>
<p>The add-ons screen. Now select &#8220;install&#8221; from the bottom left corner:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-2.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-2-300x241.png" alt="" title="Thunderbird Add-on Dialog" width="300" height="241" class="aligncenter size-medium wp-image-215" /></a></p>
<p>A dialog pops-up asking you for the location of the file. Select it and press &#8220;open&#8221;:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-3.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-3-300x240.png" alt="" title="Thunderbird Select Extension Dialog" width="300" height="240" class="aligncenter size-medium wp-image-216" /></a></p>
<p>A security prompt will ask you to confirm whether you really want to install the file. Press &#8220;Install now&#8221;:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-4.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-4-300x287.png" alt="" title="Thunderbird Add-on Security Dialog" width="300" height="287" class="aligncenter size-medium wp-image-217" /></a></p>
<p>The dialog box will show the installed file and prompt you to restart Thunderbird. Press &#8220;Restart Thunderbird&#8221;:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-5.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-5-300x241.png" alt="" title="Thunderbird Add-ons Dialog" width="300" height="241" class="aligncenter size-medium wp-image-218" /></a></p>
<p>After Thunderbird restarted go to your inbox and select the emails you want to export:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-6.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-6-300x150.png" alt="" title="Thunderbird Inbox" width="300" height="150" class="aligncenter size-medium wp-image-219" /></a></p>
<p>Right-click on any of the selected messages to bring up a menu. Go to &#8220;Save selected messages&#8221; to view the choices:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-7.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-7.png" alt="" title="Thunderbird Right-click Menu" width="266" height="293" class="aligncenter size-medium wp-image-220" /></a></p>
<p>Select the desired export format. I suggest EML since it&#8217;s the easiest way to import emails to other programs. You can also import to Plain Text and HTML if you just want a backup you can read later but not require it to be in any mail program:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-8.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-8.png" alt="" title="Thunderbird Right-click Menu Save Selected Messages" width="196" height="105" class="aligncenter size-medium wp-image-221" /></a></p>
<p>A dialog appears, asking you where to save the emails to. Make your choice and press &#8220;Choose&#8221;:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-9.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-9-300x240.png" alt="" title="Thunderbird Destination Dialog" width="300" height="240" class="aligncenter size-medium wp-image-222" /></a></p>
<p>Now browse to the selected destination to view your exported messages. In my case it&#8217;s on a Mac:</p>
<p><a href="http://blog.axelsegebrecht.com/wp-content/uploads/picture-10.png"><img src="http://blog.axelsegebrecht.com/wp-content/uploads/picture-10-300x95.png" alt="" title="Mac OSX Finder" width="300" height="95" class="aligncenter size-medium wp-image-223" /></a></p>
<p>Hope this was useful to you. Have a nice day <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/backup-thunderbird-emails/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Wie man Videos in Flash Videos konvertiert</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/wie-man-videos-in-flash-videos-konvertiert/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wie-man-videos-in-flash-videos-konvertiert</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/wie-man-videos-in-flash-videos-konvertiert/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 10:27:08 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Konvertierung]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Riva Encoder]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[VisualHub]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.axlevideoproductions.com/?p=59</guid>
		<description><![CDATA[Da diese Frage relativ h&#228;ufig in Foren auftaucht, habe ich diesen kleinen Beitrag als &#220;bersicht der (meiner Ansicht nach) besten Tools geschrieben. Konvertiert von WMV, AVI, MOV oder MPEG zu Flash Video (flv) &#8211; egal ob mit Windows PC, Mac OSX oder Linux. Das ganze noch (meist) kostenlos? [ad#ad-2] F&#252;r Windows: Riva VX Encoder (kostenlos) ...]]></description>
			<content:encoded><![CDATA[<p>Da diese Frage relativ h&auml;ufig in <a href="http://forum.slashcam.de/avi-to-swf-konvertieren-vt48137.html">Foren</a> auftaucht, habe ich diesen kleinen Beitrag als &Uuml;bersicht der (meiner Ansicht nach) besten Tools geschrieben. Konvertiert von WMV, AVI, MOV oder MPEG zu Flash Video (flv) &#8211; egal ob mit Windows PC, Mac OSX oder Linux. Das ganze noch (meist) kostenlos?</p>
<p><span id="more-236"></span></p>
<p>[ad#ad-2]</p>
<p>F&uuml;r <strong>Windows</strong>: <a href="http://rivavx.de/?encoder">Riva VX Encoder</a> (kostenlos)<br />
F&uuml;r <strong>Mac OS X</strong>: <a href="http://www.techspansion.com/visualhub/">VisualHub</a> (free to try und 23.32 US$ f&uuml;r die volle Version)<br />
F&uuml;r <strong>Linux</strong>: <a href="http://ffmpeg.org/">ffmpeg</a> (kostenlos)</p>
<p>Alle drei Tools basieren auf der freien ffmpeg Software, welche es f&uuml;r alle Betriebssysteme gibt. <a href="http://soenkerohde.com/tutorials/ffmpeg/">S&ouml;nke Rohde hat eine gute Anleitung</a> (auf Englisch) zum Thema Flash Video konvertierung geschrieben, welches nicht nur f&uuml;r Windows Nutzer zutreffend ist.</p>
<p>Mac User sollten auf jeden Fall sich <a href="http://www.techspansion.com/visualhub/">VisualHub</a> angucken, bzw. am besten kostenlos testen! F&uuml;r 23.32 US$ (circa 19 EUR) gibts ein Tool was alles sehr einfach und bequem macht, ohne dabei auf erweiterte Features zu verzichten. Das ganze ist im endeffekt eine GUI f&uuml;r ffmpeg, und die Beste die ich gefunden habe <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Wenn ich Flash Videos (flv) erstelle, oder jedes andere Format, mache ich das heute so dass ich aus iMovie oder FVP ein Master MOV erstelle und dann mit VisualHub konvertiere. Damit kann man auch DVDs, etc. machen. Also wirklich so fast alles was man sich wÃ¼nschen kann.</p>
<p>Bonus Tipp: Nun das Ihr Flash Videos erstellen k&ouml;nnt, m&ouml;chtet Ihr warscheinlich wissen wie sie einfach auf die Website oder Blog kommen. Mein Tipp ist das <a href="http://www.channel-ai.com/blog/plugins/flv-embed/">FLV Embed plug-in f&uuml;r WordPress</a>, welches <a href="http://www.jeroenwijering.com/?item=flash_video_player">Jeroen Wijering&#8217;s FLV Player</a> einfach einbindet. Ihr k&ouml;nnt es in Aktion auf meiner <strike>Website</strike> <a href="http://www.axlevideoproductions.com/category/videos/">vlog</a> sehen.</p>
<p>Viel Spass.</p>
<p><strong>Update:</strong> Visual Hub hat die Entwicklung eingestellt. Allerdings ist es immer noch das einfachst zu bedienende Konvertierungs Program was ich f&uuml;r den Mac kenne. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/wie-man-videos-in-flash-videos-konvertiert/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Suckerfish Drop Down Menus for WordPress with jQuery</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/suckerfish-drop-down-menus-for-wordpress-with-jquery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=suckerfish-drop-down-menus-for-wordpress-with-jquery</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/suckerfish-drop-down-menus-for-wordpress-with-jquery/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 13:37:46 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Suckerfish]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.segebrecht.com/axel/ramblings/suckerfish-drop-down-menus-for-wordpress-with-jquery</guid>
		<description><![CDATA[I&#8217;ve finally managed to get it work: a sleek new drop down menu for my WordPress vBlog over on Axle Video Productions! Forget plug-ins or messy code. Just get jQuery, build your UL as normal and put some decent Suckerfish CSS on its bones. [ad#ad-2] Suckerfish for jQuery code can be found on Myles Angell ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally managed to get it work: a sleek new drop down menu for my <a href="http://www.axlevideoproductions.com/">WordPress vBlog over on Axle Video Productions</a>! Forget plug-ins or messy code. Just get jQuery, build your UL as normal and put some decent Suckerfish CSS on its bones.</p>
<p><span id="more-230"></span></p>
<p>[ad#ad-2]</p>
<p><a href="http://be.twixt.us/jquery/suckerFish.php">Suckerfish for jQuery code</a> can be found on Myles Angell page, instructions on how to get it (easily) <a href="http://www.invokemedia.com/css-dropdown-menu-with-wordpress.html/trackback/">working on WordPress</a> can be found at invokemedia&#8217;s site. Just replace the Javascript code on the latter, with the code found on the former <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/suckerfish-drop-down-menus-for-wordpress-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Better PNG Transparency Fix for IE Browser</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/better-png-transparency-fix-for-ie-browser/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=better-png-transparency-fix-for-ie-browser</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/better-png-transparency-fix-for-ie-browser/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 14:33:00 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[PNG]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.segebrecht.com/axel/design/websites/better-png-transparency-fix-for-ie-browser</guid>
		<description><![CDATA[Sadly only IE7+ knows how to handle transparent PNGs, so older versions require a little help. I&#8217;ve previously used a complex Javascript solution for this, which resulted in much headache. Klaus Hartl posted a much improved and more light-weight solution on his Blog back in March 2006 &#8211; no idea why I haven&#8217;t found this ...]]></description>
			<content:encoded><![CDATA[<p>Sadly only IE7+ knows how to handle transparent PNGs, so older versions require a little help. I&#8217;ve previously used a complex Javascript solution for this, which resulted in much headache. <a href="http://www.stilbuero.de/2006/03/15/png-alpha-transparency-fast-and-easy/trackback/">Klaus Hartl posted a much improved and more light-weight solution</a> on his Blog back in March 2006 &#8211; no idea why I haven&#8217;t found this earlier <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>BTW You can see it in action on my new WordPress <a href="http://www.axlevideoproductions.com/">vBlog for Axle Video Productions</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/better-png-transparency-fix-for-ie-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Laptop als Vorschau Video Monitor</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/laptop-als-vorschau-video-monitor/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=laptop-als-vorschau-video-monitor</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/laptop-als-vorschau-video-monitor/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 21:01:09 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[preview]]></category>
		<category><![CDATA[video monitor]]></category>

		<guid isPermaLink="false">http://www.axlevideoproductions.com/?p=45</guid>
		<description><![CDATA[Falls ihr nach einem einfachen Weg sucht euere Video Aufnahmen zu kontrollieren und der eingebaute Sucher / LCD zu klein ist, dann gibt&#8217;s nichts besseres als iRecord fÃ¼r den Mac Die Software ist kostenlos und wiegt nur 288kb (gezipped). Um Vorschaubilder live von dem DV Camcorder zu holen gibt&#8217;s nichts was einfacher wÃ¤re: Camcorder Ã¼ber ...]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.axlevideoproductions.com/wp-content/uploads/2007/03/irecord.png' alt='iRecord Logo' class='alignright' /> Falls ihr nach einem einfachen Weg sucht euere Video Aufnahmen zu kontrollieren und der eingebaute Sucher / LCD zu klein ist, dann gibt&#8217;s nichts besseres als iRecord fÃ¼r den Mac <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' />  Die Software ist kostenlos und wiegt nur 288kb (gezipped). Um Vorschaubilder live von dem DV Camcorder zu holen gibt&#8217;s nichts was einfacher wÃ¤re: Camcorder Ã¼ber Firewire (oder USB) an den Mac anschliessen, iRecord starten und sicherstellen das was man sieht auch OK ist.</p>
<p>NatÃ¼rlich kann man die Bilder auch als Quicktime Movie aufnehmen. Es ersetzt selbstverstÃ¤ndlich keinen professionellen Videovorschaumonitor, ist aber besser (und billiger) um einfach mal zu sehen ob das ganze OK aussieht was man da aufnehmen will. Kontrast, AuflÃ¶sung und Farben sind natÃ¼rlich nicht kontrollierbar damit aber besser als die eingebaute mini-LCD oder b/w Sucher allemal! Hier ein kleines Testvideo was ich vor einer Minute in meinem unterbelichteten Zimmer aufgenommen habe:</p>
<p>[flv:/media/testrecording.flv 440 330]</p>
<h3 id="Mehr:">Mehr:</h3>
<ul>
<li><a href="http://www.mindsprockets.com/downloads/irecord.zip">Download</a> (288kb, ZIP Archive, O/S: OS X 10.4.+)</li>
<li><a href="http://www.mindsprockets.com/iRecord.html">Homepage</a> (www.mindsprockets.com)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/laptop-als-vorschau-video-monitor/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Preview Firewire Video with iRecord</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/preview-firewire-video-with-irecord/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=preview-firewire-video-with-irecord</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/preview-firewire-video-with-irecord/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 20:54:46 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[firewire]]></category>
		<category><![CDATA[iRecord]]></category>
		<category><![CDATA[video monitor]]></category>

		<guid isPermaLink="false">http://www.axlevideoproductions.com/?p=44</guid>
		<description><![CDATA[If you have a DV Camcorder (firewire or USB) and are looking for a simple, quick tool that allows you to preview and capture your camera&#8217;s live image on an Apple Mac, then look no further than iRecord from mindsprockets.com It&#8217;s free (as in beer) and has nothing more than a friendly red record button ...]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.axlevideoproductions.com/wp-content/uploads/2007/03/irecord.png' alt='iRecord Logo' class='alignright' /> If you have a DV Camcorder (firewire or USB) and are looking for a simple, quick tool that allows you to preview and capture your camera&#8217;s live image on an Apple Mac, then look no further than iRecord from mindsprockets.com <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  It&#8217;s free (as in beer) and has nothing more than a friendly red record button and a nice large window. No preferences, no other buttons, no fuss &#8211; just the image, live and straight from your camcorder.</p>
<p><span id="more-223"></span></p>
<p>[ad#ad-2]</p>
<p>This way I can use my Apple Mac PowerBook as a preview monitor and even capture quick clips. OK, so it doesn&#8217;t have the best resolution or give you any control over image colour, sharpness, etc. but it works just dandy to check that you can actually use the image you are about to record. Beats a small LCD panel or b/w finder any time! Here&#8217;s the test footage, recorded about a minute ago in my darkened room:</p>
<p>[flv:/media/testrecording.flv 440 330]</p>
<h3 id="More:">More:</h3>
<ul>
<li><a href="http://www.mindsprockets.com/downloads/irecord.zip">Download</a> (288kb, ZIP Archive, O/S: OS X 10.4.+)</li>
<li><a href="http://www.mindsprockets.com/iRecord.html">Homepage</a> (www.mindsprockets.com)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/preview-firewire-video-with-irecord/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting IMAP Messages in Microsoft Outlook</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/deleting-imap-messages-in-microsoft-outlook/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=deleting-imap-messages-in-microsoft-outlook</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/deleting-imap-messages-in-microsoft-outlook/#comments</comments>
		<pubDate>Wed, 08 Feb 2006 14:55:11 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[IMAP]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.segebrecht.com/axel/?p=50</guid>
		<description><![CDATA[If you like me are using Outlook at work to access your IMAP account(s) you probably are wondering whether there will ever be a simple way to move messages you want to delete to another folder (i.e. Trash). Sadly Outlook (2003) doesn&#8217;t like moving messages without leaving behind &#8220;messages that are marked for deletion&#8221;. That&#8217;s ...]]></description>
			<content:encoded><![CDATA[<p>If you like me are using Outlook at work to access your IMAP account(s) you probably are wondering whether there will ever be a simple way to move messages you want to delete to another folder (i.e. Trash). Sadly Outlook (2003) doesn&#8217;t like moving messages without leaving behind &#8220;messages that are marked for deletion&#8221;. That&#8217;s right, those fancy messages in your IMAP folders with a line going through them.</p>
<p><span id="more-174"></span></p>
<p>[ad#ad-2]</p>
<p>The only way to get rid of them and free up much needed space on your account is to &#8220;purge&#8221; your folders. Although this can be automated somehow, it&#8217;s really inconvenient for me. I prefer messages to be moved to my Trash folder for review and then permanently removed when I choose to. The last thing on my mind is remembering to clean up after a bit of software that should be doing this for me.</p>
<h3 id="So_what_s_the_solution?">So what&#8217;s the solution?</h3>
<p>I&#8217;ve looked through Outlook (2003) and found  nothing.</p>
<p>I&#8217;ve queried the MS Knowledgebase and drew a blank (apart from the useful message quoted above earlier).</p>
<p>I&#8217;ve tried creating rules using the build-in &#8220;Rules Wizard&#8221; to no effect. There&#8217;s just no way to do it using rules in Outlook (2003).</p>
<p>I&#8217;ve tried &#8220;Visual Basic for Applications&#8221; (VBA) macro scripting&#8230; and hit pay dirt:</p>
<p><small>Reference: <a href="http://www.outlookcode.com/codedetail.aspx?id=427">www.outlookcode.com</a></small></p>
<blockquote><p>lafong  (05-Jul-2005,  16:28)<br />
Here&#8217;s a script to copy message(s) to a &#8220;Deleted Items&#8221; folder, then purge the current mailbox. You have to create a &#8220;Deleted Items&#8221; folder in your IMAP account. Seems to work for both POP &#8220;Personal Folders&#8221; too, if you use it accidentally, but not for Exchange(who cares). After making the macro you can create a toolbar button to activate it. I&#8217;m no vbs guru, so no guarantees.</p></blockquote>
<p>by lafong &#8211; <a href="http://www.outlookcode.com/codedetail.aspx?id=427" class="extlink">http://www.outlookcode.com/codedetail.aspx?id=427</a></p>
<pre class="brush: vb; title: ; notranslate">
Sub DeleteMessages()

Set myOlApp = CreateObject(&quot;Outlook.Application&quot;)

Dim myNameSpace As NameSpace

Set myNameSpace = myOlApp.GetNamespace(&quot;MAPI&quot;)

Dim myExplorer As Explorer

Set myExplorer = myOlApp.ActiveExplorer

'Get the folder type, expected type is 0 i.e. mail folder. If other type of folder
'being used then abort macro as it should only be used with mail folders.
folderType = myExplorer.CurrentFolder.DefaultItemType

'Check that folder is mail folder
If TypeName(myExplorer) = &quot;Nothing&quot; Or folderType &lt;&gt; 0 Then
GoTo invalidMailbox
End If

'Locate root folder for this account
Set thisFolder = myExplorer.CurrentFolder
Do Until thisFolder.Parent = myNameSpace
Set thisFolder = thisFolder.Parent
Loop
Set accountFolder = thisFolder

'Identify selected messages
Dim selectedItems As Selection
Set selectedItems = myExplorer.Selection
Dim currentMailItem As MailItem
Dim iterator As Long

'Run loop on selected messages
For iterator = 1 To selectedItems.Count
Set currentMailItem = selectedItems.Item(iterator)

'Move messages to Deleted Items folder
Set trashFolder = accountFolder.Folders(&quot;Deleted Items&quot;)
currentMailItem.Move (trashFolder)

Next

'Now, purge deleted messages
Dim myBar As CommandBar
Set myBar = Application.ActiveExplorer.CommandBars(&quot;Menu Bar&quot;)
Dim myButtonPopup As CommandBarPopup
Set myButtonPopup = myBar.Controls(&quot;Edit&quot;)
Dim myButton As CommandBarButton
Set myButton = myButtonPopup.Controls(&quot;Purge Deleted Messages&quot;)
myButton.Execute

Exit Sub

invalidMailbox:
MsgBox (&quot;Macro configured only to work with mail folders! &quot;)

Exit Sub

End Sub
</pre>
<p>Good luck and let me know how it works out for you.</p>
<p class="credits">Technorati Tags: <a href="http://technorati.com/tag/outlook" rel="tag">outlook</a> &middot; <a href="http://technorati.com/tag/imap" rel="tag">imap</a>microsoft &middot; <a href="http://technorati.com/tag/macro" rel="tag">macro</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/deleting-imap-messages-in-microsoft-outlook/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Uninstalling Whiteout from OS X Tiger</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/uninstalling-whiteout-from-os-x-tiger/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=uninstalling-whiteout-from-os-x-tiger</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/uninstalling-whiteout-from-os-x-tiger/#comments</comments>
		<pubDate>Wed, 08 Feb 2006 00:47:04 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Whiteout]]></category>

		<guid isPermaLink="false">http://www.segebrecht.com/axel/?p=49</guid>
		<description><![CDATA[Installed Whiteout.dmg on Tiger 10.4? Want to get back to normal after realising it messes up Mail.app amongst other things? Then read this very quick guide as found on a French forum. And no, I cannot be held responsible for anything that might or might not happen to you, your Mac or anything else! No ...]]></description>
			<content:encoded><![CDATA[<p>Installed Whiteout.dmg on Tiger 10.4? Want to get back to normal after realising it messes up Mail.app amongst other things? Then read this very quick guide as found on a French forum. And no, I cannot be held responsible for anything that might or might not happen to you, your Mac or anything else! No warranties, no returns and strictly no spitting. Thank you.</p>
<p><span id="more-173"></span></p>
<p>[ad#ad-2]</p>
<h3 id="Instructions">Instructions</h3>
<ol>
<li>Open the Terminal.app (Applications/Utilities/Terminal)
</li>
<li>Then type in the following (just copy-n-paste):<br />
<code>cd /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Resources/</code>
</li>
<li>Press Enter/Return
</li>
<li>Then type in the following followed by enter:<br />
<code>sudo mv Extras.rsrc Extras.rsrc.BAD</code><br />
Enter your normal user pass when prompted!
</li>
<li>Type in the following followed by enter:<br />
<code>sudo mv Extras.rsrc.orig Extras.rsrc</code><br />
Enter your normal user pass when prompted!
</li>
<li>Then close everything down and restart your Mac
</li>
<li>Log back in and keep your fingers crossed&#8230;
</li>
<li>Open a folder and enjoy the good old (ugly) metalised theme <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
</li>
</ol>
<p>Reference: <br />
<a href="http://forum.macbidouille.com/lofiversion/index.php/t136881.html">http://forum.macbidouille.com/lofiversion/index.php/t136881.html</a><br />
<a href="http://www.versiontracker.com/dyn/moreinfo/macosx/21363&#038;vid=120903&#038;mode=feedback">Version Tracker Info and Feedback on Whiteout</a><br />
<a href="http://www.suicidegirls.com/apps/whiteout/">Whiteout Developer Site</a></p>
<p>Good luck and let me know whether it works for you <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>[print_link] </p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/uninstalling-whiteout-from-os-x-tiger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Forum Integration</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/wordpress-forum-integration/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-forum-integration</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/wordpress-forum-integration/#comments</comments>
		<pubDate>Tue, 01 Nov 2005 12:07:55 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://segebrecht.com/axel/design/websites/wordpress-forum-integration/</guid>
		<description><![CDATA[If you would like to integrate a forum with your WordPress install like they have on wordpress.org/support/ than point your browser to the miniBB + WordPress integration post. Alternatively you could just download the hack in a handy ZIP file, read the intall guide and get happy quicker. Have fun.]]></description>
			<content:encoded><![CDATA[<p>If you would like to integrate a forum with your <a href="http://www.wordpress.org/" title="Wordpress CMS">WordPress</a> install like they have on <a href="http://www.wordpress.org/support/" title="Wordpress Support Forums">wordpress.org/support/</a> than point your browser to the <a href="http://www.minibb.net/synchronizing_minibb.html" title="Integrating miniBB forum with WordPress">miniBB + WordPress integration post</a>. <span id="more-163"></span></p>
<p>Alternatively you could just <a href="http://www.minibb.net/download.php?file=solwordpress">download the hack in a handy ZIP file</a>, read the intall guide and get happy quicker. Have fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/wordpress-forum-integration/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Integramod 1.4.0 Chmod via Commandline</title>
		<link>http://www.axelsegebrecht.com/tutorials-and-tips/integramod-140-chmod-via-commandline/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=integramod-140-chmod-via-commandline</link>
		<comments>http://www.axelsegebrecht.com/tutorials-and-tips/integramod-140-chmod-via-commandline/#comments</comments>
		<pubDate>Wed, 19 Oct 2005 19:15:19 +0000</pubDate>
		<dc:creator>Axel</dc:creator>
				<category><![CDATA[Tutorials & Tips]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[commandline]]></category>
		<category><![CDATA[integramod]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://segebrecht.com/axel/?p=34</guid>
		<description><![CDATA[If you employ IntegraMod 1.4.0 and use the command line to work on your site like me, then these two simple commands might help you save some valuable time. Just copy-n-paste the two commands from the text file and your standard IntegraMod 1.4.0 files and folders will have the right permissions. Please note that the ...]]></description>
			<content:encoded><![CDATA[<p>If you employ <a href="http://www.integramod.com/">IntegraMod 1.4.0</a> and use the command line to work on your site like me, then these two simple commands might help you save some valuable time. <span id="more-162"></span></p>
<p>Just copy-n-paste the two commands from the <a href='http://segebrecht.com/axel/uploads/im140chmodcmdline.txt' title='IntegraMod 1.4.0 Chmod Commands for Shell use.'>text file</a> and your standard <a href="http://www.integramod.com/">IntegraMod 1.4.0</a> files and folders will have the right permissions. Please note that the two commands have to be on one line each! Make sure that it is before you copy and paste it into your shell by turning off &#8220;wrap text&#8221; in your text editor. Questions? Please post your comments below.</p>
<p>Also note that I cannot offer any guarantees that it&#8217;ll work for you. However, there&#8217;s not much that can go wrong with this really since you are only changing file and folder permissions <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Have fun <img src='http://www.axelsegebrecht.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<h3 id="Download:">Download:</h3>
<p><a href='http://segebrecht.com/axel/uploads/im140chmodcmdline.txt' title='IntegraMod 1.4.0 Chmod Commands for Shell use.'>IntegraMod 1.4.0 Chmod Commands for Shell use.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.axelsegebrecht.com/tutorials-and-tips/integramod-140-chmod-via-commandline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 8/82 queries in 0.021 seconds using memcached
Object Caching 1625/1862 objects using apc

Served from: www.axelsegebrecht.com @ 2012-02-08 22:48:18 -->
