<?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>The Thinking Lemur</title>
	<atom:link href="http://thinkinglemur.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinkinglemur.com</link>
	<description>from the mind of Donnie Bachan</description>
	<lastBuildDate>Mon, 24 Feb 2014 10:45:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Handy Linux Commands</title>
		<link>http://thinkinglemur.com/index.php/2014/02/handy-linux-commands/</link>
		<comments>http://thinkinglemur.com/index.php/2014/02/handy-linux-commands/#comments</comments>
		<pubDate>Mon, 24 Feb 2014 10:44:40 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=583</guid>
		<description><![CDATA[This post is simply a personal reference of useful Linux commands. Feel free to comment and suggest new ones to add to the list. VSFTP Add a user - useradd &#60;username&#62; Set a password - passwd &#60;username&#62; Prevent user from login - usermod -s /sbin/nologin &#60;username&#62; Change user's home directory - usermod -d &#60;path to [...]]]></description>
				<content:encoded><![CDATA[<p>This post is simply a personal reference of useful Linux commands. Feel free to comment and suggest new ones to add to the list.</p>
<p>VSFTP</p>
<ol>
<li><span style="line-height: 13px;">Add a user - useradd &lt;username&gt;</span></li>
<li>Set a password - passwd &lt;username&gt;</li>
<li>Prevent user from login - usermod -s /sbin/nologin &lt;username&gt;</li>
<li>Change user's home directory - usermod -d &lt;path to directory&gt; &lt;username&gt;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2014/02/handy-linux-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git basics: Part 1</title>
		<link>http://thinkinglemur.com/index.php/2012/08/git-basics-part-1/</link>
		<comments>http://thinkinglemur.com/index.php/2012/08/git-basics-part-1/#comments</comments>
		<pubDate>Sat, 25 Aug 2012 21:37:01 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=567</guid>
		<description><![CDATA[This post is intended to serve as a reference for me as I begin my journey into Git. First set up some basic settings on your Git install: $ git config --global user.name "Donnie" $ git config --global user.email "myemail@mydomain.com" Creating a new repository: From within the working directory of the project run: $ git [...]]]></description>
				<content:encoded><![CDATA[<p>This post is intended to serve as a reference for me as I begin my journey into Git.</p>
<p><em>First set up some basic settings on your Git install:</em></p>
<pre class="bash">$ git config --global user.name "Donnie"
$ git config --global user.email "myemail@mydomain.com"</pre>
<p><em>Creating a new repository:</em></p>
<p>From within the working directory of the project run:</p>
<pre class="bash">$ git init</pre>
<p>Stage a file (let Git know you will be committing this file at some point):</p>
<pre class="bash">$ git add &lt;filename&gt;</pre>
<p>Check the status of the current repo:</p>
<pre class="bash">$ git status</pre>
<p>Un-stage (revert a file):</p>
<pre class="bash">$ git reset HEAD &lt;filename&gt;</pre>
<p>Commit changes (with a message):</p>
<pre class="bash">$ git commit -m "my commit message"</pre>
<p>Add the entire directory to staging:</p>
<pre class="bash">$ git add .</pre>
<p>Display a log:</p>
<pre class="bash">$ git log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short</pre>
<p>&nbsp;</p>
<p>I'm really liking Git already!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2012/08/git-basics-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you&#8217;re not using Git, you&#8217;re missing a trick</title>
		<link>http://thinkinglemur.com/index.php/2012/08/if-youre-not-using-git-youre-missing-a-trick/</link>
		<comments>http://thinkinglemur.com/index.php/2012/08/if-youre-not-using-git-youre-missing-a-trick/#comments</comments>
		<pubDate>Sat, 18 Aug 2012 00:03:00 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=562</guid>
		<description><![CDATA[I fell in love with Subversion some years ago and now I use it daily. It's not perfect and I don't really use it to it's potential but it's pretty nifty for my requirements. Recently, the number of projects I've been managing has grown and with it the number of developers working on projects. The [...]]]></description>
				<content:encoded><![CDATA[<p>I fell in love with Subversion some years ago and now I use it daily. It's not perfect and I don't really use it to it's potential but it's pretty nifty for my requirements. Recently, the number of projects I've been managing has grown and with it the number of developers working on projects. The rate at which features are being added, bugs fixed, releases deployed has also increased tremendously and it isn't going to slow down any time soon. A side effect of all of this has been that I've started looking at the tools we use to develop, manage and deploy our code.</p>
<p>Subversion has worked well for us for a while but now, somehow, it seems clunky and slow. Maybe I'm not using it correctly but I've started looking at alternatives and well Git is the hot stuff strutting around town at the moment, so I've decide to give it a spin. Getting my head around how Git differs from traditional VCSes took a minute but while reading <a href="http://nvie.com/posts/a-successful-git-branching-model/" target="_blank">this post on branching and Git</a> all the pieces fell into place.</p>
<p>The second place to go is to <a href="http://gitimmersion.com/index.html" target="_blank">Git Immersion</a>. The best way to learn is by doing and GI has that covered! After that, keep the <a href="http://git-scm.com/" target="_blank">SCM Book</a> handy at all times. It will keep the hair on you head!</p>
<p>Hope these are helpful, I know it was to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2012/08/if-youre-not-using-git-youre-missing-a-trick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t do this &#8211; Mobile Usability</title>
		<link>http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/</link>
		<comments>http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/#comments</comments>
		<pubDate>Mon, 30 Jul 2012 12:04:29 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[Conversion Rate Optimisation]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=548</guid>
		<description><![CDATA[I received a text message today offering a 2 for 1 voucher from my local pub. I was quite impressed because the text message was very targeted and considering it is a pretty sunny day I thought it was very relevant. This was where my admiration ended. What follows is the steps I took to [...]]]></description>
				<content:encoded><![CDATA[<p>I received a text message today offering a 2 for 1 voucher from my local pub. I was quite impressed because the text message was very targeted and considering it is a pretty sunny day I thought it was very relevant. This was where my admiration ended. What follows is the steps I took to get the voucher. Ready?</p>
<p>I have a iPhone 3GS. My text message said to click on a link to get my voucher. I did so and was sent to my Safari app and the following screen was loaded:</p>
<p><a href="http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/2012-07-30-12-21-33/" rel="attachment wp-att-549"><img class="alignnone size-full wp-image-549" title="Screen 1" src="http://thinkinglemur.com/wp-content/uploads/2012/07/2012-07-30-12.21.33.png" alt="Find a Proper Pub first screen" width="320" height="480" /></a></p>
<p>There was no mention of the offer on this page. I thought, maybe I need to go to the mobile site. So I clicked the "Or Continue To The Mobile Proper Pubs Website" at which point I was presented with this screen:</p>
<p><a href="http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/2012-07-30-12-21-53/" rel="attachment wp-att-550"><img class="alignnone size-full wp-image-550" title="Screen 2" src="http://thinkinglemur.com/wp-content/uploads/2012/07/2012-07-30-12.21.53.png" alt="Mobile Proper Pub Website" width="320" height="480" /></a></p>
<p>Still no mention of the voucher. There was an advert for another thing I could win but not the reason I came to the site. So, being in the business of web applications, I think to myself, something must have gone wrong, let's try this again. I go to the text message and click the link again:</p>
<p><a href="http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/2012-07-30-12-22-31/" rel="attachment wp-att-551"><img class="alignnone size-full wp-image-551" title="Screen 3" src="http://thinkinglemur.com/wp-content/uploads/2012/07/2012-07-30-12.22.31.png" alt="Proper Pub Mobile home screen from offer" width="320" height="480" /></a></p>
<p>Hmmm....still no mention of the offer. Being curious I decided to scroll down:</p>
<p><a href="http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/2012-07-30-12-22-50/" rel="attachment wp-att-552"><img class="alignnone size-full wp-image-552" title="Screen 4" src="http://thinkinglemur.com/wp-content/uploads/2012/07/2012-07-30-12.22.50.png" alt="Advert revealed!" width="320" height="480" /></a></p>
<p>Aha! Here is the voucher advert. Now how to do I sign up? Erm, do I click the Terms &amp; Conditions link? The advert itself isn't clickable, so what do I do now? At this point I had given up but decided to play around with the app. I put my post code in and clicked search:</p>
<p><a href="http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/2012-07-30-12-23-57/" rel="attachment wp-att-553"><img class="alignnone size-full wp-image-553" title="Screen 6" src="http://thinkinglemur.com/wp-content/uploads/2012/07/2012-07-30-12.23.57.png" alt="Search results" width="320" height="480" /></a></p>
<p>I then clicked on the Butchers Hook because that is the pub closest to me and the one named in the original text message.</p>
<p><a href="http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/2012-07-30-12-24-21/" rel="attachment wp-att-554"><img class="alignnone size-full wp-image-554" title="Screen 7" src="http://thinkinglemur.com/wp-content/uploads/2012/07/2012-07-30-12.24.21.png" alt="The Buthers Hook" width="320" height="480" /></a></p>
<p>Nice, my local pub. What else is there on this screen? After scrolling down:</p>
<p><a href="http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/2012-07-30-12-24-36/" rel="attachment wp-att-555"><img class="alignnone size-full wp-image-555" title="Screen 8" src="http://thinkinglemur.com/wp-content/uploads/2012/07/2012-07-30-12.24.36.png" alt="The Voucher!" width="320" height="480" /></a></p>
<p>Wait, finally! The link to get the voucher! At this point I was no longer interested in this but was pleased to note that the voucher does actually exist somewhere in the app.</p>
<p>There are several issues with usability with this but the main problem is that the landing page for the link does not follow on from the original marketing message. Mobile developers need to realise that "above the fold" also applies to mobile screens, if I can't see something on my first screen, mobile devices usually don't give an clear indication that the screen is scrollable. Don't take anything for granted. Ever.</p>
<p>A redesigned version of this would include the following:</p>
<ol>
<li>Automatically redirect to the mobile site on detection of a mobile device</li>
<li>Clear instructions for receiving the voucher on the very first screen shown to the user.</li>
<li>Reduce the header, not really needed and just wasting precious space</li>
<li>Move the Get Voucher link to higher up on the page, even before the details of the pub. I came for the voucher, not to find details of the pub!</li>
</ol>
<p>&nbsp;</p>
<p>I believe these simple changes would help to increase conversion rates and reduce customer friction by a significant percentage!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2012/07/dont-do-this-mobile-usability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing CSS and JS</title>
		<link>http://thinkinglemur.com/index.php/2012/06/managing-css-and-js/</link>
		<comments>http://thinkinglemur.com/index.php/2012/06/managing-css-and-js/#comments</comments>
		<pubDate>Tue, 19 Jun 2012 14:14:24 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=536</guid>
		<description><![CDATA[At iSUBSCRiBE (we sell magazine subscriptions) we developed a content management system that powers our primary website. When we originally designed the application framework the system would be stand alone. We didn't need additional websites. Inevitably business change required us to white label the site. Surprisingly the design lent itself to white labeling quite well. [...]]]></description>
				<content:encoded><![CDATA[<p>At iSUBSCRiBE (we sell <a title="Magazine Subscription Specialists" href="http://www.isubscribe.co.uk/" target="_blank">magazine subscriptions</a>) we developed a content management system that powers our primary website. When we originally designed the application framework the system would be stand alone. We didn't need additional websites. Inevitably business change required us to white label the site. Surprisingly the design lent itself to white labeling quite well. We were able to incorporate and manage the sites via the CMS quite easily. Management of assets on the other hand has proven to be more difficult.</p>
<p>Each white label requires a unique design and slightly different functionality, which we facilitate by keeping assets unique per site. This is a pretty logical way to handle these files, since the application itself has core files that are shared across sites with site specific design held locally. Consistency across core attributes however is a problem. For instance if jQuery is updated on the core system you want to keep this consistent across all the white labels, at present, this requires manual updating of each site. This can be annoying. A nifty little solution has been posted by Peter from <a href="http://gathercontent.com" target="_blank">GatherContent</a> to help with these sort of issues. Check out the blog post <a href="http://blog.gathercontent.com/combine-and-compress-css-and-js-on-the-fly">http://blog.gathercontent.com/combine-and-compress-css-and-js-on-the-fly</a>. Incorporating this into our build process will help with management of assets that need to be update to the latest version across every one of our sites without having to manually update each site individually.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2012/06/managing-css-and-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cropping PDF Pages in Adobe Acrobat X</title>
		<link>http://thinkinglemur.com/index.php/2012/03/cropping-pdf-pages-in-adobe-acrobat-x/</link>
		<comments>http://thinkinglemur.com/index.php/2012/03/cropping-pdf-pages-in-adobe-acrobat-x/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 09:58:26 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Thinking]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=519</guid>
		<description><![CDATA[One of the wonderful things that has happened in Adobe Acrobat X is that the navigation has been completely redone, it's awesome! (If you didn't get the sarcasm in that statement then I assure you, I don't think it's awesome!). So without further delay, here is how you would find the crop box and trim [...]]]></description>
				<content:encoded><![CDATA[<p>One of the wonderful things that has happened in Adobe Acrobat X is that the navigation has been completely redone, it's awesome! (If you didn't get the sarcasm in that statement then I assure you, I don't think it's awesome!). So without further delay, here is how you would find the crop box and trim box settings in Acrobat X.</p>
<p>1. Click Tools</p>
<p><a href="http://thinkinglemur.com/index.php/2012/03/cropping-pdf-pages-in-adobe-acrobat-x/click-tools/" rel="attachment wp-att-520"><img class="alignnone size-full wp-image-520" title="Click Tools" src="http://thinkinglemur.com/wp-content/uploads/2012/03/click-tools.png" alt="" width="478" height="129" /></a></p>
<p>2. Click Show/Hide Panels</p>
<p><a href="http://thinkinglemur.com/index.php/2012/03/cropping-pdf-pages-in-adobe-acrobat-x/click-show-hide-panels/" rel="attachment wp-att-521"><img class="alignnone size-full wp-image-521" title="Show Hide Panels" src="http://thinkinglemur.com/wp-content/uploads/2012/03/click-show-hide-panels.png" alt="" width="352" height="289" /></a></p>
<p>3. Select Print Production</p>
<p><a href="http://thinkinglemur.com/index.php/2012/03/cropping-pdf-pages-in-adobe-acrobat-x/click-print-production/" rel="attachment wp-att-522"><img class="alignnone size-full wp-image-522" title="Select Print Production" src="http://thinkinglemur.com/wp-content/uploads/2012/03/click-print-production.png" alt="" width="244" height="339" /></a></p>
<p>4. Click Set Page Boxes</p>
<p><a href="http://thinkinglemur.com/index.php/2012/03/cropping-pdf-pages-in-adobe-acrobat-x/click-set-page-boxes/" rel="attachment wp-att-523"><img class="alignnone size-full wp-image-523" title="Select Set Page Boxes" src="http://thinkinglemur.com/wp-content/uploads/2012/03/click-set-page-boxes.png" alt="" width="403" height="480" /></a></p>
<p>5. Do your cropping!</p>
<p><a href="http://thinkinglemur.com/index.php/2012/03/cropping-pdf-pages-in-adobe-acrobat-x/set-page-boxes-dialog/" rel="attachment wp-att-524"><img class="alignnone size-full wp-image-524" title="set-page-boxes-dialog" src="http://thinkinglemur.com/wp-content/uploads/2012/03/set-page-boxes-dialog.png" alt="" width="500" height="448" /></a></p>
<p>&nbsp;</p>
<p>Hope this helps some of you out there!</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2012/03/cropping-pdf-pages-in-adobe-acrobat-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Railo 3 Beginner&#8217;s Guide: A Review</title>
		<link>http://thinkinglemur.com/index.php/2012/03/railo-3-beginners-guide-a-review/</link>
		<comments>http://thinkinglemur.com/index.php/2012/03/railo-3-beginners-guide-a-review/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 23:55:33 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=491</guid>
		<description><![CDATA[I've been a big fan of the Railo initiative for some time simply because I'm a big fan of ColdFusion and the fact that you can deploy your apps for free on an open platform. The Railo 3 Beginner's Guide was written by some of the key members of the Railo team including Mark Drew [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://thinkinglemur.com/index.php/2012/03/railo-3-beginners-guide-a-review/9781849513401cov-indd/" rel="attachment wp-att-498"><img class="wp-image-498 alignleft" style="margin: 0 10px 10px 0px;" title="Railo 3 Beginner's Guide" src="http://thinkinglemur.com/wp-content/uploads/2012/03/3401OS_Railo-3-Beginners-Guidecov-243x300.jpg" alt="" width="119" height="147" /></a>I've been a big fan of the Railo initiative for some time simply because I'm a big fan of ColdFusion and the fact that you can deploy your apps for free on an open platform. The <a href="http://www.packtpub.com/railo-3-beginners-guide-to-develop-deploy-complex-applications-online/book">Railo 3 Beginner's Guide</a> was written by some of the key members of the Railo team including Mark Drew and Gert Franz which makes it an attractive offering. You get it straight from the horse's mouth so to speak.</p>
<p>So, what's in the book? You will get more than just a beginner's guide to Railo and you'll delve into the world of ColdFusion development starting with some basic topics such as variable scopes while being ushered along to some, in my opinion, quite advanced topics like ORM and Caching. The book importantly gives very detailed step by step instructions (with screenshots) on installing Railo and configuring the administrator. I also like the fact that the examples cover the three main development platforms Windows, OS X and Linux allowing just about anyone to get up and running quickly. I like to follow along while learning new topics and this book provided a very good platform for learning and interacting with ColdFusion. One concept that I was happy to see explained was Server and Web contexts, this topic can be very handy as you start deploying larger applications.</p>
<p>I do have a couple small issues with the book. Firstly, I think the language at the start of the book seems aimed at someone who is just starting out with web development but it quickly jumps into concepts that aren't so elementary. While this may appeal to some I think the tone was a bit mixed. Secondly, I don't think there was a clear enough distinction between what is Railo specific and the Adobe ColdFusion Server product. Although I don't think that's a big issue. All in all I think the book did a very good job of introducing Railo, allowing you to get up and running and gives a very good introduction of ColdFusion. Great work Mark, Gert, Paul and Jordan!</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2012/03/railo-3-beginners-guide-a-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook logout ads or why Facebook has revenue generation wrong</title>
		<link>http://thinkinglemur.com/index.php/2012/03/facebook-logout-ads-or-why-facebook-has-revenue-generation-wrong/</link>
		<comments>http://thinkinglemur.com/index.php/2012/03/facebook-logout-ads-or-why-facebook-has-revenue-generation-wrong/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 12:32:22 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=479</guid>
		<description><![CDATA[Facebook recently announced Premium On Facebook, which is their latest strategy for delivering an advertising platform on the world's largest social network. One of the big new features is the "Logout Page ads" which displays a massive ad when a user logs out of their session. This isn't the first time this sort of advertising [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://thinkinglemur.com/index.php/2012/03/facebook-logout-ads-or-why-facebook-has-revenue-generation-wrong/fb-keynote-2/" rel="attachment wp-att-502"><img class="wp-image-502 alignnone" style="margin-right: 10px; margin-bottom: 10px;" title="fb-keynote" src="http://thinkinglemur.com/wp-content/uploads/2012/03/fb-keynote1.jpg" alt="" width="470" height="265" /></a>Facebook recently announced Premium On Facebook, which is their latest strategy for delivering an advertising platform on the world's largest social network. One of the big new features is the "Logout Page ads" which displays a <a href="http://www.theverge.com/2012/3/2/2840247/facebook-log-out-page-ads-bing?utm_source=rickmans.me&amp;utm_medium=twitter&amp;utm_campaign=social">massive ad</a> when a user logs out of their session. This isn't the first time this sort of advertising has been seen and has been on many of the smaller sites all over the internet for years. I do believe though that FB is going after revenue generation incorrectly. Paid advertising obviously makes money, just ask Google, and with 800 million users floating around advertisers are more than willing to take a punt on the platform. However, my opinion on the matter is that as more and more people spend more and more time on Facebook they will be more and more willing to perform all their activities on the single platform. It's the one thing that Google has been pushing for but Facebook is uniquely poised to achieve, and that's making the WWW "disappear" and replacing it with a single point of browsing. There are millions of people whose only interaction with the internet is via Facebook. They don't know how to send email, shop or even search but they can go on Facebook and comment on photos! With this sort of platform already in place, a smart FB would make it easy for customers to shop. Everyone seems to think that this is an insane idea, you go to Facebook to be social not to shop. True, I'm not advocating that you put the shopping experience directly in the user's face, but if you provide a platform for users to be able to purchase items based on the social interactions of the people they trust and respect, aka, their friends, they will be more than likely to buy quickly.</p>
<p>Here is the way I think the platform should go:</p>
<ul>
<li>Create an ecommerce platform that aggregates products from business all over the net, similar to Amazon</li>
<li>Provide a single click pay platform similar to the Apple App Store, get rid of FB credits!</li>
<li>Utilise social graph data to deliver shopping recommendations in current ad spots</li>
<li>Capitalise on gifting and deliver social and group gifting</li>
<li>There will only be one store front and businesses paid on a CPA basis as well as a percentage of clicks to ads for their products</li>
</ul>
<p>Most people seem to disagree with me on this option but I do believe that if Facebook puts this platform in place now they will continue to build on their existing revenue base and take significant market share away from the likes of Amazon and Groupon while giving the big G a massive kick in the gut as well by reducing the dependence on external search.</p>
<p>What do  you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2012/03/facebook-logout-ads-or-why-facebook-has-revenue-generation-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winners never quit&#8230;</title>
		<link>http://thinkinglemur.com/index.php/2012/01/winners-never-quit/</link>
		<comments>http://thinkinglemur.com/index.php/2012/01/winners-never-quit/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 23:11:15 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=461</guid>
		<description><![CDATA[My last post on here was way back in July and I should be ashamed of myself. I start every year with the hope that I'll be an amazing blogger and the internet will adore me, I will score fans and forever be admired. As I get older, I realise that this is not likely [...]]]></description>
				<content:encoded><![CDATA[<p>My last post on here was way back in July and I should be ashamed of myself. I start every year with the hope that I'll be an amazing blogger and the internet will adore me, I will score fans and forever be admired. As I get older, I realise that this is not likely to happen, however, I'll continue to post here and be determined to make a little comment about something everyday.</p>
<p>So, for my first post of 2012 I will comment on my wonderful trip to Paris. I really love that city. I stayed at the amazing <a href="http://www.hoteljules.com/">Hotel Jules</a>, one of the GLA Hotels and had the privilege of being looked after by Mr. Jean-Louis Descoins and his exceptional staff. Don't forget to stay there on your next trip to the city of love. The weather was dull and grey most days but the sites never cease to amaze. I made my way to the Musee D'Orsay and Sacre Coeur, two sites that you must visit at least once. I did have the chance to catch up on my reading, and I'll tell you something, I really love my <a href="http://www.amazon.co.uk/Kindle-Wireless-Reader-3G-Wifi-Graphite/dp/B002LVUWFE">Kindle Keyboard</a>! I was able to power through the last bits of <a href="http://www.amazon.co.uk/Once-Future-King-ebook/dp/B0046A9MRC/ref=sr_1_1?s=digital-text&amp;ie=UTF8&amp;qid=1325545614&amp;sr=1-1">The Once and Future King by T.H. White</a> and knock off the classic <a href="http://www.amazon.co.uk/The-Great-Gatsby-ebook/dp/B004JU0K48/ref=sr_1_1?s=digital-text&amp;ie=UTF8&amp;qid=1325545639&amp;sr=1-1">The Great Gatsby by F. Scott Fitzgerald</a>. Thanks to some generous gift giving I've also got <a href="http://www.amazon.co.uk/World-War-Z-ebook/dp/B003WE9TU8/ref=sr_1_1?s=digital-text&amp;ie=UTF8&amp;qid=1325546036&amp;sr=1-1">World War Z by Max Brooks</a> and <a href="http://www.amazon.co.uk/Girl-Dragon-Tattoo-ebook/dp/B002RI9ZQ8/ref=sr_1_1?s=digital-text&amp;ie=UTF8&amp;qid=1325546072&amp;sr=1-1">The Girl with the Dragon Tattoo by Steig Larsson</a> on my list. I know, I'm such an amateur when it comes to reading for fun but I'm hoping to turn pro pretty soon!</p>
<p>What's on your reading list?</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2012/01/winners-never-quit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s recent UI changes get a +1</title>
		<link>http://thinkinglemur.com/index.php/2011/07/googles-recent-ui-changes-get-a-1/</link>
		<comments>http://thinkinglemur.com/index.php/2011/07/googles-recent-ui-changes-get-a-1/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 00:30:45 +0000</pubDate>
		<dc:creator>Donnie Bachan</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thinkinglemur.com/?p=457</guid>
		<description><![CDATA[I finally had a chance to look at Google+ tonight and in all honesty it is everything I expected it to be. It isn't much at the moment since being on a social network without many friends is like being at a rock concert by yourself. However, the user interface really appeals to me. In [...]]]></description>
				<content:encoded><![CDATA[<p>I finally had a chance to look at Google+ tonight and in all honesty it is everything I expected it to be. It isn't much at the moment since being on a social network without many friends is like being at a rock concert by yourself. However, the user interface really appeals to me. In fact, all of the UI changes implemented by Google in recent days are exceptional. Yes, people will still find faults but I like the consistency across the services. The design itself makes really good use of soft lines and subtle highlights. I've also loaded the new design for Gmail, which is particularly stunning. The additional white space and sparing use of color as prominent call to actions is really exceptional. I suppose it will only be a matter of time before this is rolled out across the other properties. I know this would be a welcome change to the Google Docs section.</p>
<p>All in all I like the direction that Google is taking. Consistency in branding is always a big plus.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkinglemur.com/index.php/2011/07/googles-recent-ui-changes-get-a-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
