<?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>FiddyP &#187; stumbleupon</title>
	<atom:link href="http://fiddyp.co.uk/tag/stumbleupon/feed/" rel="self" type="application/rss+xml" />
	<link>http://fiddyp.co.uk</link>
	<description>The personal blog of Andy Bailey</description>
	<lastBuildDate>Sun, 13 May 2012 15:28:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Animated DIV slide</title>
		<link>http://fiddyp.co.uk/animated-div-slide/</link>
		<comments>http://fiddyp.co.uk/animated-div-slide/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 11:36:35 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[HelloStumbler]]></category>
		<category><![CDATA[hidden]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[profit]]></category>
		<category><![CDATA[slide-div]]></category>
		<category><![CDATA[stumbleupon]]></category>

		<guid isPermaLink="false">http://www.fiddyp.co.uk/animated-div-slide/</guid>
		<description><![CDATA[I&#8217;ve been working with jQuery quite a lot over the past week to get the commentluv settings page up and running and get the new commentluv plugin working [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Fanimated-div-slide%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Fanimated-div-slide%2F&amp;source=commentluv&amp;style=normal&amp;service=bit.ly&amp;service_api=R_259b4e5679e2c431cca1f989e158bba4&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve been working with jQuery quite a lot over the past week to get the commentluv settings page up and running and get the new commentluv plugin working as promised. It always amazes me at how incredibly easy it is to get it to do cool things with a web page.</p>
<p>Not just Ajax things, simple effects that allow you to take a page from a digital piece of paper to a digital pop-up book! <a href="#">Click here for an example..</a></p>
<div id="first" style="border: 1px solid #000"><img>
<p style="color:white">Look at me!</p>
<h2><a href="#">Send me back up</a></h2>
</div>
<h3>Example explained</h3>
<p>(you should have the jQuery library loaded in the head of your document, my wordpress already does this but if yours doesn&#8217;t you&#8217;ll have to put a line like this in the head of your page)<span id="more-53"></span></p>
<p><strong>step 1:</strong> create a hidden div with an id of &#8220;first&#8221; and put something in it.</p>
<pre class="brush: xml; title: ; notranslate">&lt;div id=&quot;first&quot; style=&quot;border: 1px solid #000&quot;&gt;
&lt;img&gt;&lt;p style=&quot;color:white&quot;&gt;Look at me!&lt;/p&gt;</pre>
<p>You can set the style inline with the div or your could add something like this to your style sheet</p>
<pre class="brush: xml; title: ; notranslate">#first { display: none; } </pre>
<p>Something to note, an <strong>ID=</strong> is used if it is the ONLY one, a <strong>class=</strong> is when you have more than one. If you&#8217;d used <strong>class=&#8221;first&#8221;</strong> on the div above and had an entry in your stylesheet like this</p>
<pre class="brush: xml; title: ; notranslate">.first { display: none; } </pre>
<p>then every div or img or span you gave a class of &#8220;first&#8221; to would be initially invisible.</p>
<p><strong>step 2:</strong> Now you need to trigger an event to slide the div down. That&#8217;s as simple as putting a html link with an onclick attr and use a built in jQuery effect.<br />
onclick is an attribute you can put on html objects like &#8216;a href&#8217; links or images or other parts of your page. You put the javascript or function you want running in the quotes and whenever that object is clicked, the javascript gets run.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;a href=&quot;#&quot;&gt;Click here for an example..&lt;/a&gt;</pre>
<p>Here, the javascript we want to run is <em>jQuery(&#8216;#first&#8217;).slideDown(1000);</em></p>
<p>It&#8217;s this little bit that does the magic.</p>
<p>Sometimes people use $ instead of the word jQuery which will work in most cases but here on WordPress there is the prototype library too and that uses the $ symbol for it&#8217;s calls so to be safe and get it to work without clashing with other libraries we use jQuery.</p>
<p>We call jQuery and tell it what we are targeting in the brackets. Because we are using an ID, we use &#8216;#first&#8217;. Had we used a class then we would put &#8216;.first&#8217; and then we attach the slideDown event with a speed of 1000 ms by putting .slideDown (notice the captial &#8216;D&#8217;) on the end of the target and a speed 1000 in the brackets.</p>
<p><strong>step 3:</strong> slide it back up<br />
You should be able to guess how this was done, instead of using slideDown, we used slideUp</p>
<pre class="brush: xml; title: ; notranslate">&lt;a href=&quot;#&quot;&gt;Send me back up&lt;/a&gt;&lt;/h2&gt;</pre>
<p>That&#8217;s it, easy peasy!</p>
<p><a href="http://docs.jquery.com/Main_Page">You can find out all the commands available to jQuery here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/animated-div-slide/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Stumbled &#8211; Stumbleupon Widget for WordPress 2.2</title>
		<link>http://fiddyp.co.uk/stumbled-a-stumbleupon-widget-for-wordpress-22-released/</link>
		<comments>http://fiddyp.co.uk/stumbled-a-stumbleupon-widget-for-wordpress-22-released/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 18:28:35 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins_directory]]></category>
		<category><![CDATA[profit]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[stumbled]]></category>
		<category><![CDATA[stumbleupon]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://www.fiddyp.co.uk/2007/09/06/stumbled-a-stumbleupon-widget-for-wordpress-22-released/</guid>
		<description><![CDATA[Here is a widget and plugin combined for Stumbleupon and WordPress. I rewrote it from scratch to be a little better, thanks to the suggestion of mcangeli in [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Fstumbled-a-stumbleupon-widget-for-wordpress-22-released%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Fstumbled-a-stumbleupon-widget-for-wordpress-22-released%2F&amp;source=commentluv&amp;style=normal&amp;service=bit.ly&amp;service_api=R_259b4e5679e2c431cca1f989e158bba4&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Here is a widget and plugin combined for Stumbleupon and WordPress. I rewrote it from scratch to be a little better, thanks to the suggestion of <a href="http://delusionsofgrandeur.org/">mcangeli</a> in the comments!</p>
<p>This will display a list of titled links to up to 10 of your last pages that you gave a thumbs up to with Stumbleupon, it can also show as icons for web page, image, flash file, quicktime. Use it as a widget or as a plugin.</p>
<p>Upload it and activate it to see a widget called &#8216;Stumbled&#8217; in your tray, drag it to where you want it to be displayed on your blog and click the options square to add your Stumbleupon username, how many of your last thumbs up sites you want to display, choose to display as Text links or Icons. If you chose to display as text then you can put in the maximum amount of characters to show.</p>
<p>You can also use it as a plugin if you don&#8217;t like widgets, see below for code examples..</p>
<p>here&#8217;s what it looks like in the sidebar as icons..</p>
<p><img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumbled2.gif' alt='Stumbled Widget' /></p>
<p>here it is as text..<br />
<img src='http://fiddyp.co.uk/wp-content/uploads/2007/11/stumbledtext.jpg' alt='Stumbled widget as text' /></p>
<p>and the options&#8230;.<br />
<img src='http://fiddyp.co.uk/wp-content/uploads/2007/11/stumbledoptions.gif' alt='Stumbled Options page' /></p>
<p>Just download the zip file below and extract the folder, upload the whole folder to your plugins directory and activate it in WordPress, then, visit the widgets section under Presentation and drag it to the sidebar, click the square to change the options and that will be it!</p>
<p>For non-widget-ers, you can use it as a plugin by using this syntax..</p>
<p>stumbled_as_plugin(username,quantity to show,text or pic,html before list, html after list,max length of characters);</p>
<p>ie. for showing text links with a numbered order..</p>
<pre class="brush: php; title: ; notranslate">if(function_exists(stumbled_as_plugin)) {
stumbled_as_plugin(&quot;glytch&quot;,10,&quot;text&quot;,&quot;&lt;ol&gt;&quot;,&quot;&lt;/ol&gt;&quot;,33);
}
</pre>
<p>will show this&#8230;<br />
&lt;?php if(function_exists(stumbled_as_plugin)) {<br />
stumbled_as_plugin(&#8220;glytch&#8221;,10,&#8221;text&#8221;,&#8221;
<ol>&#8220;,&#8221;</ol>
<p>&#8220;,33);<br />
}?&gt;</p>
<p>Or as images with no numbering..</p>
<pre class="brush: php; title: ; notranslate">if(function_exists(stumbled_as_plugin)) {
stumbled_as_plugin(&quot;glytch&quot;,10,&quot;pic&quot;,&quot;&quot;,&quot;&quot;,33);
}
</pre>
<p>will show this&#8230;</p>
<p>If you have any problems with it, please let me know!.</p>
<p><a href="http://www.fiddyp.co.uk/download/stumbled.zip">Download Stumbled Widget &amp; Plugin For WordPress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/stumbled-a-stumbleupon-widget-for-wordpress-22-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stumbleupon traffic surge Caught on video..</title>
		<link>http://fiddyp.co.uk/stumbleupon-traffic-surge-caught-on-video/</link>
		<comments>http://fiddyp.co.uk/stumbleupon-traffic-surge-caught-on-video/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 13:00:09 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[buzz]]></category>
		<category><![CDATA[profit]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[stumbleupon]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.fiddyp.co.uk/stumbleupon-traffic-surge-caught-on-video/</guid>
		<description><![CDATA[I had my first SURGE of stumbleupon traffic and managed to capture the event on Camtasia! I think I only got the tail end of it but it [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Fstumbleupon-traffic-surge-caught-on-video%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Fstumbleupon-traffic-surge-caught-on-video%2F&amp;source=commentluv&amp;style=normal&amp;service=bit.ly&amp;service_api=R_259b4e5679e2c431cca1f989e158bba4&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumblepeak.gif' alt='Stumble Mountain' align="left">I had my first SURGE of stumbleupon traffic and managed to capture the event on Camtasia!</p>
<p>I think I only got the tail end of it but it lasted for a nice while, it even came back the next day although at a reduced rate, stats and geekery below the video.<br />
<blockquote>.</p></blockquote>
<p>I&#8217;m guilty of giving some of my own posts a thumbs up now and then to start a trickle of Stumbleupon traffic to an article I have written or seen elsewhere such as the <a href="http://www.fiddyp.co.uk/how-to-hide-a-rar-in-a-jpeg-file/">Hide a rar file in a jpeg</a>. I saw it on a blog completely obliterated with adsense blocks so I decided to reprint it here in a cleaner-easier-to-read way. It got some traffic and upped my feed subscriber count but, the traffic wasn&#8217;t huge, just a few hits each hour, but still nice to have some new readers to my new blog</p>
<p>Then, I saw a small side article in a daily newspaper (yes, there is news available outside the internet!) about how Tussauds in London was due to show it&#8217;s first ever computer game character, it looked like a great story and I did a bit of research on Google for &#8220;Tussauds&#8221; ,&#8221;London&#8221; and &#8220;master chief&#8221;.</p>
<p>There were plenty of articles but none that mentioned London. Great!, there was one page that I found about Master Chief being in the Las Vegas version of Tussauds, it had some good information and some really great pics so I thought I would snag the pics, do some Photoshopping on it to give them a London edge and &#8220;make me an article&#8221; for here.</p>
<p><img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumblespikeonlinenow.gif' alt='stumblespike online now' /></p>
<p>I was quite pleased with the <a href="http://www.fiddyp.co.uk/master-chief-is-coming-to-london/">Master chief is coming to London</a> and gave it a thumbs up on my work browser and finished off for the day and went home content with writing a new article that didn&#8217;t suck and wasn&#8217;t a copy and paste of some content found elsewhere.</p>
<p>When I got back home, I went to my Live page (a plugin [<a href="http://www.headzoo.com/live">link</a>] that displays hits to your site in realtime) in my WordPress dashboard to see what was going on at FiddyP and I was amazed!, the video above is the tail end of what I saw.</p>
<p>These are the load times in the middle of the spike..<br />
<img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumbleloadtimes.gif' alt='stumble load times' /><br />
So, even with 141 at a time coming in, the server was still able to send the page in less than 5 seconds to most of the world.</p>
<p>I think the difference with this self stumble was that it was for a unique article and a few people gave it a thumbs up one after the other, I think that if you can get a few thumbs up as soon as the submitted page goes into circulation then you get a sort of exponential increase which could lead to another one and so on. As long as you keep getting thumbs up, the traffic will keep coming.</p>
<p>The hits started again the next day..<br />
<a href='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumblespike1daylater.gif' title='stumblespike 1 day later'><img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumblespike1daylater-150x150.gif' alt='stumblespike 1 day later' /></a></p>
<p><strong>Some google stats..</strong><br />
One of the (many) good things about Google analytics is the way you can refine the stats so you can see all the individual stats for a particular referrer or page, here&#8217;s what was found just for the stumbleupon visitors<br />
<img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumblestats.gif' alt='Stumble stats' /></p>
<p>Not bad, average of 2 pages per visit means a lot of them took the time to see what else was on the site. 33% is a pretty good bounce rate for a social networking happening.</p>
<p><img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumblebrowsers.gif' alt='stumble browsers' /><br />
Encouragingly, nearly 90% of the people coming in were using Firefox. Sensible people use Stumbleupon <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/stumblesizes.gif' alt='stumblesizes' /><br />
The vast majority of visitors had bigger than a 1024&#215;768 screen, most had widescreens which surprised me, there must be a lot more widescreens out there than I thought.</p>
<p>I&#8217;ve seen a lot of advice about being a top Stumbler or increasing your &#8216;juice&#8217; at places like <a href="http://www.stumblegods.com/">StumbleGods</a> that say you should add as many friends as you like and be a social junkie with comments and reviews of peoples profile pages. I think they&#8217;re right but for someone as busy as me, it&#8217;s hard to dedicate time to spend all my day trying to make contacts, the upside is, the contacts I do make are because they have recommended particularly good pages or I&#8217;ve &#8216;met&#8217; them through this blog.</p>
<p>I was trying to think how I could repeat the event with a new post and spent a little while thinking what &#8220;they&#8221; want but, I don&#8217;t want to try and predict what people that come here will like, that&#8217;s not why I started this blog.</p>
<p>The best thing that I can do is, not worry about what Stumblers want and carry on making my blog for me for fun and writing about things that I find interesting without re-hashing stuff that&#8217;s already been done, if people like a post they will stumble it and if it&#8217;s good enough then sure as eggs is eggs, other people will and so on.</p>
<p>Overall, it was a good experience being bathed in hits for a short while. At least my server didn&#8217;t crash and it has given me some encouragement to carry on doing the things I like to do anyway and that&#8217;s plenty of geekery with a sprinkle of humour and a drop or two of nice pictures.</p>
<p>Thanks Stumbleupon! (and users) it was fun while it lasted! <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/stumbleupon-traffic-surge-caught-on-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Stumbler &#8211; WordPress plugin for Stumbleupon visitors</title>
		<link>http://fiddyp.co.uk/hello-stumbler-wordpress-plugin-for-stumbleupon-visitors/</link>
		<comments>http://fiddyp.co.uk/hello-stumbler-wordpress-plugin-for-stumbleupon-visitors/#comments</comments>
		<pubDate>Thu, 06 Sep 2007 14:49:19 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[HelloStumbler]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[profit]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[stumbleupon]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://www.fiddyp.co.uk/2007/09/06/hello-stumbler-wordpress-plugin-for-stumbleupon-visitors/</guid>
		<description><![CDATA[Here&#8217;s a little plugin I made for Stumbleupon visitors, I got the idea while playing with the Digg This plugin. Hello Stumbler plugin will display a note at [..]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ffiddyp.co.uk%2Fhello-stumbler-wordpress-plugin-for-stumbleupon-visitors%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ffiddyp.co.uk%2Fhello-stumbler-wordpress-plugin-for-stumbleupon-visitors%2F&amp;source=commentluv&amp;style=normal&amp;service=bit.ly&amp;service_api=R_259b4e5679e2c431cca1f989e158bba4&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Here&#8217;s a little plugin I made for Stumbleupon visitors, I got the idea while playing with the <a href="http://www.aviransplace.com/index.php/digg-this-wordpress-plugin/">Digg This plugin</a>.</p>
<p>Hello Stumbler plugin will display a note at the top of your post (or wherever you put the call) when it detects that the person viewing the page came through the <a href="http://www.stumbleupon.com">Stumbleupon</a> button and ask them to give you a thumbs up.</p>
<p>Simply download the plugin, upload it to your plugins directory and activate it. Once you have done that, go to your single post template page and add the following command under the entry-content line (click image to see example).</p>
<pre class="brush: php; title: ; notranslate">
?php if (function_exists(hellostumbler)) { hellostumbler();}?&amp;gt;
</pre>
<p><a href='http://fiddyp.co.uk/wp-content/uploads/2007/09/hellostumbler2.gif' title='Hello stumbler example'><img src='http://fiddyp.co.uk/wp-content/uploads/2007/09/hellostumbler2-150x150.gif' alt='Hello stumbler example' /></a><br />
It&#8217;s as simple as that! I have tried it by showing the link if this blog is the referring page and it works, hopefully it will do the same when the post is stumbled upon with the toolbar button (it&#8217;ll take me ages to stumble and stumble until this post shows to truly test it, but it should work!).</p>
<p>If you came here via a stumble button press, please let me know if you can see the &#8220;thanks for stumble-ing&#8221; message at the top of the post. thanks!</p>
<p>Download the plugin here <a href="http://www.fiddyp.co.uk/download/hellostumbler.zip">Hello Stumbler</a></p>
<p><strong>[edit]</strong>To see a tutorial on how I made this plugin, see here: <a href="http://www.fiddyp.co.uk/how-to-make-a-wordpress-plugin-with-less-than-20-lines-of-code/">wordpress plugin sourcecode tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/hello-stumbler-wordpress-plugin-for-stumbleupon-visitors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

