<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Utility Room</title>
	
	<link>http://jussi.ruokomaki.fi/tech</link>
	<description>Simple Solutions and Other Oxymorons</description>
	<lastBuildDate>Mon, 01 Mar 2010 13:38:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jussiruokomaki/tech" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="jussiruokomaki/tech" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><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 Ruokomäki</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></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 Ruokomäki</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>.</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>
		<item>
		<title>Disable Quotation Mark Modifications from WordPress</title>
		<link>http://jussi.ruokomaki.fi/tech/224/disable-quotation-mark-modifications-from-wordpress/</link>
		<comments>http://jussi.ruokomaki.fi/tech/224/disable-quotation-mark-modifications-from-wordpress/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 13:50:59 +0000</pubDate>
		<dc:creator>Jussi Ruokomäki</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[quotation mark]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=224</guid>
		<description><![CDATA[Remove automatic modification of quotation marks (e.g. " to opening and closing quotation marks) by entering the following 4 lines to the functions.php file of your theme.
remove_filter('the_content', 'wptexturize');
remove_filter('the_title', 'wptexturize');
remove_filter('the_excerpt', 'wptexturize');
remove_filter('comment_text', 'wptexturize');
As the code says, it removes the wptexturize filter, which does other things as well, e.g. changes double dashes (--) to &#38;mdash; characters, so unfortunately [...]]]></description>
			<content:encoded><![CDATA[<p>Remove automatic modification of quotation marks (e.g. " to opening and closing quotation marks) by entering the following 4 lines to the functions.php file of your theme.</p>
<p>remove_filter('the_content', 'wptexturize');<br />
remove_filter('the_title', 'wptexturize');<br />
remove_filter('the_excerpt', 'wptexturize');<br />
remove_filter('comment_text', 'wptexturize');</p>
<p>As the code says, it removes the wptexturize filter, which does other things as well, e.g. changes double dashes (--) to &amp;mdash; characters, so unfortunately you'll lose those features too.</p>
]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/224/disable-quotation-mark-modifications-from-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>301 Redirect [PHP]</title>
		<link>http://jussi.ruokomaki.fi/tech/219/301-redirect-php/</link>
		<comments>http://jussi.ruokomaki.fi/tech/219/301-redirect-php/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 08:32:16 +0000</pubDate>
		<dc:creator>Jussi Ruokomäki</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[redirection]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=219</guid>
		<description><![CDATA[&#60;?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/new-url/");
Done. PHP 301 redirect is now rolling in given directory once you put that, say, in a file named index.php.
]]></description>
			<content:encoded><![CDATA[<blockquote><p>&lt;?php<br />
header("HTTP/1.1 301 Moved Permanently");<br />
header("Location: http://www.example.com/new-url/");</p></blockquote>
<p>Done. PHP 301 redirect is now rolling in given directory once you put that, say, in a file named index.php.</p>
]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/219/301-redirect-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript to Footer in WordPress</title>
		<link>http://jussi.ruokomaki.fi/tech/214/javascript-to-footer-in-wordpress/</link>
		<comments>http://jussi.ruokomaki.fi/tech/214/javascript-to-footer-in-wordpress/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 12:08:00 +0000</pubDate>
		<dc:creator>Jussi Ruokomäki</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=214</guid>
		<description><![CDATA[Want to move that jQuery and other js references from header to footer? Try JavaScript to Footer plugin.
]]></description>
			<content:encoded><![CDATA[<p>Want to move that jQuery and other js references from header to footer? Try <a href="http://wordpress.org/extend/plugins/footer-javascript/">JavaScript to Footer </a>plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/214/javascript-to-footer-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cookie-free JS, CSS, etc for Wordpress</title>
		<link>http://jussi.ruokomaki.fi/tech/212/cookie-free-js-css-etc-for-wordpress/</link>
		<comments>http://jussi.ruokomaki.fi/tech/212/cookie-free-js-css-etc-for-wordpress/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 11:53:05 +0000</pubDate>
		<dc:creator>Jussi Ruokomäki</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[cookie-free]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[download time]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=212</guid>
		<description><![CDATA[These 3 steps will help you to set up cookie free JavaScript, CSS and other files for your WordPress installation. (This is especially helpful for changing the domain of certain JS/CSS file references added by plugins.)
Before you start, make sure your blog URL has a leading www (e.g. www.example.com, not example.com). (Cookie-tech-stuff)
Step 1) Create a [...]]]></description>
			<content:encoded><![CDATA[<p>These 3 steps will help you to set up cookie free JavaScript, CSS and other files for your WordPress installation. (This is especially helpful for changing the domain of certain JS/CSS file references added by plugins.)</p>
<p>Before you start, make sure your blog URL has a leading www (e.g. www.example.com, not example.com). (<a href="http://developer.yahoo.com/performance/rules.html#cookie_free">Cookie-tech-stuff</a>)</p>
<p><strong>Step 1)</strong> Create a sub-domain pointing to your real web root (e.g. static.example.com).</p>
<p><strong>Step 2a)</strong> Install <a href="http://wordpress.org/extend/plugins/cdn-rewrites/">CDN Rewrites</a> plugin. (Did not work for me, so I had to revert to another way). If this is you as well, enter step 2b.1.</p>
<p><strong>Step 2b.1)</strong> Install <a href="http://wordpress.org/extend/plugins/free-cdn/">Free CDN </a>plugin. Change its settings if you want to.</p>
<p><strong>Step 2b.2) </strong>Edit /wp-content/plugins/free-cdn/free-cdn.php.</p>
<p>Find</p>
<p>if (isset($parts['port']))<br />
{<br />
$parts['host'] .= '.$parts[port].nyud.net';<br />
unset($parts['port']);<br />
}<br />
else<br />
{<br />
$parts['host'] .= '.nyud.net';<br />
}</p>
<p>around line 282. Right after this add:</p>
<p>$parts['host'] = 'static.example.com'; // my own edit</p>
<p>and make sure the domain matches the one you set up in step 1.</p>
<p>If you want to keep your edit safe, change the version number of the plugin to something like "1200" (at the beginning of the file) so that WP won't suggest updating the plugin.</p>
<p>[<strong>UPDATE</strong>: Remember to <a href="http://jussi.ruokomaki.fi/tech/232/wordpress-cookie-domain/">set WP cookie domain</a> in wp-config.php: define('COOKIE_DOMAIN', 'www.yoursite.com');]</p>
]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/212/cookie-free-js-css-etc-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cell Reference to Excel Header / Footer [Only VBA will do]</title>
		<link>http://jussi.ruokomaki.fi/tech/210/cell-reference-to-excel-header-footer/</link>
		<comments>http://jussi.ruokomaki.fi/tech/210/cell-reference-to-excel-header-footer/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 08:53:01 +0000</pubDate>
		<dc:creator>Jussi Ruokomäki</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cell reference]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=210</guid>
		<description><![CDATA[The only way: use a VBA macro. E.g.
ActiveSheet.PageSetup.LeftFooter = "Check: " &#38;  Sheets(SETTINGS_SHEET_NAME).Range("F4").Value
]]></description>
			<content:encoded><![CDATA[<p>The only way: use a VBA macro. E.g.</p>
<p>ActiveSheet.PageSetup.LeftFooter = "Check: " &amp;  Sheets(SETTINGS_SHEET_NAME).Range("F4").Value</p>
]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/210/cell-reference-to-excel-header-footer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Line Break in Excel Header / Footer via Macro</title>
		<link>http://jussi.ruokomaki.fi/tech/208/line-break-in-excel-header-footer-via-macro/</link>
		<comments>http://jussi.ruokomaki.fi/tech/208/line-break-in-excel-header-footer-via-macro/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 08:52:00 +0000</pubDate>
		<dc:creator>Jussi Ruokomäki</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=208</guid>
		<description><![CDATA[Using VBA, add line break to header or footer with Chr(13).
E.g.
ActiveSheet.PageSetup.LeftFooter = "Foo bar" &#38; Chr(13) &#38; "Another line"
]]></description>
			<content:encoded><![CDATA[<p>Using VBA, add line break to header or footer with Chr(13).</p>
<p>E.g.</p>
<p>ActiveSheet.PageSetup.LeftFooter = "Foo bar" &amp; Chr(13) &amp; "Another line"</p>
]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/208/line-break-in-excel-header-footer-via-macro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Minify</title>
		<link>http://jussi.ruokomaki.fi/tech/205/wp-minify/</link>
		<comments>http://jussi.ruokomaki.fi/tech/205/wp-minify/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 10:30:40 +0000</pubDate>
		<dc:creator>Jussi Ruokomäki</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=205</guid>
		<description><![CDATA[Note to self. When building WP sites with several js/css files, remember to include WP Minify with the regular plugins.
]]></description>
			<content:encoded><![CDATA[<p>Note to self. When building WP sites with several js/css files, remember to include <a href="http://wordpress.org/extend/plugins/wp-minify/">WP Minify</a> with the regular plugins.</p>
]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/205/wp-minify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Backup for Mac (Mozy, Carbonite, iDrive, Dropbox, ...)</title>
		<link>http://jussi.ruokomaki.fi/tech/191/online-backup-for-mac-mozy-carbonite-idrive-dropbox/</link>
		<comments>http://jussi.ruokomaki.fi/tech/191/online-backup-for-mac-mozy-carbonite-idrive-dropbox/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 10:05:45 +0000</pubDate>
		<dc:creator>Jussi Ruokomäki</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[sync]]></category>

		<guid isPermaLink="false">http://jussi.ruokomaki.fi/tech/?p=191</guid>
		<description><![CDATA[Trying to find out a way to backup my data online. Lots of options.
Most of the "unlimited" backup plans have a caveat:

Mozy -- Free account of 2 GB. Deletes permanently deleted files after 30 days.
Carbonite -- Deletes permanently deleted files after 30 days.
Backblaze -- Deletes permanently deleted files after 4 weeks.
CrashPlan --No limitations as above, [...]]]></description>
			<content:encoded><![CDATA[<p>Trying to find out a way to backup my data online. Lots of options.</p>
<p>Most of the "unlimited" backup plans have a caveat:</p>
<ul>
<li><a href="http://mozy.com/">Mozy</a> -- Free account of 2 GB. Deletes permanently deleted files after 30 days.</li>
<li><a href="http://carbonite.com/">Carbonite</a> -- Deletes permanently deleted files after 30 days.</li>
<li><a href="http://www.backblaze.com/">Backblaze</a> -- Deletes permanently deleted files after 4 weeks.</li>
<li><a href="http://crashplan.com/">CrashPlan</a> --No limitations as above, yet it's cheaper. Hmm..</li>
<li><a href="http://www.livedrive.com/">LiveDrive</a> -- Site looks fishy.</li>
<li><a href="https://www.elephantdrive.com/">ElephantDrive</a> -- Fishy.</li>
</ul>
<p><a href="http://news.cnet.com/8301-13554_3-9752350-33.html?tag=mncol;txt">Some talk about Mozy</a>, includes great stuff about EULA's of Mozy and other players at the end.</p>
<p>Call me crazy but I'm going for a limited plan. Need around 200 GB storage.</p>
<p>Backup solutions:</p>
<ul>
<li><a href="http://www.jungledisk.com/">JungleDisk</a> -- Using Amazon S3: $0.150 per GB per month. Add transfer costs, etc. I really don't feel like counting the total cost..</li>
<li><a href="http://www.idrive.com/">iDrive</a> -- Free account of 2 GB. 150 GB plan $4.95 / month. 500 GB $14.95 / month.</li>
<li><a href="http://www.safecopybackup.com/">SafeCopy</a> -- Free trial account of 3 GB. Can store multiple computers (and user accounts, I guess) to one SafeCopy account. 150 GB $50 / year. 250 GB $75 / year.</li>
</ul>
<p>Backup and syncing solutions. Sync files across multiple devices (mac, pc, mobile phone, etc) :</p>
<ul>
<li><a href="http://www.dropbox.com/">Dropbox</a> -- Free account of 2 GB. 100 GB $19.99 / month.</li>
<li><a href="http://www.zumodrive.com/">ZumoDrive</a> -- Free account of 1 GB + 1 GB. 100 GB $19.99 / month. 200 GB $34.99 / month.</li>
<li><a href="https://www.sugarsync.com/">SugarSync</a> -- Free account of 2 GB. 100 GB $14.99 / month. 250 GB $24.99 / month.</li>
<li><a href="https://spideroak.com/">SpiderOak</a> -- Free account of 2 GB. $10 / 100 GB / month or $100 / 100 GB / year.</li>
</ul>
<p>Totally on its own category (someone said it supports mac, but I doubt it and really can't seem to find proper info -- or pretty much anything -- on the site):</p>
<ul>
<li><a href="http://skydrive.live.com/">SkyDrive</a> (Windows Live) -- Free account of 25 GB.</li>
</ul>
<p>Other options: <a href="http://www.box.net/">Box.net</a>, <a href="http://www.sosonlinebackup.com/">SOS Online Backup</a>. It's just that these has only plans for a few GB's.</p>
<ul></ul>
<p>I guess I have to take a closer look which files I need to sync (I can't live without Dropbox anymore) and which need backup only. Seems like a SafeCopy + Dropbox hybrid solution will do.</p>
]]></content:encoded>
			<wfw:commentRss>http://jussi.ruokomaki.fi/tech/191/online-backup-for-mac-mozy-carbonite-idrive-dropbox/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
