<?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>SCRIBBLE IT</title>
	<atom:link href="http://www.scribbleit.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scribbleit.co.uk/blog</link>
	<description>Web Development with WordPress and Thesis</description>
	<lastBuildDate>Mon, 19 Jul 2010 18:16:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Different Page Styles for WordPress</title>
		<link>http://www.scribbleit.co.uk/blog/2010/07/19/different-page-styles-for-wordpress/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/07/19/different-page-styles-for-wordpress/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 18:04:10 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=564</guid>
		<description><![CDATA[WordPress is being used increasingly for the development of fully-fledged websites. After all, it offers a powerful combination of being (at least in theory) easy to skin whilst also providing an excellent user interface for managing the site once it&#8217;s up and running. I&#8217;ve been developing a business creating WordPress sites using the excellent Thesis [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>WordPress is being used increasingly for the development of fully-fledged websites. After all, it offers a powerful combination of being (at least in theory) easy to skin whilst also providing an excellent user interface for managing the site once it&#8217;s up and running.</p>
<p>I&#8217;ve been developing a business creating WordPress sites using the excellent Thesis theme from DIYThemes.com. Thesis makes it possible to have pretty much any design you like, some of which can be implemented using the WordPress dashboard. To move significantly away from the Thesis default theme, however, you need to use CSS and Thesis makes this easy by making a .custom CSS class available. What this means is that any class based on .custom will override the equivalent class in a design. In practice, this means that if I wanted to have my own &lt;h3&gt; styling, I would simply apply it like this within custom.css:</p>
<pre>.custom h3 {
    color:#ff000;
}</pre>
<p>I&#8217;m sure you can immediately see the power of this: you can change the entire design this way without touching the core Thesis or WordPress CSS. Thesis also includes a wide range of addition Hooks into the WordPress framework but that&#8217;s beyond the scope of this article.</p>
<p>The problem is that websites (as opposed to blogs) often need very different layouts across their pages. In WordPress, when you add a Widget, it&#8217;s added for every page in the site whether you like it or not. What&#8217;s needed is extra flexibility in hiding, showing and editing all aspects of the page. Thesis does add the &#8220;no sidebar&#8221; template, but that still doesn&#8217;t give enough flexibility.</p>
<p>I want to talk about a little known feature that Thesis makes available for WordPress pages. You see, not only can you override css at a global level but also <strong>on each individual page</strong>. To access this, enter a new, unique, class name in the <strong>CSS</strong> field within the Page.<a href="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/07/wordpressthesisexample.png"><img class="aligncenter size-full wp-image-574" title="wordpressthesisexample" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/07/wordpressthesisexample.png" alt="" width="533" height="427" /></a></p>
<p>Once you&#8217;ve done this, you can access CSS properties using (in this case) the .resource class rather than .custom, but still within the custom.css file so it&#8217;s all in one place.</p>
<p>Let&#8217;s imagine, for example, that I want to hide one of the sidebars on my &#8220;Resources&#8221; page. Here&#8217;s how I&#8217;d do it:</p>
<ol>
<li>Load up Firefox and use the Web Developer Toolbar to find out the CSS selector used to display the sidebar</li>
<li>Open up custom.css and set this CSS&#8217;s display property to &#8220;none&#8221; like this:</li>
</ol>
<pre>.resource #sidebar_1 {
    display:none;
}</pre>
<p>Whilst you can, of course, achieve the same effect by creating a new template for the page, this is a much simpler way to make changes unless you want an entirely new layout.</p>
<p>You can also use the multimedia box in Thesis to add any HTML you like so it&#8217;s possible to further customise the page that way. There is a point, however, where all this customisation would be better done with an entirely new template. Once you start feeling as though you&#8217;re bodging it- that&#8217;s when to start from scratch. If all you want to do is hide or show sidebars or make other unique changes to the design of one page, give this technique a try, it&#8217;s a whole lot quicker!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/07/19/different-page-styles-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to the Scribbleit blog</title>
		<link>http://www.scribbleit.co.uk/blog/2010/07/19/welcome/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/07/19/welcome/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 09:24:05 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=280</guid>
		<description><![CDATA[Scribbleit is a UK based web design and hosting company. Scribbleit develops applications for clients and also develops its own web applications and ecommerce sites. PassYourTheory, MakingYourOwnCandles and PassYourCitizenship are all Scribbleit developments. Fixed price development Scribbleit is currently developing a product that will allow small business owners and others to have a fully designed site [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Scribbleit is a UK based web design and hosting company. Scribbleit develops applications for clients and also develops its own web applications and ecommerce sites. <a href="http://www.passyourtheory.co.uk" target="_blank">PassYourTheory</a>, <a href="http://www.makingyourowncandles.co.uk" target="_blank"> MakingYourOwnCandles</a> and <a href="http://www.passyourcitizenship.co.uk" target="_blank">PassYourCitizenship</a> are all Scribbleit developments.</p>
<h3>Fixed price development</h3>
<p>Scribbleit is currently developing a product that will allow small business owners and others to have a fully designed site built using WordPress technology and hosted on our space with built-in webmastering services <strong>for a fixed development price</strong> of <strong>£399</strong> followed by a low cost monthly hosting fee. This product is being tested with a number of clients at present before launch. If you&#8217;d like to find out how to be part of this beta test phase <a href="mailto:kevin.partner@scribbleit.co.uk" target="_blank">email me now</a> at kevin.partner@scribbleit.co.uk  to qualify for a £100 discount on the development fee.</p>
<p>Founder Kevin Partner has been a Contributing Editor of <a href="http://www.pcpro.co.uk/author/253598/kevin-partner" target="_blank">PC Pro</a> Magazine since 1996 and is also the author of <strong>How to set up an online business,</strong> a complete guide to planning, building and marketing a profitable web business idea: it even includes methods of ensuring that your idea will make money. Order it from <a href="http://www.amazon.co.uk/gp/product/1906372314?ie=UTF8&amp;tag=scribbleit-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=1906372314">Amazon.</a></p>
<p style="float: none;">Follow Kevin on Twitter at <a href="http://www.twitter.com/kevpartner">kevpartner </a>for all the latest technology and internet marketing news, and some undisguised grumpiness.</p>
<p>We use <a href="http://www.bigcommerce.com/575.html" target="_blank">BigCommerce</a>, by far and away the best online ecommerce solution we&#8217;ve found.</p>
<p><a href="http://www.bigcommerce.com/575-0-1-10.html" target="_blank"><img src="http://www.bigcommerce.com/affiliates/banners/728x90-mitch-1.gif" border="0" alt="" width="729" height="90" /><br />
<span id="more-280"></span><br />
Current Scribbleit Projects include:</a></p>
<p><a href="http://www.bigcommerce.com/575-0-1-10.html" target="_blank"> </a></p>
<ul><a href="http://www.bigcommerce.com/575-0-1-10.html" target="_blank"> </a></p>
<li><a href="http://www.bigcommerce.com/575-0-1-10.html" target="_blank">a publishing project with </a><a href="http://www.pcpro.co.uk" target="_blank">PCPro</a> Magazine</li>
<li>a 360 degree appraisal survey on behalf of a management consultancy including a highly graphical report delivered as a costomised PDF to each respondent</li>
<li>an online desktop publishing application for consumer use written in Flex/Flash and PHP</li>
<li>an ecommerce business selling Candle Making Kits to the public</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/07/19/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Ubuntu alongside Windows, the easy way</title>
		<link>http://www.scribbleit.co.uk/blog/2010/06/04/installing-ubuntu-alongside-windows-the-easy-way/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/06/04/installing-ubuntu-alongside-windows-the-easy-way/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 13:31:43 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=551</guid>
		<description><![CDATA[Out of curiosity, I wanted to find out how much of time time I could spend using Ubuntu. I am not about to abandon Windows 7 entirely as there are too many applications on that platform that I use (including Adobe&#8217;s CS5 suite) but I&#8217;d realised that I spend most of my time working in [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.scribbleit.co.uk/blog/2010/06/04/installing-ubuntu-alongside-windows-the-easy-way/" title="Permanent link to Installing Ubuntu alongside Windows, the easy way"><img class="post_image aligncenter" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/06/Screenshot1.png" width="500" height="313" alt="Post image for Installing Ubuntu alongside Windows, the easy way" /></a>
</p><p>Out of curiosity, I wanted to find out how much of time time I could spend using Ubuntu. I am not about to abandon Windows 7 entirely as there are too many applications on that platform that I use (including Adobe&#8217;s CS5 suite) but I&#8217;d realised that I spend most of my time working in a browser these days.</p>
<p>Here&#8217;s the best way to do it:</p>
<ul>
<li>Go to <a href="http://www.ubuntu.com/desktop/get-ubuntu/windows-installer" target="_blank">http://www.ubuntu.com/desktop/get-ubuntu/windows-installer</a> and click <strong>Start download. </strong>This will download the Wubi installer for Windows.</li>
<li>If you&#8217;re using a 64 bit processor (you almost certainly are) then Wubi will, unfortunately, install the 64 bit version of Ubuntu which the makers of Ubuntu themselves say is not for &#8220;daily use&#8221;. The problem is that drivers (relatively scare on Linux in the first place) and programs often only exist in the 32 bit version. This happened to me and I was forced to reinstall. To force it to use the 32 bit version, simply download the 32-bit iso image from <a href="http://www.ubuntu.com/desktop/get-ubuntu/download">http://www.ubuntu.com/desktop/get-ubuntu/download</a> into the same folder as Wubi.</li>
<li><strong>Run Wubi</strong>. You may well get a message about being unable to find drives. This is likely to be because you&#8217;ve got a built in media card reader. Simply click Continue time and time again until it goes away and all will be well.</li>
<li><strong>Reboot</strong>. You should see a text menu with your current Windows installation as the default and the new Ubuntu installation. Select Ubuntu and follow the steps through to complete the installation.</li>
</ul>
<p>You&#8217;ll find most of the commonly used applications have already been installed (including OpenOffice) but to add more software go to <strong>Applications &gt; Ubuntu Software Centre</strong> and do a search. You can find the Flash player and Filezilla there, for example. Google Chrome can be installed from within Firefox. Tweetdeck is slightly more involved but full information can be found by searching their user forum (hint: do <strong>not</strong> click the <strong>Install Now</strong> button as it doesn&#8217;t work).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/06/04/installing-ubuntu-alongside-windows-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Twitter Gadget for Windows Sidebar (or anywhere else) to display your follower numbers</title>
		<link>http://www.scribbleit.co.uk/blog/2010/04/15/creating-a-twitter-gadget-for-windows-sidebar-or-anywhere-else-to-display-your-followers/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/04/15/creating-a-twitter-gadget-for-windows-sidebar-or-anywhere-else-to-display-your-followers/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 18:34:11 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=512</guid>
		<description><![CDATA[I&#8217;ve spent a couple of hours this afternoon solving an irritation. I like to keep an eye on how many Twitter followers I have, not as an obsession of course but just out of interest. Doing so involves going to my Twitter page: www.twitter.com/kevpartner or clicking on my profile in Tweetdeck (having found a recent [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.scribbleit.co.uk/blog/2010/04/15/creating-a-twitter-gadget-for-windows-sidebar-or-anywhere-else-to-display-your-followers/" title="Permanent link to Creating a Twitter Gadget for Windows Sidebar (or anywhere else) to display your follower numbers"><img class="post_image alignright" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/04/widget.png" width="141" height="158" alt="Post image for Creating a Twitter Gadget for Windows Sidebar (or anywhere else) to display your follower numbers" /></a>
</p><p>I&#8217;ve spent a couple of hours this afternoon solving an irritation. I like to keep an eye on how many Twitter followers I have, not as an obsession of course but just out of interest. Doing so involves going to my Twitter page: <a href="http://www.twitter.com/kevpartner" target="_blank">www.twitter.com/kevpartner</a> or clicking on my profile in Tweetdeck (having found a recent tweet). What I want is a way to see the number all the time, preferably updating every few minutes.</p>
<p>So I created a simple Windows Sidebar gadget that interacts with the Twitter API using jQuery to retrieve this bit of data (it could retrieve anything, of course) every five minutes and display it in the sidebar.</p>
<p>I&#8217;m just going to show you the crucial bit. You&#8217;ll need to create a blank Sidebar Gadget using <a href="http://msdn.microsoft.com/en-us/magazine/cc163370.aspx" target="_blank">Microsoft&#8217;s instructions</a> and make it look however you want. The code would work in exactly the same way if inserted in a web page if you&#8217;d prefer.</p>
<p>This bit goes in the  &lt;head&gt;  section. It assumes you have jQuery in a subfolder called <strong>js</strong>.</p>
<pre>&lt;script src="js/jquery-1.4.2.min.js"&gt;&lt;/script&gt;
&lt;script&gt;

$(document).ready(function(){
getfollowers();

function getfollowers(){
requestURL = "http://api.twitter.com/1/users/show/kevpartner.json?callback=?";
$.getJSON(requestURL, callback);
}

function callback(data)
{
var now = new Date();
var theminutes=now.getMinutes();
if(theminutes&lt;10)
{
theminutes="0"+theminutes;
}
var thehours=now.getHours();
var thetime=thehours+":"+theminutes;
$('#time').text("at "+thetime);
$('#gadgetContent').text(data.followers_count+" followers");
setTimeout(getfollowers, 300000);
}
});
&lt;/script&gt;
&lt;/head&gt;</pre>
<p>There are two main functions. <strong>getfollowers()</strong> calls the Twitter API and asks it to return (in this case) my user data. It uses the <strong>getJSON </strong>method to do that and, once it gets a response, it calls the second function <strong>callback</strong></p>
<p><strong>callback</strong> calculates the current time (so I can see when it last updated) and also pulls out the <strong>followers_counts</strong> JSON element. These bits of information are then inserted in the appropriate <strong>span </strong>object using standard jQuery notation. The <strong>setTimeout</strong> function repeats the process every five minutes.</p>
<p>And this is the bit in the body:</p>
<pre>&lt;body&gt;
&lt;g:background id="imgBackground"&gt;
&lt;span id="gadgetContent"&gt;&lt;/span&gt;
&lt;span id="time"&gt;&lt;/span&gt;
&lt;/g:background&gt;
&lt;/body&gt;</pre>
<p>This is very rough and ready with no visual styling at all. But it does the job and does it nicely! I might polish it up into a proper widget which will allow users to insert their own user name. If I do decide to do that, I&#8217;ll publish it. <a href="http://www.twitter.com/kevpartner" target="_blank">Follow me on Twitter</a> to find out when this happens!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/04/15/creating-a-twitter-gadget-for-windows-sidebar-or-anywhere-else-to-display-your-followers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building your Freelance Business Around WordPress</title>
		<link>http://www.scribbleit.co.uk/blog/2010/03/31/building-your-freelance-business-around-wordpress/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/03/31/building-your-freelance-business-around-wordpress/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 14:37:03 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=508</guid>
		<description><![CDATA[So, you&#8217;re a freelance designer, developer, copywriter or journalist. This excellent blog post covers how WordPress can be used by you in your business.]]></description>
			<content:encoded><![CDATA[<p></p><p>So, you&#8217;re a freelance designer, developer, copywriter or journalist. <a href="http://designm.ag/freelance/wordpress/" target="_blank">This excellent blog post </a>covers how WordPress can be used by you in your business.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/03/31/building-your-freelance-business-around-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending blog posts to your email list</title>
		<link>http://www.scribbleit.co.uk/blog/2010/03/30/sending-blog-posts-to-your-email-list/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/03/30/sending-blog-posts-to-your-email-list/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 09:35:40 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=495</guid>
		<description><![CDATA[One of the main aims of a blog or landing page is to build a mailing list. With a list full of people eager to hear what you have to say, it becomes possible to sell targeted goods and services alongside advice, news, reviews etc. When I find a blog I&#8217;m interested in, what I [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.scribbleit.co.uk/blog/2010/03/30/sending-blog-posts-to-your-email-list/" title="Permanent link to Sending blog posts to your email list"><img class="post_image alignright" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/03/blogposts1.png" width="381" height="277" alt="Post image for Sending blog posts to your email list" /></a>
</p><p>One of the main aims of a blog or landing page is to build a mailing list. With a list full of people eager to hear what you have to say, it becomes possible to sell targeted goods and services alongside advice, news, reviews etc. When I find a blog I&#8217;m interested in, what I usually want is to receive blog posts by email rather than having to remember to visit the site regularly. For example, Seth Godin and Perry Marshall offer this sort of service: in Seth&#8217;s case his system sends an email containing the blog post each time he adds a new one whereas Perry&#8217;s are more traditional Autoresponder fare and tend to point you back to one of his pages for further information. You can also see this in action at <a href="http://www.makingyourowncandles.co.uk" target="_blank">MakingYourOwnCandles.co.uk</a><span id="more-495"></span></p>
<blockquote><p>However, if Seth and Perry&#8217;s emails were constantly attempting to sell me something I would unsubscribe in an instant</p></blockquote>
<p>What I like about these two and a few others is that I get plenty of useful, actionable, information for free. If I want to get into a subject in greater depth, there&#8217;s sometimes a product available but, in the main, this is simply great info and insights.</p>
<p>So how do you set things up so that your visitors get an email each time you write a blog post? Feedburner is the obvious choice but the main problem with it is that there&#8217;s no way to add users signing up via Feedburner to your autoresponder/mailing list. It&#8217;s actually much easier the other way around: get people to sign up to your mailing list (which is a whole other art) and then send blog posts automatically to that list on a regular basis (daily or weekly).</p>
<p>There is a risk with this. If you cheese people off with your blog posts, they might unsubscribe from your mailing list. However, a mailing list should be an opportunity to build up a relationship and to establish yourself as the friendly expert in your field. If your blog posts don&#8217;t reinforce that, then you&#8217;re writing the wrong blog posts!!</p>
<h3>Sending Blog Posts to your Mailing List</h3>
<p>I&#8217;ve done this using the <strong>MailChimp</strong> service. I only recently discovered MailChimp, having been a GetResponse and AWeber user for some time and I&#8217;ve been blown away by it. Not only by the service itself but by the burgeoning array of integrations with other products (including, shortly, BigCommerce) and imaginative ways that MailChimp allows you to make use of your list and to build it.<a href="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/03/blogposts2.png"><img class="alignright size-medium wp-image-500" title="blogposts2" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/03/blogposts2-300x190.png" alt="" width="300" height="190" /></a></p>
<ol>
<li>Add a signup form to your blog. You will need some sort of inducement if you want people to sign up in any numbers &#8211; a free report (give away your best stuff), a big discount or free gift. You should have an autoresponder sequence set up giving them the information they&#8217;re looking for.</li>
<li>In MailChimp, click the down pointing arrow on the orange &#8220;Create Campaign&#8221; button and select <strong>RSS-driven Campaign</strong></li>
<li>Now, set up the campaign in a similar way to a standard email campaign. You have additional merge tags which allow you to specify exactly what the emails will contain and how often they&#8217;re sent out. For example, you might want to send both the HTML extract and the list of recent posts.</li>
</ol>
<p>&#8230;and that&#8217;s it. Set this up and every day at the time you specify MailChimp will check the RSS feed of your blog and if it finds anything new it&#8217;ll send out an email containing just the new entries. Genius.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/03/30/sending-blog-posts-to-your-email-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thesis Post Images and Thumbnails not working</title>
		<link>http://www.scribbleit.co.uk/blog/2010/02/22/thesis-post-images-and-thumbnails-not-working/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/02/22/thesis-post-images-and-thumbnails-not-working/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 11:54:48 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=478</guid>
		<description><![CDATA[Thesis is, in my view, the best WordPress theme for commercial sites but there can be a couple of niggles when it comes to installing it on a shared hosting platform such as, in my case, a Heart Internet Reseller account. Thesis includes the facility to include a post image: this is an image that [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.scribbleit.co.uk/blog/2010/02/22/thesis-post-images-and-thumbnails-not-working/" title="Permanent link to Thesis Post Images and Thumbnails not working"><img class="post_image alignright frame" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/02/myocthumbnail.png" width="297" height="464" alt="Post image for Thesis Post Images and Thumbnails not working" /></a>
</p><p>Thesis is, in my view, the best WordPress theme for commercial sites but there can be a couple of niggles when it comes to installing it on a shared hosting platform such as, in my case, a Heart Internet Reseller account.</p>
<p>Thesis includes the facility to include a post image: this is an image that appears near the post title and which is then used as a thumbnail &#8211; obviously exactly how these appear is configurable within the Thesis options panel.</p>
<p>Installing for the first time on a shared space went fine until it came to specifying the Post Images which simply didn&#8217;t appear. After a good deal of digging around on the Thesis forum at <a href="http://www.diythemes.com">DIY Themes</a> and some experimentation, here&#8217;s the process I went through to fix the problems:<br />
<span id="more-478"></span></p>
<ol>
<li>In notepad, create a file containing just these lines:<br />
<code>&amp;lt; ?php<br />
phpinfo();<br />
?&amp;gt; </code><br />
FTP this file into the root folder of your website and then launch your browser and go to <strong>http://[yourdomainname]/phpinfo.php</strong>.<a href="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/02/phpconfig.png"><img class="alignright size-medium wp-image-488" title="phpconfig" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/02/phpconfig-300x157.png" alt="" width="300" height="157" /></a> This will bring up a whole heap of information about your PHP configuration. Use your browser&#8217;s search function to find the lines <em>allow_url_fopen</em> and <em>allow_url_include</em>. If <em>allow_url_fopen</em> is set to ON, then <em>allow_url_include</em> must also be ON. The chances are that <em>allow_url_include</em> is OFF and what you need to do is set <em>allow_url_fopen</em> to OFF also. This is easily done&#8230;</li>
<li>Open up Notepad and create a new file with just this one line:<br />
<code>allow_url_fopen = off</code></li>
<li>Save this file as <em>php5.ini</em> (or, if you&#8217;ve left your domain set as PHP4 for some reason, this file should be called php.ini) and FTP it to the <strong>root</strong> folder of your site (usually something like /public_html or /httpdocs). This should sort out the post images issue but possible not the thumbnails</li>
<li>To fix the thumbnail issue, fire up your FTP program and find and select the following folders, right click and select <strong>File Permissions</strong>, then type the number shown into the dialog that appears. This allows Thesis to create the thumbnails:
<ul>
<li>/wp-content/themes/thesis_16/custom/cache/ (set to 755)</li>
<li>/wp-content/themes/thesis_16/lib/scripts/ (set to 755)</li>
<li>/wp-content/themes/thesis_16/lib/scripts/thumb.php (set to 744)</li>
<p><cite>Thanks to &#8220;pulselv&#8221; for this on the DIYThemes forum</cite></ul>
</li>
<li>Finally, click the &#8220;Big Ass Save Button&#8221; (or whatever you&#8217;ve renamed it to) on the Thesis Options screen. This makes Thesis take notice of the changes. All should now be well!</li>
</ol>
<blockquote><p>THESIS 1.7 UPDATE: I&#8217;ve found with Thesis 1.7 that you need to click the Save button on every one of the Thesis option pages. I suspect you, in fact, only have to click one but I clicked them all to be sure.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/02/22/thesis-post-images-and-thumbnails-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If money were no object &#8211; would I buy an iPad?</title>
		<link>http://www.scribbleit.co.uk/blog/2010/01/28/if-money-were-no-object-would-i-buy-an-ipad/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/01/28/if-money-were-no-object-would-i-buy-an-ipad/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 13:43:12 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=469</guid>
		<description><![CDATA[Let&#8217;s just begin by saying that I have purchased Apple products in the past. I&#8217;ve owned an iMac, an eMac, several iPod Nanos, a MacBook and an iPod Classic. To me, they are the masters of hardware design and some of their software is also excellent (the iPhone/iPod Touch OS and Keynote being two outstanding [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.scribbleit.co.uk/blog/2010/01/28/if-money-were-no-object-would-i-buy-an-ipad/" title="Permanent link to If money were no object &#8211; would I buy an iPad?"><img class="post_image alignright" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/01/ipad.png" width="180" height="240" alt="Post image for If money were no object &#8211; would I buy an iPad?" /></a>
</p><p>Let&#8217;s just begin by saying that I have purchased Apple products in the past. I&#8217;ve owned an iMac, an eMac, several iPod Nanos, a MacBook and an iPod Classic. To me, they are the masters of hardware design and some of their software is also excellent (the iPhone/iPod Touch OS and Keynote being two outstanding examples for me &#8211; on the other hand Quicktime and iTunes are amongst my least favourite pieces of software, right up there with Adobe Reader). My loathing of iTunes and my discovery of how liberating it is to have a plain, vanilla MP3 player, buy MP3s from Amazon and simply drag and drop them across has led to my abandonment of the iPod series, for now at least.</p>
<p>As a geek but <strong>not </strong>an early adopter, it&#8217;s people like me that Apple needs to impress if it&#8217;s to increase its market share. Apple evangelists will buy the iPad, even if they don&#8217;t <strong>really</strong> know why and I don&#8217;t doubt they&#8217;ll find uses for it (even if it&#8217;s annoying other commuters by watching &#8220;Love Actually&#8221; on their lovely big screen) but people like me need a justifiable reason for laying out the money.</p>
<p>So, if money were no object, what would I buy in the following categories?<span id="more-469"></span></p>
<p><strong>SMARTPHONE</strong></p>
<p><strong>I would buy: an iPhone</strong></p>
<p>The iPhone was and is a game-changing device. Many of the apps are of high quality and, once 3G support was introduced, it offered truly liberated browsing and pseudo-computing.</p>
<p><strong><img class="alignright" title="HTC Magic" src="http://www.handys-mobile.de/img/htc_magic.jpg" alt="" width="400" height="300" />What I actually bought: an HTC Magic running Android</strong></p>
<p>Why? Just look at the figures. When I was choosing my next phone (my first smartphone having been a Sony-Ericsson user for a few generations), the cost of owning an iPhone was an £80 upfront payment and then a 24 month contract at £45 per month. This equates to a total cost of ownership of around £1,150 over 2 years.</p>
<p>My Magic, on the other hand, cost zero for the handset on a 18 month contract at £25 per month for a total cost of ownership of around £450. Android has proven a joy to use and I&#8217;ve already enjoyed 2 updates. It&#8217;s closely integrated (of course) with Google&#8217;s applications so for web use it&#8217;s ideal. And, of course, you don&#8217;t have to close one application to use another.</p>
<p><strong>LAPTOP</strong></p>
<p><strong>I would buy: a Macbook Pro </strong></p>
<p>&#8230;running Windows 7. I bought my first Macbook when they moved over to Intel chips and therefore became capable of running Windows. Windows 7 (and, to be honest, also Windows Vista) are nice, usable and productive operating systems and the choice of software for me, as a developer, is many times what it is under OSX.</p>
<p><strong><img class="alignright" title="Acer" src="http://www.laptops-drivers.com/wp-content/uploads/2009/06/acer_5536-wallpaper.jpg" alt="" width="450" height="302" />What I actually bought: an Acer Laptop from Tesco</strong></p>
<p>Why? Again, price. The 15 inch MacBook Pro <strong>starts</strong> at £1,328. The Acer Laptop cost £349 to which I would need to add £50 or so for an upgrade to Windows 7. What, <strong>in practice</strong>, does the MacBook Pro offer that makes it worth around 4x the price. And just to be clear, the technical specification of the Acer is very similar to the MacBook Pro.</p>
<p><strong>DESKTOP</strong></p>
<p><strong>I would buy: Chillblast Fusion Midgard (£896 inc VAT)<br />
</strong></p>
<p>This is <a href="http://www.pcpro.co.uk/reviews/desktops/353071/chillblast-fusion-midgard" target="_blank">PCPro&#8217;s current A list</a> Desktop PC with a blistering benchmark score of 2.48 (3.2GHz Pentium D = 1)</p>
<p><strong>What I actually bought: A cheap Dell Studio with a Quad Core processor (£299)</strong></p>
<p>Runs my applications perfectly quickly. I play games on my PS3 so I don&#8217;t need game playing capability.</p>
<p><strong>NETBOOK</strong></p>
<p><strong><img class="alignright" title="Samsung NC10" src="http://talklaptops.info/wp-content/uploads/2009/02/samsung_nc10.png" alt="" width="504" height="390" />I would buy: Samsung NC series Netbook (around £300 incl VAT)</strong></p>
<p>&#8230;and this was what I actually bought. What a lovely little device. Excellent keyboard, nice bright display, around 7 hours of battery and a good rugged feel.</p>
<p>I guess this is the category the iPad could most obviously compete in. Except that it doesn&#8217;t have:</p>
<ul>
<li>a keyboard &#8211; software keyboards are NO replacement for a real one</li>
<li>a webcam (are you having a laugh?)</li>
<li>any protection for the screen</li>
<li>a card reader so I can import my photos</li>
<li>USB (!!!!)</li>
</ul>
<p>&#8230;and it costs more than twice as much. The fact is that the iPad cannot replace a laptop or a phone. It&#8217;s only possible place is in the netbook market and it cannot compete there on either features or price. It is a lovely product, technologically very clever but its market (beyond Apple disciples) isn&#8217;t obvious to me. It&#8217;s too fragile to be used in education and not suitable for typing extensively on. I can see that if I were giving a presentation, it would be great to load it up on the iPad and then simply connect it to the projector and use the iPad as a controller. But I won&#8217;t spend £650 for this, very minor, benefit.</p>
<p>Sorry Apple, I simply cannot get excited by it. If you offered me an iPhone at a reasonable price I&#8217;d bite your arm off. If you offered me a Mac Mini, I&#8217;d have it and install Windows 7. If you offered me an iPad I&#8217;d politely decline.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/01/28/if-money-were-no-object-would-i-buy-an-ipad/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Being Happy: Step 1 &#8211; Take Responsibility</title>
		<link>http://www.scribbleit.co.uk/blog/2010/01/07/being-happy-step-1-take-responsibility/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/01/07/being-happy-step-1-take-responsibility/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 19:01:54 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Personal Development]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=414</guid>
		<description><![CDATA[About Me I&#8217;m not a self-development guru but I am interested in the area and have studied many of the best practitioners. This series of blog entries summarises the main themes I&#8217;ve seen reoccurring time and time again: a series of universally accepted principles that really should be taught to our children at school. I [...]]]></description>
			<content:encoded><![CDATA[<p></p><h2>About Me</h2>
<p>I&#8217;m not a self-development guru but I am interested in the area and have studied many of the best practitioners. This series of blog entries summarises the main themes I&#8217;ve seen reoccurring time and time again: a series of universally accepted principles that really should be taught to our children at school.</p>
<p>I don&#8217;t pretend to be great at all of these &#8211; far from it. However, I know from experience that when I work on each of them, my life becomes more productive, richer and happier.</p>
<p>Just to reiterate, I am not preaching or evangelising these principles. I&#8217;m simply summarising what I see as the most important of them so that you can think about incorporating them into your day. If they make sense to you, I suggest applying them one at a time until each becomes a habit and part of your natural outlook on life.</p>
<h2>Step1 : Taking Responsibility<a href="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/01/beach.jpg"><img class="alignright size-medium wp-image-416" title="beach" src="http://www.scribbleit.co.uk/blog/wp-content/uploads/2010/01/beach-300x200.jpg" alt="beach" width="300" height="200" /></a></h2>
<p>You&#8217;re probably familiar with the concept of “stimulus-response” as in the famous experiment by Pavlov in which he trained dogs to salivate when they hear a bell which had previously been rung whenever there was a sausage in the vicinity.</p>
<p>The stimulus (the bell) lead directly to the response (dribbling). In a similar way, the stimulus of being cut up on the motorway might lead to the response of sticking two fingers up, honking your horn and chasing the offender. Or you might feel miserable because the weather&#8217;s wet or because you&#8217;ve just heard a sad story on the news.</p>
<p>However, there is an essential difference between animals and humans. Animals have no choice about responding to a stimulus, humans do. If you feel miserable on a cloudy day, you&#8217;re giving control over your mood to an outside force (the weather) about which you can do nothing. If you get stressed when someone overtakes you on the motorway and then cuts in, you&#8217;re allowing that person&#8217;s behaviour to stress you. Note the verbs: “giving” and “allowing”. You see, it&#8217;s your choice how you react to any stimulus: you choose whether to react with anger, sadness, calmness or even not to react at all.</p>
<p>It might feel as though you are taking control by reacting but, in fact, you are giving up control to the stimulus just as surely as if you were a dog salivating over a sausage. The truly strong, empowering thing to do is to stop, think and then respond in accordance with your values.</p>
<p>One of the best ways to make yourself more effective is to work on those things you can influence and ignore those things you can&#8217;t. The weather doesn&#8217;t make you miserable, it&#8217;s your reaction to it that does so: this is why one person&#8217;s gorgeous sunny day is another&#8217;s wasp-infested slice of hell.</p>
<p>By only trying to exercise control over things you <strong>can</strong> control (and this rarely includes other people), you focus your energies in productive areas and greatly reduce your stress. If the weather&#8217;s crap (the UK is locked in a new Ice Age as I write this) then don&#8217;t let it get you down: work out how you&#8217;re going to control those things you can. If you&#8217;re unable to drive anywhere (as we are at present) then work on managing with what you have at home. Think about helping your vulnerable neighbours out. Clear the snow from in front of your house and car. Enjoy it!</p>
<p>Don&#8217;t underestimate the power of this. By taking responsibility for how you react, you stop blaming the world for your misfortunes and this is empowering (after all if you stop believing that the weather can make you miserable, you&#8217;ve just given yourself the power to be happy). It also makes you more forgiving of others and much less affected by their weaknesses.</p>
<p>Do what you can about what you can influence: and remember that your reactions to everything that happens are entirely in your control. <a href="http://en.wikipedia.org/wiki/Viktor_Frankl" target="_blank">Viktor Frankl</a>, a concentration camp victim and psychiatrist reasoned that he has complete control over his thoughts and reactions and, in that understanding, more freedom than his prison camp guards. His is a humbling story and well worth reading.</p>
<p><strong>Further Reading:</strong> I came across this principle first in <a href="http://www.amazon.co.uk/gp/product/0684858398?ie=UTF8&#038;tag=scribbleit-21&#038;linkCode=as2&#038;camp=1634&#038;creative=6738&#038;creativeASIN=0684858398">7 Habits of Highly Effective People</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=scribbleit-21&#038;l=as2&#038;o=2&#038;a=0684858398" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> by Stephen Covey. This was an enormously influential experience (I listened to the audio of a seminar) and very much affected my way of looking at life and my performance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/01/07/being-happy-step-1-take-responsibility/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Paypal fiasco</title>
		<link>http://www.scribbleit.co.uk/blog/2010/01/06/paypal-fiasco/</link>
		<comments>http://www.scribbleit.co.uk/blog/2010/01/06/paypal-fiasco/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 15:06:04 +0000</pubDate>
		<dc:creator>Kevin Partner</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.scribbleit.co.uk/blog/?p=405</guid>
		<description><![CDATA[I&#8217;m all for Buyer Protection (after all, I&#8217;m a buyer more often than a seller) but Paypal&#8217;s Dispute Resolution system needs sorting out. One of my companies offers an online subscription service. On Christmas Eve, a customer emailed us to say they couldn&#8217;t access the service having paid for it. On Boxing Day having waited [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;m all for Buyer Protection (after all, I&#8217;m a buyer more often than a seller) but Paypal&#8217;s Dispute Resolution system needs sorting out.</p>
<p>One of my companies offers an online subscription service. On Christmas Eve, a customer emailed us to say they couldn&#8217;t access the service having paid for it. On Boxing Day having waited a whole 48 hours over Xmas and not received a response, they put a claim in. What did they claim? That the product had not been received.</p>
<p>I then got notification of this, logged into Paypal (having emailed the customer and asked why they&#8217;d escalated it without giving us reasonable time to respond) only to find that the three options open to me when it comes to responding are:</p>
<ol>
<li>I have posted the item, here is the tracking number</li>
<li>I did not post the item, I will refund</li>
<li>I have already refunded.</li>
</ol>
<p>THERE IS NO ITEM TO POST! This is an entirely online product. The customer has (either wilfully or through ignorance) filed an incorrect complaint. Unfortunately, Paypal don&#8217;t bother to investigate the type of product and take the customer&#8217;s word for it. There is no way I can find to add a &#8220;note&#8221; to the dispute and surely the simplest solution would be:</p>
<p>4. This is not a physical product</p>
<p>&#8230;or something similar.</p>
<p>Paypal have now found in favour of the customer and refunded them. This leaves businesses like mine open to ignorant or malicious claim-backs without any recourse to defend ourselves. It really is time Paypal got their finger out and at least gave merchants such as us (with a long and blemish-free history) the opportunity to respond properly to inappropriate claims.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scribbleit.co.uk/blog/2010/01/06/paypal-fiasco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
