<?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>Kim Lindberg</title>
	<atom:link href="http://kimlindberg.com/feed" rel="self" type="application/rss+xml" />
	<link>http://kimlindberg.com</link>
	<description></description>
	<lastBuildDate>Fri, 19 Apr 2013 20:49:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>The ultimate MAMP setup</title>
		<link>http://kimlindberg.com/blog/2013/04/19/the-ultimate-mamp-setup?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-ultimate-mamp-setup</link>
		<comments>http://kimlindberg.com/blog/2013/04/19/the-ultimate-mamp-setup#comments</comments>
		<pubDate>Fri, 19 Apr 2013 20:49:33 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=389</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p>Thank you <a href="http://eddmann.com/">Edward Mann</a> for the tip. Saving this great setup for future use. Now I can take advantage of automatic updates with &#8216;brew upgrade&#8217;. I skipped some parts like the dnsmasq which I find a bit too complicated. /etc/hosts serves just fine.</p>
<h2>Install php and mysql using brew</h2>
<pre>$ brew tap josegonzalez/homebrew-php
$ brew install php54
$ brew install mysql
$ sudo mkdir /var/mysql
$ sudo ln -s /tmp/mysql.sock /var/mysql/mysql.sock</pre>
<h2></h2>
<h2>Setup apache with a virtual document root</h2>
<p>By doing this you don&#8217;t have to create new virtual host settings for new sites. The url you enter will be automatically mapped to the folder with the same name on your disk.</p>
<pre class="brush: xml; title: /etc/apache2/users/your-username.conf; notranslate">

NameVirtualHost *:80

&lt;Directory '/Users/your-username/Sites/'&gt;
  Options Indexes MultiViews FollowSymLinks Includes
  AllowOverride All
  Order allow,deny
  Allow from all
&lt;/Directory&gt;

&lt;VirtualHost *:80&gt;
  UseCanonicalName off
  VirtualDocumentRoot /Users/your-username/Sites/%1
&lt;/VirtualHost&gt;

</pre>
<h2>Start Apache and MySQL</h2>
<pre>$ sudo apachectl restart
$ mysql.server start</pre>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2013/04/19/the-ultimate-mamp-setup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preventing child pages in EPiServer from inheriting categories</title>
		<link>http://kimlindberg.com/blog/2013/04/17/preventing-child-pages-in-episerver-from-inheriting-categories?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=preventing-child-pages-in-episerver-from-inheriting-categories</link>
		<comments>http://kimlindberg.com/blog/2013/04/17/preventing-child-pages-in-episerver-from-inheriting-categories#comments</comments>
		<pubDate>Wed, 17 Apr 2013 08:12:50 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=382</guid>
		<description><![CDATA[When a customer requested to remove this behaviour I wasn&#8217;t aware it&#8217;s actually default in EPiServer. Whether it makes sense or not &#8211; it&#8217;s easy to get rid off.]]></description>
				<content:encoded><![CDATA[<p>When a customer requested to remove this behaviour I wasn&#8217;t aware it&#8217;s actually default in EPiServer. Whether it makes sense or not &#8211; it&#8217;s easy to get rid off.</p>
<pre class="brush: csharp; title: ; notranslate">
// Listen to the event that occurs when an empty page is loaded
// through GetPageDefaultPageData() e.g. when creating a page
DataFactory.Instance.LoadedDefaultPageData += Instance_LoadedDefaultPageData;

static void Instance_LoadedDefaultPageData(object sender, PageEventArgs e)
{
    // Clear the page's categories
    e.Page.Category.Clear();
}

</pre>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2013/04/17/preventing-child-pages-in-episerver-from-inheriting-categories/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apps in Beta</title>
		<link>http://kimlindberg.com/blog/2013/04/15/apps-in-beta?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apps-in-beta</link>
		<comments>http://kimlindberg.com/blog/2013/04/15/apps-in-beta#comments</comments>
		<pubDate>Mon, 15 Apr 2013 13:41:06 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=375</guid>
		<description><![CDATA[Need testing for your app? A friend of mine just started this project and I think it&#8217;s a great idea!]]></description>
				<content:encoded><![CDATA[<p>Need testing for your app? A friend of mine just started this project and I think it&#8217;s a great idea!</p>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2013/04/15/apps-in-beta/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Googly &#8211; a Gmail checker for OSX</title>
		<link>http://kimlindberg.com/blog/2013/03/08/googly-a-gmail-checker-for-osx?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=googly-a-gmail-checker-for-osx</link>
		<comments>http://kimlindberg.com/blog/2013/03/08/googly-a-gmail-checker-for-osx#comments</comments>
		<pubDate>Fri, 08 Mar 2013 09:43:15 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=295</guid>
		<description><![CDATA[Do you like the standard gmail web interface but need a clean way of getting notified when new mails arrive? Googly is a menu bar app for OSX Mountain Lion which checks your Gmail accounts at regular intervals. I built Googly with simplicity in mind. It integrates nicely into the OSX notification center, so that for [...]]]></description>
				<content:encoded><![CDATA[<p>Do you like the standard gmail web interface but need a clean way of getting notified when new mails arrive? Googly is a menu bar app for OSX Mountain Lion which checks your Gmail accounts at regular intervals.</p>
<p>I built Googly with simplicity in mind. It integrates nicely into the OSX notification center, so that for example notifications are disabled when in presentation mode. Later, you can just open the notification sidebar and click on each mail you&#8217;ve missed individually to open it in your default browser.</p>
<p>Except for navigation through the notification sidebar you can also click on the menu bar icon and see the unread mail count per account and open each account individually. It works with multiple accounts and hosted as not hosted accounts.</p>
<p>That&#8217;s what there is to it. So far. The app has only been tested in OSX Mountain Lion and only by a few people, so please be tolerant to bugs you may find and report them here or mail me directly.</p>
<p><a class="post-button blue-button orange-button" href="http://kimlindberg.com/wp-content/uploads/2013/03/Googly.zip">Download Googly 1.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2013/03/08/googly-a-gmail-checker-for-osx/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t search users in EPiServer with ActiveDirectoryMembershipProvider</title>
		<link>http://kimlindberg.com/blog/2013/02/14/cant-search-users-in-episerver-with-activedirectorymembershipprovider?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cant-search-users-in-episerver-with-activedirectorymembershipprovider</link>
		<comments>http://kimlindberg.com/blog/2013/02/14/cant-search-users-in-episerver-with-activedirectorymembershipprovider#comments</comments>
		<pubDate>Thu, 14 Feb 2013 15:00:48 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=281</guid>
		<description><![CDATA[When EPiServer calls the membership provider&#8217;s FindUsersByName/FindUsersByEmail it adds % around the string to enable wildcard searching in SQL. Unfortunately, Active Directory does not use % for wildcard, but an asterisk  (*). Maybe this is something EPiServer should fix? For now, there&#8217;s a pretty easy fix &#8211; override the above methods in your own inherited class [...]]]></description>
				<content:encoded><![CDATA[<p>When EPiServer calls the membership provider&#8217;s FindUsersByName/FindUsersByEmail it adds % around the string to enable wildcard searching in SQL. Unfortunately, Active Directory does not use % for wildcard, but an asterisk  (*). Maybe this is something EPiServer should fix? For now, there&#8217;s a pretty easy fix &#8211; override the above methods in your own inherited class and string replace % with *.</p>
<pre class="brush: csharp; title: MyActiveDirectoryMembershipProvider.cs; notranslate">
 public class MyActiveDirectoryMembershipProvider : System.Web.Security.ActiveDirectoryMembershipProvider
    {
        public override System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
        {
            return base.FindUsersByName(usernameToMatch.Replace(&quot;%&quot;, &quot;*&quot;), pageIndex, pageSize, out totalRecords);
        }

        public override System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
        {
            return base.FindUsersByEmail(emailToMatch.Replace(&quot;%&quot;, &quot;*&quot;), pageIndex, pageSize, out totalRecords);
        }
    }
</pre>
<p>Remember to change provider in web.config!</p>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2013/02/14/cant-search-users-in-episerver-with-activedirectorymembershipprovider/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick tips on developing Cocoa apps</title>
		<link>http://kimlindberg.com/blog/2012/12/21/quick-tips-on-developing-cocoa-apps?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=quick-tips-on-developing-cocoa-apps</link>
		<comments>http://kimlindberg.com/blog/2012/12/21/quick-tips-on-developing-cocoa-apps#comments</comments>
		<pubDate>Fri, 21 Dec 2012 10:31:47 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=252</guid>
		<description><![CDATA[Fire event after computer has awaken from sleep Send a notification to the notification center in OSX Mountain Lion Create that nice looking sliding down window used in the Twitter app amongst many The sliding window is actually called a sheet. Here&#8217;s an example for when you have two windows within the same view controller:]]></description>
				<content:encoded><![CDATA[<h3>Fire event after computer has awaken from sleep</h3>
<pre class="brush: objc; title: ; notranslate">
// Become observe of the did wake notification
[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(receivedWakeNote:) name:NSWorkspaceDidWakeNotification object:nil];

- (void)receivedWakeNote: (NSNotification *)notification {
    // Code here
}
</pre>
<h3></h3>
<h3>Send a notification to the notification center in OSX Mountain Lion</h3>
<pre class="brush: objc; title: ; notranslate">
    NSUserNotification *notification = [[NSUserNotification alloc] init];
    notification.title = @&quot;Notification&quot;;
    notification.subtitle = @&quot;Hello world&quot;;
    notification.soundName = NSUserNotificationDefaultSoundName;

    [[NSUserNotificationCenter defaultUserNotificationCenter] deliverNotification:notification];
</pre>
<h3></h3>
<h3>Create that nice looking sliding down window used in the Twitter app amongst many</h3>
<h3><img title="Twitter sheet" alt="" src="http://kimlindberg.com/wp-content/uploads/2012/12/Screen-Shot-2012-12-06-at-17.36.28.png" width="508" height="318" /></h3>
<p>The sliding window is actually called a sheet. Here&#8217;s an example for when you have two windows within the same view controller:</p>
<pre class="brush: objc; title: ; notranslate">
// Activate the sheet
[NSApp beginSheet:_windowToSlideDown modalForWindow:self.window modalDelegate:self didEndSelector:nil contextInfo:nil];

// Close the sheet
[NSApp endSheet:self.accountDetailsSheet];
[self.accountDetailsSheet close];
</pre>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2012/12/21/quick-tips-on-developing-cocoa-apps/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Irssi log reader with PHP</title>
		<link>http://kimlindberg.com/blog/2012/10/13/irssi-log-reader-with-php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=irssi-log-reader-with-php</link>
		<comments>http://kimlindberg.com/blog/2012/10/13/irssi-log-reader-with-php#comments</comments>
		<pubDate>Sat, 13 Oct 2012 18:29:25 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=235</guid>
		<description><![CDATA[I realize this is pretty specific, but hey, I&#8217;m not in this for the money. Ever wanted to check what&#8217;s been happening on your screen:ed ssh irssi session without having to login and reattach, like through a web page? Then you&#8217;ve come to the right place &#8211; here&#8217;s a simple php script to do exactly [...]]]></description>
				<content:encoded><![CDATA[<p>I realize this is pretty specific, but hey, I&#8217;m not in this for the money. Ever wanted to check what&#8217;s been happening on your <a href="http://linux.die.net/man/1/screen">screen</a>:ed ssh irssi session without having to login and reattach, like through a web page? Then you&#8217;ve come to the right place &#8211; here&#8217;s a simple php script to do exactly that. Now you can sit back, relax and spy on your friends using your iphone or whatever!</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php

// Absolut path to irssi log files
$log_dir = &quot;/home/kim/.irssi/logs/localhost&quot;;
// Regex for log files to exclude
$exclude_channels = &quot;auth.log|q.log|_status.log&quot;;
// Number of channels to include in the report
$number_of_channels = 10;
// Number of lines per channels to include
$number_of_lines = 10;

$lines = shell_exec('
  ls `find '.$log_dir.' -type f -print` --sort=t |
  egrep -v &quot;'.$exclude_channels.'&quot; |
  head -n'.$number_of_channels.' |
  xargs tail -n'.$number_of_lines);

echo &quot;&lt;pre&gt;$lines&lt;/pre&gt;&quot;;

?&gt;
</pre>
<p>Tip: You can include multiple log dirs, just separate the paths in $log_dir by a space.</p>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2012/10/13/irssi-log-reader-with-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My OSX Terminal, Irssi and Vim setup</title>
		<link>http://kimlindberg.com/blog/2012/10/13/my-osx-terminal-irssi-and-vim-setup?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-osx-terminal-irssi-and-vim-setup</link>
		<comments>http://kimlindberg.com/blog/2012/10/13/my-osx-terminal-irssi-and-vim-setup#comments</comments>
		<pubDate>Sat, 13 Oct 2012 14:46:49 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=215</guid>
		<description><![CDATA[Vim Let&#8217;s start off with vim. First of all, Vim is useless to me without the power pack Janus. On top of this, I&#8217;ve added the fancy Powerline from Lokaltag, and some nice colors from Hybrid by w0ng. If I only knew some good way to work with .NET-development through VIM, I probably would have uninstalled all other [...]]]></description>
				<content:encoded><![CDATA[<h3>Vim</h3>
<p>Let&#8217;s start off with vim. First of all, Vim is useless to me without the power pack <a href="https://github.com/carlhuda/janus">Janus</a>. On top of this, I&#8217;ve added the fancy <a href="https://github.com/Lokaltog/vim-powerline">Powerline</a> from Lokaltag, and some nice colors from <a href="https://github.com/w0ng/vim-hybrid">Hybrid</a> by w0ng. If I only knew some good way to work with .NET-development through VIM, I probably would have uninstalled all other text editors by now.</p>
<h2>Irssi</h2>
<p>Yes, and then there&#8217;s Irssi. I really just have one word for you here &#8211; <a href="http://pbrisbin.com/posts/irssi">Pbrisbin</a>. I&#8217;ve made a couple of tweaks to it, but nothing important really. Here&#8217;s a list of all the plugins I use: adv_windowlist.pl, bitlbee_typing_notice.pl, hide.pl, link_titles.pl, nm.pl,  trackbar.plbitlbee_tab_completion.pl, facebook_bitlbee_rename.pl, hilightwin.pl  nicklist.pl, queryresume.pl, usercount.pl. I think most of these can be found at <a href="http://scripts.irssi.org">Irssi scripts</a>.</p>
<h2>OSX Terminal</h2>
<p>Nothing of the above will look right without the right terminal settings. w0ng has instructions on the hybrid theme page above on how to setup the colors for X11. I followed those instructions, plus some extra tweaks to get the terminal look right in OSX. Or even better, in my opinion (everything looks better in OSX ;)). Here&#8217;s the <a href="http://kimlindberg.com/wp-content/uploads/2012/10/KimLindberg.terminal.zip">Terminal theme</a> if you&#8217;re feeling lazy. The font I use is Liberation Mono 11 pt. Yes, and all should work through SSH, since the screens above are actually taken using SSH to a Linux machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2012/10/13/my-osx-terminal-irssi-and-vim-setup/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Some new app findings for Mac</title>
		<link>http://kimlindberg.com/blog/2012/09/28/some-new-app-findings-for-mac?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=some-new-app-findings-for-mac</link>
		<comments>http://kimlindberg.com/blog/2012/09/28/some-new-app-findings-for-mac#comments</comments>
		<pubDate>Fri, 28 Sep 2012 10:57:56 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=202</guid>
		<description><![CDATA[Maybe nothing new to the mac enthusiast, but here goes.. Transmit Before last post I spent some time exploring the options for mounting ssh drives through CLI. This time I went nuts and bought what seemed to be the best GUI alternative &#8211; Transmit. Although I haven&#8217;t even tried the built-in remote site explorer yet, I [...]]]></description>
				<content:encoded><![CDATA[<p>Maybe nothing new to the mac enthusiast, but here goes..</p>
<h3>Transmit</h3>
<p><img class="size-thumbnail wp-image-203 alignleft" title="Transmit" src="http://kimlindberg.com/wp-content/uploads/2012/09/card-screenshot1-150x150.png" alt="" width="150" height="150" /></p>
<p>Before last post I spent some time exploring the options for mounting ssh drives through CLI. This time I went nuts and bought what seemed to be the best GUI alternative &#8211; Transmit. Although I haven&#8217;t even tried the built-in remote site explorer yet, I can safely say it was worth the money considering how often I need to mount various remote drives to my local machine.</p>
<p>App Store or <a href="http://panic.com/transmit/">http://panic.com/transmit/</a></p>
<h3>Textual IRC Client</h3>
<p><img class="size-thumbnail wp-image-204 alignleft" title="Textual" src="http://kimlindberg.com/wp-content/uploads/2012/09/textualScreenshotNew-150x150.png" alt="" width="150" height="150" /></p>
<p>Still an IRC junkie like me? Sure, I still don&#8217;t know any more talented irc client than <a href="http://irssi.org">irssi</a>. But terminal has its drawbacks, and sometimes it&#8217;s nice to lay eyes on something more easing for the eyes. Textual is really the sleekest GUI alternative I found after a 10 minutes research!</p>
<p>App Store or <a href="http://codeux.com/textual/">http://codeux.com/textual/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2012/09/28/some-new-app-findings-for-mac/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting SSH on OS X Mountain Lion</title>
		<link>http://kimlindberg.com/blog/2012/08/10/mounting-ssh-on-os-x-mountain-lion?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mounting-ssh-on-os-x-mountain-lion</link>
		<comments>http://kimlindberg.com/blog/2012/08/10/mounting-ssh-on-os-x-mountain-lion#comments</comments>
		<pubDate>Fri, 10 Aug 2012 12:30:10 +0000</pubDate>
		<dc:creator>kim</dc:creator>
				<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://kimlindberg.com/?p=170</guid>
		<description><![CDATA[After some googling and trying I repeatedly failed to do something as trivial as mounting an ssh file system. I seemed to be the only one in the world getting error messages from MacFusion, MacFuse and other alternatives. This is the simple solution that worked for me &#8211; without any GUI-crap. Just uninstall everything you have [...]]]></description>
				<content:encoded><![CDATA[<p>After some googling and trying I repeatedly failed to do something as trivial as mounting an ssh file system. I seemed to be the only one in the world getting error messages from <a href="http://macfusionapp.org">MacFusion</a>, <a href="http://code.google.com/p/macfuse/">MacFuse</a> and other alternatives.</p>
<p>This is the simple solution that worked for me &#8211; without any GUI-crap. Just uninstall everything you have tried before, make sure you got <a href="http://mxcl.github.com/homebrew/">Homebrew</a>, and open a terminal:</p>
<ol>
<li><code>brew install fuse4x</code></li>
<li><code>brew install sshfs</code></li>
<li>Follow the instructions from <code>brew info fuse4x-kext</code></li>
<li><code>mkdir mountpoint</code></li>
<li><code>sshfs user@domain.com:/dir mountpoint</code></li>
</ol>
<div><span style="font-size: 12px; line-height: normal;">Voila!</span></div>
]]></content:encoded>
			<wfw:commentRss>http://kimlindberg.com/blog/2012/08/10/mounting-ssh-on-os-x-mountain-lion/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching using disk
Object Caching 563/588 objects using disk

 Served from: kimlindberg.com @ 2013-05-22 20:49:14 by W3 Total Cache -->