<?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>Utility Room &#187; Web Development</title>
	<atom:link href="http://jussi.ruokomaki.fi/tech/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://jussi.ruokomaki.fi/tech</link>
	<description>Simple Solutions and Other Oxymorons</description>
	<lastBuildDate>Mon, 21 Nov 2011 09:15:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Add WordPress Featured Image as Automatic Facebook Like Button Image</title>
		<link>http://jussi.ruokomaki.fi/tech/293/add-wordpress-featured-image-as-automatic-facebook-like-button-image/</link>
		<comments>http://jussi.ruokomaki.fi/tech/293/add-wordpress-featured-image-as-automatic-facebook-like-button-image/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 18:40:47 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[article image]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[featured image]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[Like Button]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=293</guid>
		<description><![CDATA[Add the following in header.php, within the html head tag. &#60;?php if (has_post_thumbnail() &#38;&#38; is_single()) { // if feat im exists &#38;&#38; current page is single article $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post-&#62;ID), 'medium' ); $thumb_url = $thumb['0']; ?&#62; &#60;meta property="og:image" content="&#60;?php echo $thumb_url; ?&#62;" /&#62;]]></description>
			<content:encoded><![CDATA[<p>Add the following in header.php, within the html head tag.<br />
<code><br />
&lt;?php if (has_post_thumbnail() &amp;&amp; is_single()) { // if feat im exists &amp;&amp; current page is single article<br />
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post-&gt;ID), 'medium' );<br />
$thumb_url = $thumb['0'];<br />
?&gt;<br />
&lt;meta property="og:image" content="&lt;?php echo $thumb_url; ?&gt;" /&gt; </code><!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/293/add-wordpress-featured-image-as-automatic-facebook-like-button-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>htaccess 301 redirect from all pages to one page</title>
		<link>http://jussi.ruokomaki.fi/tech/284/htaccess-301-redirect-from-all-pages-to-one-page/</link>
		<comments>http://jussi.ruokomaki.fi/tech/284/htaccess-301-redirect-from-all-pages-to-one-page/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 07:07:04 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[redirection]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=284</guid>
		<description><![CDATA[RedirectMatch permanent /.* http://www.newdomain.com/]]></description>
			<content:encoded><![CDATA[<p>RedirectMatch permanent /.* http://www.newdomain.com/<!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/284/htaccess-301-redirect-from-all-pages-to-one-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Favicon (Multiresolution) on OS X</title>
		<link>http://jussi.ruokomaki.fi/tech/282/create-favicon-multiresolution-on-os-x/</link>
		<comments>http://jussi.ruokomaki.fi/tech/282/create-favicon-multiresolution-on-os-x/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 12:35:39 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=282</guid>
		<description><![CDATA[IcoMaker, it works. "On the mac, this is a snap, thanks to Takeshi Ogihara’s IcoMaker. Head over to his page (assuming it’s a he), and look for the link at the bottom of the page, something like: “IcoMaker Distribution Package, 84KB”." via steve cooley presents » Blog Archive » HOWTO: create a favicon.ico on Mac [...]]]></description>
			<content:encoded><![CDATA[<p>IcoMaker, it works.</p>
<p>"On the mac, this is a snap, thanks to Takeshi Ogihara’s IcoMaker. Head over to his page (assuming it’s a he), and look for the link at the bottom of the page, something like: “IcoMaker Distribution Package, 84KB”."</p>
<p>via <a href="http://somejunkwelike.com/wordpress/2005/05/24/howto-faviconico-on-mac-os-x/">steve cooley presents » Blog Archive » HOWTO: create a favicon.ico on Mac OS X</a>.<!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/282/create-favicon-multiresolution-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Load jQuery Slideshow After Page Has Loaded</title>
		<link>http://jussi.ruokomaki.fi/tech/278/load-jquery-slideshow-after-page-has-loaded/</link>
		<comments>http://jussi.ruokomaki.fi/tech/278/load-jquery-slideshow-after-page-has-loaded/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 09:18:45 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[async]]></category>
		<category><![CDATA[asynchronous]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=278</guid>
		<description><![CDATA[I needed a slideshow that would load (in a way, asynchronously) after the page has been loaded and would show something without JavaScript. This solution requires jQuery and jQuery Cycle plugin (lite version will do). &#60;div id="slideshow"&#62; &#60;img src="default-image.jpg" alt="" /&#62;&#60;!--defaults to this image without javascript --&#62; &#60;/div&#62; &#60;script type="text/javascript"&#62; $(document).ready(function() { //// random slides [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a slideshow that would load (in a way, asynchronously) after the page has been loaded and would show something without JavaScript.</p>
<p>This solution requires jQuery and <a href="http://jquery.malsup.com/cycle/">jQuery Cycle plugin</a> (lite version will do).</p>
<pre id="line101">&lt;div id="slideshow"&gt;
&lt;img src="default-image.jpg" alt="" /&gt;&lt;!--defaults to this image without javascript --&gt;
&lt;/div&gt;

&lt;script type="text/javascript"&gt;
$(document).ready(function() {
  //// random slides
  var SLIDE_COUNT = 12;
  var r = Math.floor(Math.random()*SLIDE_COUNT+1);
  var i = 1;
  $('#slideshow').empty(); // clears the slideshow contents (default image)
  for (i = 1; i &lt;= SLIDE_COUNT; i++) {
    $('#slideshow').append('&lt;img src="slide-' + r + '.jpg" alt="" /&gt;');
    r = (r % SLIDE_COUNT) + 1;
  }

  //// fixed slides
  //$('#slideshow').append('&lt;img src="slide-1.jpg" alt="" /&gt;');
  //$('#slideshow').append('&lt;img src="slide-2.jpg" alt="" /&gt;');

  $('#slideshow').cycle();
});
&lt;/script&gt;
</pre>
<p><!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/278/load-jquery-slideshow-after-page-has-loaded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scriptaculous Autocompleter vs jQuery Autocomplete [Multiple Fields]</title>
		<link>http://jussi.ruokomaki.fi/tech/271/scriptaculous-autocompleter-vs-jquery-autocomplete/</link>
		<comments>http://jussi.ruokomaki.fi/tech/271/scriptaculous-autocompleter-vs-jquery-autocomplete/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 09:00:09 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[autosuggest]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=271</guid>
		<description><![CDATA[Scriptaculous Autocompleter does not support multiple input fields, so go for jQuery if possible. jQuery UI has autocomplete built-in.]]></description>
			<content:encoded><![CDATA[<p>Scriptaculous Autocompleter does not support multiple input fields, so go for jQuery if possible.</p>
<p>jQuery UI <a href="http://jqueryui.com/demos/autocomplete/">has autocomplete built-in</a>.<!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/271/scriptaculous-autocompleter-vs-jquery-autocomplete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Site Based on Visitor Behavior</title>
		<link>http://jussi.ruokomaki.fi/tech/264/customize-your-site-based-on-visitor-behavior/</link>
		<comments>http://jussi.ruokomaki.fi/tech/264/customize-your-site-based-on-visitor-behavior/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 07:30:29 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[BTBuckets]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=264</guid>
		<description><![CDATA[This plugin utilizes widgets and BTBuckets. WP BTBuckets WordPress Plugin &#124; OMNINOGGIN.]]></description>
			<content:encoded><![CDATA[<p>This plugin utilizes widgets and BTBuckets.</p>
<p><a href="http://omninoggin.com/wordpress-plugins/wp-btbuckets-wordpress-plugin/">WP BTBuckets WordPress Plugin | OMNINOGGIN</a>.<!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/264/customize-your-site-based-on-visitor-behavior/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refine WordPress Search with Relevanssi</title>
		<link>http://jussi.ruokomaki.fi/tech/249/refine-wordpress-search-with-relevanssi/</link>
		<comments>http://jussi.ruokomaki.fi/tech/249/refine-wordpress-search-with-relevanssi/#comments</comments>
		<pubDate>Wed, 19 May 2010 11:32:54 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=249</guid>
		<description><![CDATA[Adding some relevance (and other goodies) to WordPress default search: Relevanssi search enhancer plugin. If only one could add the result count in the template I'd be perfectly happy.]]></description>
			<content:encoded><![CDATA[<p>Adding some relevance (and other goodies) to WordPress default search: <a href="http://wordpress.org/extend/plugins/relevanssi/">Relevanssi</a> search enhancer plugin.</p>
<p>If only one could add the result count in the template I'd be perfectly happy.<!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/249/refine-wordpress-search-with-relevanssi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When First Publish in WordPress Always Fails</title>
		<link>http://jussi.ruokomaki.fi/tech/244/when-first-publish-in-wordpress-always-fails/</link>
		<comments>http://jussi.ruokomaki.fi/tech/244/when-first-publish-in-wordpress-always-fails/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 11:36:37 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitter Tools]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WP to Twitter]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=244</guid>
		<description><![CDATA[Using Twitter Tools plugin? Disable it and install WP to Twitter plugin instead.]]></description>
			<content:encoded><![CDATA[<p>Using <strong>Twitter Tools </strong>plugin? Disable it and install <strong><a href="http://wordpress.org/extend/plugins/wp-to-twitter/">WP to Twitter</a></strong> plugin instead.<!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/244/when-first-publish-in-wordpress-always-fails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Cookie Domain</title>
		<link>http://jussi.ruokomaki.fi/tech/232/wordpress-cookie-domain/</link>
		<comments>http://jussi.ruokomaki.fi/tech/232/wordpress-cookie-domain/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 13:36:08 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=232</guid>
		<description><![CDATA[Set WordPress cookie domain in wp-config.php. define('COOKIE_DOMAIN', 'www.yoursite.com');]]></description>
			<content:encoded><![CDATA[<p>Set WordPress cookie domain in <a href="http://codex.wordpress.org/Editing_wp-config.php">wp-config.php</a>.</p>
<p><code>define('COOKIE_DOMAIN', 'www.yoursite.com');</code><!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/232/wordpress-cookie-domain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Browser Size Overlay div png</title>
		<link>http://jussi.ruokomaki.fi/tech/228/google-browsersize-overlay-div-png/</link>
		<comments>http://jussi.ruokomaki.fi/tech/228/google-browsersize-overlay-div-png/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 08:58:32 +0000</pubDate>
		<dc:creator>Jussi</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Browser Size]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=228</guid>
		<description><![CDATA[Google Browser Size is a valuable tool but sometimes you'd only need the overlay image (say, when your site is not publicly available). Overlay PNG is available at http://browsersize.googlelabs.com/static/2009-11-18-day_google_com_100.png.]]></description>
			<content:encoded><![CDATA[<p>Google Browser Size is a valuable tool but sometimes you'd only need the overlay image (say, when your site is not publicly available). Overlay PNG is available at <a href="http://browsersize.googlelabs.com/static/2009-11-18-day_google_com_100.png">http://browsersize.googlelabs.com/static/2009-11-18-day_google_com_100.png</a>.<!-- this will appear at the bottom of the post --></p>
 ]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/228/google-browsersize-overlay-div-png/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

