<?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>emosewami.com</title>
	<atom:link href="http://emosewami.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://emosewami.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 13 Oct 2011 23:28:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>The Easiest Way To See Photoshop Thumbnails In Windows Explorer</title>
		<link>http://emosewami.com/2011/07/07/the-easiest-way-to-see-photoshop-thumbnails-in-windows-explorer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-easiest-way-to-see-photoshop-thumbnails-in-windows-explorer</link>
		<comments>http://emosewami.com/2011/07/07/the-easiest-way-to-see-photoshop-thumbnails-in-windows-explorer/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 18:28:44 +0000</pubDate>
		<dc:creator>emosewami</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://emosewami.com/?p=703</guid>
		<description><![CDATA[It seems like every couple of years I&#8217;m trying to solve this problem: viewing Photoshop (PSD) files as Thumbnails in Windows Explorer only shows a generic icon and not an actual thumbnail preview like you get with other image file types. I remember finding ways to fix this on Windows XP and Windows Vista, but [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like every couple of years I&#8217;m trying to solve this problem: viewing <strong>Photoshop (PSD) files as Thumbnails</strong> in Windows Explorer only shows a generic icon and not an actual thumbnail preview like you get with other image file types. I remember finding ways to fix this on Windows XP and Windows Vista, but recently had more trouble fixing it for <strong>Windows 7</strong>. I researched, downloaded, and installed a few programs that should have worked, but none of them did. I was beginning to think I would have to pay for a program just to see those stupid thumbnails.</p>
<p>Then, buried in some faceless message board, I found a link to <strong><a href="http://poppeman.se/pictus/" target="_blank">Pictus</a></strong>. Pictus is actually an image viewer, useful if you want a fast way to view full size images and scroll through multiple files quickly. But as an added bonus, the program gives Windows Explorer the ability to display PSD files (and other image formats) as thumbnails! It&#8217;s fast, free, and better than any other solution out there. What&#8217;s especially cool is that if you use Windows 7&#8242;s File Preview Pane, PSD files will show full previews there as well! Check it out:</p>
<div id="attachment_704" class="wp-caption alignnone" style="width: 160px"><a href="http://emosewami.com/wp-content/uploads/2011/07/psd-file-thumbnail.jpg"><img class="size-thumbnail wp-image-704 " title="PSD File Thumbnail in Windows Explorer" src="http://emosewami.com/wp-content/uploads/2011/07/psd-file-thumbnail-150x150.jpg" alt="PSD File Thumbnail in Windows Explorer" width="150" height="150" /></a><p class="wp-caption-text">PSD File Thumbnail in Windows Explorer</p></div>
<p>I love it when I can find a simple solution that fixes a very specific problem. Thank you internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://emosewami.com/2011/07/07/the-easiest-way-to-see-photoshop-thumbnails-in-windows-explorer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Automatically Fix Spelling Errors As You Type With AutoHotkey</title>
		<link>http://emosewami.com/2011/06/29/automatically-fix-spelling-errors-as-you-type-with-autohotkey/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=automatically-fix-spelling-errors-as-you-type-with-autohotkey</link>
		<comments>http://emosewami.com/2011/06/29/automatically-fix-spelling-errors-as-you-type-with-autohotkey/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 18:48:06 +0000</pubDate>
		<dc:creator>emosewami</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://emosewami.com/?p=701</guid>
		<description><![CDATA[Here&#8217;s a quick trick I learned that lets you automatically replace any common spelling mistakes you make while typing on your computer. The magic behind this little trick is AutoHotkey. AutoHotkey is a scripting tool that is seriously powerful, but can easily be used by anyone &#8211; not just programmers. AutoHotkey has a good tutorial here, [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick trick I learned that lets you automatically replace any common spelling mistakes you make while typing on your computer. The magic behind this little trick is <strong><a href="http://www.autohotkey.com/" target="_blank">AutoHotkey</a></strong>. AutoHotkey is a scripting tool that is seriously powerful, but can easily be used by anyone &#8211; not just programmers. AutoHotkey has a <a href="http://www.autohotkey.com/docs/Tutorial.htm" target="_blank">good tutorial here</a>, but it basically works like this:</p>
<ol>
<li><a href="http://www.autohotkey.com/" target="_blank">Download AutoHotkey</a> from their website and install it.</li>
<li>Create a file named <strong>myscripts.ahk</strong> (or name it whatever you want, just make it an ahk file).</li>
<li>Edit the file by right-clicking on it and clicking on <strong>Edit Script</strong>.</li>
<li>Put your various scripts in the file then save it, close it, and run (double-click) it.</li>
<li>For extra awesomeness, put that file in your computer&#8217;s startup folder so it will always be running.</li>
</ol>
<p>Now the actual script that I use to fix my common spelling mistakes is this:</p>
<pre class="wp-code-highlight prettyprint linenums:1">
:*:xom::
SendInput com
return
</pre>
<p>There are two important parts to that script. First, the &#8220;<strong>xom</strong>&#8221; is the spelling mistake I commonly make. Second, the &#8220;<strong>com</strong>&#8221; is what I actually meant to type. So you can put those three lines inside your ahk file and fix any of your common spelling mistakes. You can simply copy/paste the code multiple times to add more words that you want to automatically spell check.</p>
<p>When I put these three lines in my myscripts.ahk file, every single time I type &#8220;<strong>xom</strong>&#8221; it is replaced with &#8220;<strong>com</strong>&#8220;. It doesn&#8217;t matter where I&#8217;m typing &#8211; it can be my browser&#8217;s address bar, in an email, IM conversation, or anywhere else. And the replacement happens so fast that I usually don&#8217;t even catch it.</p>
<p>Give it a try! If you need any help let me know in the comments. I&#8217;m a big believer in AutoHotkey and it&#8217;s powers. I&#8217;ll add more useful scripts that I have in my ahk file to this blog eventually.</p>
]]></content:encoded>
			<wfw:commentRss>http://emosewami.com/2011/06/29/automatically-fix-spelling-errors-as-you-type-with-autohotkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My New Favorite ToDo App</title>
		<link>http://emosewami.com/2011/06/02/my-new-favorite-todo-app/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-new-favorite-todo-app</link>
		<comments>http://emosewami.com/2011/06/02/my-new-favorite-todo-app/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 20:17:29 +0000</pubDate>
		<dc:creator>emosewami</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://emosewami.com/?p=696</guid>
		<description><![CDATA[I&#8217;m not the most organized person in the world. I also frequently lack motivation to &#8220;get things done&#8221;. However, I have been looking for a good system to keep todos and notes together. One that is simple and works for me. Turns out, the solution I like the most is a hybrid creation of a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not the most organized person in the world. I also frequently lack motivation to &#8220;get things done&#8221;. However, I have been looking for a good system to keep todos and notes together. One that is simple and works for me. Turns out, the solution I like the most is a hybrid creation of a web service and self-hosted script that I mashed together.</p>
<p>Last year I finally replaced Notepad (hurray for programs that haven&#8217;t changed in over a decade) with Simplenote, an &#8220;in-the-cloud&#8221; Notepad-like web service. Simplenote works great for quickly creating new notes and keeping a history of previous notes. Plus I can use it on my desktop, laptop, iPad (2!), iPod touch, and anywhere else from a web browser. And I always have the latest version of my notes handy. For a while I was trying to use it as a todo list manager as well (I&#8217;m a fan of plain-text, minimal things), but it just didn&#8217;t work out very well.</p>
<p>Then I found myTinyTodo, a self-hosted todo list manager. It&#8217;s got modern javascript effects that make it feel more like an app and less like a webpage. Task creation is super simple and it&#8217;s got just enough features without feeling like managing the list itself will be a lot of work. The best part is that it is self-hosted, meaning I can change the source code if I want to add/change something.</p>
<p>Now we come to my favorite part of this little project &#8211; marrying the two apps into a notes/todo manager that works for me. I simply created a webpage that iframes (don&#8217;t hate) the Simplenote website and my self-hosted myTinyTodo website into one page. Then I wrote some quick jQuery that creates a tabbed interface so I can switch between notes, todos, and both side-by-side. Check the screenshots below to see how it looks.</p>
<p>&nbsp;</p>
<p><a href="http://emosewami.com/wp-content/uploads/2011/06/notes.jpg"><img class="alignleft size-thumbnail wp-image-697" title="notes" src="http://emosewami.com/wp-content/uploads/2011/06/notes-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://emosewami.com/wp-content/uploads/2011/06/todo1.jpg"><img class="alignleft size-thumbnail wp-image-699" title="todo" src="http://emosewami.com/wp-content/uploads/2011/06/todo1-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://emosewami.com/wp-content/uploads/2011/06/both.jpg"><img class="alignleft size-thumbnail wp-image-700" title="both" src="http://emosewami.com/wp-content/uploads/2011/06/both-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>This setup works great for me, and I plan on cleaning up the code a little bit and putting it in the future &#8220;projects&#8221; section of this site.</p>
]]></content:encoded>
			<wfw:commentRss>http://emosewami.com/2011/06/02/my-new-favorite-todo-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Job Opening: HTML/CSS Developer in Mesa, AZ</title>
		<link>http://emosewami.com/2011/02/16/job-opening-htmlcss-developer-in-mesa-az/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=job-opening-htmlcss-developer-in-mesa-az</link>
		<comments>http://emosewami.com/2011/02/16/job-opening-htmlcss-developer-in-mesa-az/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 22:26:17 +0000</pubDate>
		<dc:creator>emosewami</dc:creator>
				<category><![CDATA[Skyhook]]></category>

		<guid isPermaLink="false">http://emosewami.com/?p=681</guid>
		<description><![CDATA[I realize I pretty much have 0 readers (Google Analytics told me so) but just in case, please see the job listing from where I work below: My company is looking for a junior level HTML/CSS developer to join our rock-star web design team. Great pay. Great opportunity. Do you have what it takes? Do [...]]]></description>
			<content:encoded><![CDATA[<p>I realize I pretty much have 0 readers (Google Analytics told me so) but just in case, please see the job listing from where I work below:</p>
<blockquote><p>My company is looking for a junior level HTML/CSS developer to join our rock-star web design team. Great pay. Great opportunity. Do you have what it takes? Do you know someone who does? <a href="http://bit.ly/gza8eB" target="_blank">http://bit.ly/gza8eB</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://emosewami.com/2011/02/16/job-opening-htmlcss-developer-in-mesa-az/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Scrobble Songs From Your iPhone or iPod Touch Without the Last.fm App</title>
		<link>http://emosewami.com/2011/02/08/how-to-scrobble-songs-from-your-iphone-or-ipod-touch-without-the-last-fm-app/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-scrobble-songs-from-your-iphone-or-ipod-touch-without-the-last-fm-app</link>
		<comments>http://emosewami.com/2011/02/08/how-to-scrobble-songs-from-your-iphone-or-ipod-touch-without-the-last-fm-app/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 04:55:53 +0000</pubDate>
		<dc:creator>emosewami</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://emosewami.com/?p=676</guid>
		<description><![CDATA[Last.fm's official method of scrobbling from your iPhone or iPod is lame - it only happens when you sync your iDevice to your computer. But there is another way that lets you scrobble tracks in real-time, using the default iOS Music app!]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-679" title="lastfm_red" src="http://emosewami.com/wp-content/uploads/2011/02/lastfm_red.gif" alt="" width="145" height="45" />I recently decided I wanted to start <a href="http://www.last.fm/help/faq?category=Scrobbling" target="_blank">scrobbling</a> again. I had set up a <a href="http://www.last.fm/home" target="_blank">Last.fm</a> account years ago, but stopped using it (instead I was keeping track of everything I listened to using custom software &#8211; I&#8217;ll talk more about that some other time). I wanted to scrobble songs that I played on my iPod Touch using the default Music player (not some other app), as well as my desktop media player. My desktop media player of choice (<a href="http://www.foobar2000.org/" target="_blank">foobar2000</a>) has a scrobbling plugin, so that was easy. But scrobbling from my iPod Touch without a 3rd party app took some more digging.</p>
<p>Last.fm does have an <a href="http://www.last.fm/hardware/apple" target="_blank">iOS app</a> that features streaming, but that is no longer going to be free. There&#8217;s also a <a href="http://www.last.fm/download#content_ipod" target="_blank">software program</a> that lets you scrobble songs played from your iDevice, but not in real-time (scrobbling only happens when you sync with iTunes &#8211; which is lame). So here&#8217;s what I wanted in my &#8220;perfect solution&#8221;:</p>
<ul>
<li>Scrobble songs played in real-time using the iDevice&#8217;s built-in Music app</li>
<li>If the iDevice is not connected to the internet, queue songs and scrobble them the next time you are online</li>
<li>Run in the background (just like the default Music app) to allow using other apps while still scrobbling in real-time</li>
</ul>
<p>Not too much to ask for, considering all the new tools Apple has given developers in recent iOS releases. And the solution I found pretty much does all of those things &#8211; <strong>but you&#8217;ll need a jailbroken iDevice.</strong> I love jailbreaking, so that one requirement did not bother me at all. And the solution is a little app called &#8220;Scrobbl&#8221;. Open up Cydia and search for &#8220;Scrobbl&#8221;. Note that there is &#8220;Scrobbl&#8221; and &#8220;Scrobble&#8221;. As far as I can tell, one is supposed to work for newer iOS versions, although it wasn&#8217;t clear to me which one. However, I tried both on my iPod Touch 4th generation with iOS 4.2.1 and &#8220;Scrobbl&#8221; is the one that works for me. It is a <strong>free</strong> app from Cydia, and once you install it you just need to run it and enter your Last.fm username and password. So far it has worked perfectly for me!</p>
]]></content:encoded>
			<wfw:commentRss>http://emosewami.com/2011/02/08/how-to-scrobble-songs-from-your-iphone-or-ipod-touch-without-the-last-fm-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Today I Published My First WordPress Plugin!</title>
		<link>http://emosewami.com/2011/02/03/today-i-published-my-first-wordpress-plugin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=today-i-published-my-first-wordpress-plugin</link>
		<comments>http://emosewami.com/2011/02/03/today-i-published-my-first-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 22:53:10 +0000</pubDate>
		<dc:creator>emosewami</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://emosewami.com/?p=614</guid>
		<description><![CDATA[That&#8217;s right, a little plugin I wrote called the &#8220;Test Data Creator&#8221; has been added to the WordPress Plugin Directory. This plugin lets you quickly add a bunch of test posts and categories to WordPress. The idea is that developers and theme designers can use this plugin to fill out a fresh install of WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right, a little plugin I wrote called the &#8220;<a href="http://wordpress.org/extend/plugins/test-data-creator/" target="_blank">Test Data Creator</a>&#8221; has been added to the <a href="http://wordpress.org/extend/plugins/" target="_blank">WordPress Plugin Directory</a>. This plugin lets you quickly add a bunch of test posts and categories to WordPress. The idea is that developers and theme designers can use this plugin to fill out a fresh install of WordPress with a bunch of content for them to test with. I plan on adding more to the plugin, including pages, comments, authors, and html elements within posts and pages. Eventually I&#8217;ll have a &#8220;projects&#8221; section on this website that will have more info about the plugins I write as well.</p>
<p>This might not be that exciting to most people, especially considering there are almost 13,000 plugins in the WordPress directory. But I&#8217;m still excited. It was fun to learn the process, and I&#8217;ve had the plugin kicking around for almost a year now. I look forward to getting more plugins out there, including the <a href="http://www.wpcalltracking.com/" target="_blank">Worpress/Twilio Call Tracking</a> plugin I helped create with <a href="http://www.skyhookinternetmarketing.com/" target="_blank">Skyhook</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://emosewami.com/2011/02/03/today-i-published-my-first-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

