<?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>Jordan West</title>
	<atom:link href="http://blog.jordan-west.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jordan-west.com</link>
	<description></description>
	<lastBuildDate>Mon, 04 May 2009 10:09:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quicksilver-Like Website Search for jQuery</title>
		<link>http://blog.jordan-west.com/2009/05/quicksilver-like-website-search-for-jquery/</link>
		<comments>http://blog.jordan-west.com/2009/05/quicksilver-like-website-search-for-jquery/#comments</comments>
		<pubDate>Mon, 04 May 2009 10:09:29 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.jordan-west.com/?p=47</guid>
		<description><![CDATA[This is a Quicksilver style client side search for your website. The server specifies the list of pages to be searched on page load, then lets the browser do the searching. For a relatively small list of pages, this is much more responsive than using AJAX auto-complete.
It is designed for power users of your website [...]]]></description>
			<content:encoded><![CDATA[<p>This is a <a href="http://www.blacktree.com/">Quicksilver</a> style client side search for your website. The server specifies the list of pages to be searched on page load, then lets the browser do the searching. For a relatively small list of pages, this is much more responsive than using AJAX auto-complete.</p>
<p>It is designed for power users of your website to navigate faster. It is ideal for forum websites or similar, where users may want to quickly navigate to their profile, new messages, etc.</p>
<p><strong>Demo</strong></p>
<p>Press Esc to see it running on this page (unless you&#8217;re using Internet Explorer).</p>
<p><strong>Compatibility</strong></p>
<p>I haven&#8217;t attempted to make this compatible with Internet Explorer, so it is currently disabled in IE. I have not tested with Chrome, though it works on Firefox and Safari.</p>
<p>Obviously compatibility with IE would be the next step. Originally I was aiming this at power users who want to navigate websites quickly, most of whom use anything but IE.</p>
<p><strong>Usage</strong></p>
<p>Simply specify the list of sites to be searched on the</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  $<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">quicksearch</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>siteList<span style="color: #339933;">:</span>
    <span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">&quot;sites&quot;</span><span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span>
      <span style="color: #009900;">&#123;</span>title<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Google&quot;</span><span style="color: #339933;">,</span> keyword<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;goog&quot;</span><span style="color: #339933;">,</span> url<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;http://www.google.com/&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
      <span style="color: #009900;">&#123;</span>title<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Yahoo&quot;</span><span style="color: #339933;">,</span> keyword<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;yhoo&quot;</span><span style="color: #339933;">,</span> url<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;http://www.yahoo.com/&quot;</span><span style="color: #339933;">,</span> suppressKeyword<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
      <span style="color: #009900;">&#123;</span>title<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Facebook&quot;</span><span style="color: #339933;">,</span> keyword<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;fb&quot;</span><span style="color: #339933;">,</span> url<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;http://www.facebook.com/&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
      <span style="color: #009900;">&#123;</span>title<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Say hello&quot;</span><span style="color: #339933;">,</span> keyword<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;hi&quot;</span><span style="color: #339933;">,</span>
        fn<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>val<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
          <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Hello! You typed '&quot;</span><span style="color: #339933;">+</span>val<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;' to get this box.&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#93;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> visible<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span> newWindow<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><strong>Notes</strong><br />
Any of the options can be omitted. Defaults:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">siteList<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span> sites<span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// This is a object containing a list of sites (can be retrieved via AJAX/JSON after initial load)</span>
showOverlay<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span>  <span style="color: #006600; font-style: italic;">// Show the curtain</span>
invokeKey<span style="color: #339933;">:</span> <span style="color: #CC0000;">27</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// Esc key</span>
overlayID<span style="color: #339933;">:</span> <span style="color: #3366CC;">'qsOverlay'</span><span style="color: #339933;">,</span>
searchBoxID<span style="color: #339933;">:</span> <span style="color: #3366CC;">'qsSearchBox'</span><span style="color: #339933;">,</span>
visible<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span>
newWindow<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span>		<span style="color: #006600; font-style: italic;">// Open links in a new window (beware of popup blockers)</span>
beforeShow<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>  <span style="color: #006600; font-style: italic;">// Called before the search box is shown</span>
beforeHide<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span>  <span style="color: #006600; font-style: italic;">// Called before the search box is hidden</span></pre></td></tr></table></div>

<p>If the user types the keyword of a site in full, the script will automatically navigate to that link &#8211; the user will not need to press enter. This does not happen if there are two sites with the same keyword, or if the &#8217;suppressKeyword&#8217; property is true for that site.</p>
<p><strong>Download</strong><br />
<em>Please note: This is only a prototype, something I hacked together in my spare time. As such, the code needs to be seriously cleaned up. Thus I am providing it only in a minified version for now. I will provide the source if anybody is interested.</em></p>
<p>Requires jQuery. Tested on v1.2.6 and v1.3.2. Simply include jQuery, the following two files, and a script similar to that under &#8216;Usage&#8217; somewhere in your web page.<br />
<a href="http://blog.jordan-west.com/wp-content/uploads/quicksearch/jquery.quicksearch.packed.js">jquery.quicksearch.packed.js</a><br />
<a href="http://blog.jordan-west.com/wp-content/uploads/quicksearch/quicksearch.css">quicksearch.css</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2009/05/quicksilver-like-website-search-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip and Tools for Learning Japanese</title>
		<link>http://blog.jordan-west.com/2008/11/tip-and-tools-for-learning-japanese/</link>
		<comments>http://blog.jordan-west.com/2008/11/tip-and-tools-for-learning-japanese/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 08:19:53 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.jordan-west.com/?p=32</guid>
		<description><![CDATA[I&#8217;m almost one (academic) year into learning Japanese. My final Japanese exam is in two days, and I&#8217;ve been cramming kanji like you wouldn&#8217;t believe. Thanks to an excellent piece of software (keep reading), I&#8217;ve memorised about 250 kanji (and about 500 words using those kanji) in 3 weeks. I&#8217;m hardly a good speaker of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m almost one (academic) year into learning Japanese. My final Japanese exam is in two days, and I&#8217;ve been cramming kanji like you wouldn&#8217;t believe. Thanks to an excellent piece of software (keep reading), I&#8217;ve memorised about 250 kanji (and about 500 words using those kanji) in 3 weeks. I&#8217;m hardly a good speaker of Japanese, but for those starting out, I thought I&#8217;d share some of the tools that I use and my experiences so far.</p>
<p><span id="more-32"></span></p>
<p>A lot of people on the internet badmouth learning Japanese academically. However, for me personally, I probably wouldn&#8217;t have kept at it if I didn&#8217;t take classes in Japanese. Now that I have a grounding in it, I will continue my self-study for sure. I disagree with those that say Japanese classes don&#8217;t teach you anything. However, I agree that Japanese classes <em>alone </em>don&#8217;t teach you anything. Here&#8217;s my point: Japanese classes teach you how to structure grammar, and a bunch of (hopefully, but not always useful) vocabulary. They teach you how to read and write. However, they don&#8217;t teach you how to speak, which is the most important aspect for fluency. This is something you have to really make an effort in outside of classes. In class, you don&#8217;t learn how to put sentences together quickly in your head, as you already do with your first language. Of course, classes can also make something boring out of something interesting. It doesn&#8217;t have to be that way though. <a href="http://www.alljapaneseallthetime.com/blog/about" target="_blank">Have fun learning Japanese</a> outside of classes, and it will become more interesting in class.</p>
<p>I&#8217;ve been lucky in that my university follows the excellent Gakken&#8217;s Japanese for Everyone (JFE) textbook, which is great for self-study. The JFE kanji book is also useful, however I&#8217;d avoid the workbook. The three books are all quite old (1990), but still very relevant, and the structure of the textbook is excellent. As for kanji, if you&#8217;re starting out in self-study, I&#8217;d recommend checking out the <a href="http://en.wikipedia.org/wiki/Remembering_the_Kanji_I" target="_blank">Heisig method</a> of learning the kanji, rather than the standard method of the JFE kanji book. I think you&#8217;ll be amazed by how quickly and easily you can remember just a few characters when using the Heisig method. By learning 25 characters per day (which is easier than you may think) it is possible to learn the entire official set of the 2000 most commonly used characters in Japan in 3 months. That may sound scary, but you don&#8217;t have to do it alone. In this world, thanks to the internet and <a href="http://kanji.koohii.com/" target="_blank">Reviewing the Kanji</a>, you can share with others on the same path as you.</p>
<p><a href="http://ichi2.net/anki/" target="_blank">Anki </a>is the greatest piece of study software I have ever come across. I&#8217;ve never had more success with my study than in the past month since I discovered Anki. I previously used flashcard software called ProVoc (Mac only), but eventually got tired of reviewing the couple of hundred or so words over and over again. As soon as I stopped using ProVoc after my mid-year exam &#8211; everything I learned from it left my brain [<a class="tippy_link" onmouseover="domTip_toolText('tip0', 'ProVoc is great for cramming. If you need to learn a big chunk of information for a one-off exam really quickly, ProVoc does that very well. I&amp;#8217;ve found Anki great for cramming too, as long as you start early - learning any more than 25 new words each day can be very tiring.', 'an afterthought', '');" onmouseout="domTip_clearTip('false')">an afterthought</a>]. Now that I&#8217;m using Anki, I have 1200 cards, yet I only need to review around 100 per day &#8211; and this number is decreasing. Anki is smart. Anki knows when you know each word. For example, some words/kanji I know very well, Anki isn&#8217;t going to show me for 2 more months. After those 2 months are up, if I can still remember those words, Anki won&#8217;t show them to me for maybe 3 or 4 months. Now almost half of my words will be shown again sometime in the next week, since Anki knows I&#8217;m not confident with remembering those.</p>
<p>Anki is also great to use with Heisig&#8217;s remembering the kanji. Although Reviewing the Kanji has an online review function, I much prefer Anki&#8217;s spaced repetition. Anki comes with a complete Heisig pack, and links to Reviewing the Kanji from each card. Anki also allows you to synchonise to an online database, so you can use Anki from a web browser anywhere.</p>
<p>So to sum up:</p>
<ul>
<li>Classes aren&#8217;t that bad, but if you&#8217;re taking them, supplement with an ample dose of fun <img src='http://blog.jordan-west.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Buy Gakken&#8217;s Japanese for Everyone text. Seriously, its great for learning the basics in grammar.</li>
<li>Check out Heisig&#8217;s Remembering the Kanji.</li>
<li><a href="http://ichi2.net/anki/" target="_blank">Get Anki</a>. Start a new deck of cards and enter <em>every word you come across</em> into it. Carry a notepad or iPhone or something so you can write words out when you hear them.</li>
<li>Read <a href="http://www.alljapaneseallthetime.com/blog/about" target="_blank">AllJapaneseAllTheTime</a>. A <strong>lot</strong> of useful information on there.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2008/11/tip-and-tools-for-learning-japanese/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Anti-Procrastination tool is a product of my procrastination</title>
		<link>http://blog.jordan-west.com/2008/10/anti-procrastination-tool/</link>
		<comments>http://blog.jordan-west.com/2008/10/anti-procrastination-tool/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 14:06:45 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[procrastination]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[study]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[internet addiction]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://jordwest.wordpress.com/?p=29</guid>
		<description><![CDATA[
Note: if the picture above looks badly resized, and jagged, this post is going to be irrelevant to you anyway since you don&#8217;t use firefox   
Do you find yourself impulsively checking certain websites when you should be working? I do. In fact its become so automatic for me that I barely notice I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://www.ashersarlin.com/" target="_blank"><img class="aligncenter" title="Distractions" src="http://grorx.rooms.cwal.net/Stuff/distractions.gif" alt="" width="419" height="299" /></a></p>
<p><em><strong>Note:</strong> if the picture above looks badly resized, and jagged, this post is going to be irrelevant to you anyway since you don&#8217;t use firefox <img src='http://blog.jordan-west.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </em></p>
<p>Do you find yourself impulsively checking certain websites when you should be working? I do. In fact its become so automatic for me that I barely notice I&#8217;m doing it until I&#8217;ve opened about 10 tabs and each of them contains something more interesting than my work.</p>
<p>I&#8217;ve tried various internet anti-procrastination extensions for Firefox, but they all seem to do the same thing &#8211; limit the amount of time you spend on certain websites. Personally, this doesn&#8217;t work for me. They pop up while I&#8217;m halfway through reading or watching something, and eventually I just get sick of the rude messages and uninstall the extension.</p>
<p>So what if you could surf the site for as long as you like without interruptions AND be more productive? Its not possible you say? Well, I&#8217;ve written my own script to test this theory. Its only a couple of days old so I haven&#8217;t tested it thouroughly yet, but I think its working. Basically it has two functions:</p>
<ul>
<li>Stops you from impulsively checking time-sink websites really often.</li>
<li>Offers words of encouragement =)</li>
</ul>
<p>When you check a website, eg facebook, the time is recorded. You can surf the website as long as you like (theoretically you&#8217;ll eventually get bored) but once you stop surfing the site &#8211; ie stop opening tabs/clicking links &#8211; <strong>you won&#8217;t be allowed to access the site for another <em>five hours.</em></strong></p>
<p>That&#8217;s right, five hours. I know it seems like a long time, but if you&#8217;re like me you&#8217;ll realise that don&#8217;t really need to check those sites more than once per day. In the future I&#8217;ll provide options to change that length.</p>
<p><span style="text-decoration:line-through;">I&#8217;ll post the script in the next few days, meanwhile you might want to install <a title="Download Greasemonkey for Firefox" href="https://addons.mozilla.org/en-US/firefox/addon/748" target="_blank">Greasemonkey</a>, a Firefox extension which you&#8217;ll need to run the script.<br />
</span><a href="http://jordwest.wordpress.com/anti-procrastinator/">Script has been posted</a></p>
<p><a href="http://blog.jordan-west.com/wp-content/uploads/2008/10/antiprocrastinator_screen_11.jpg"><img class="aligncenter size-full wp-image-38" title="Anti-Procrastinator Screenshot" src="http://blog.jordan-west.com/wp-content/uploads/2008/10/antiprocrastinator_screen_11.jpg" alt="" width="450" height="335" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2008/10/anti-procrastination-tool/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>11 Blue-Screens of Death in Real Life</title>
		<link>http://blog.jordan-west.com/2008/03/10-blue-screens-of-death-in-real-life/</link>
		<comments>http://blog.jordan-west.com/2008/03/10-blue-screens-of-death-in-real-life/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 06:10:11 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jordwest.wordpress.com/?p=23</guid>
		<description><![CDATA[EDIT: OK, I&#8217;m a bit slow, but I can&#8217;t not include this classic from the Beijing Olympics:

The world relies on Windows. Good job Microsoft.






OK, this next one isn&#8217;t really in real life but its entertaining nonetheless.




]]></description>
			<content:encoded><![CDATA[<p><strong>EDIT: </strong>OK, I&#8217;m a bit slow, but I can&#8217;t not include this classic from the Beijing Olympics:</p>
<p><a href="http://gizmodo.com/5035456/blue-screen-of-death-strikes-birds-nest-during-opening-ceremonies-torch-lighting"><img class="alignnone size-full wp-image-25" title="BSOD Bird's Nest (Gizmodo)" src="http://blog.jordan-west.com/wp-content/uploads/2008/09/bsod_nest_main2.jpg" alt="" width="450" height="311" /></a></p>
<p>The world relies on Windows. Good job Microsoft.</p>
<p><a href="http://www.flickr.com/photos/lordbute/384027146/" target="_blank"><img src="http://farm1.static.flickr.com/163/384027146_d99feee42b.jpg?v=1171025843" alt="" width="375" height="500" /></a></p>
<p><a href="http://www.flickr.com/photos/keoki/1288649316/"><img src="http://farm2.static.flickr.com/1332/1288649316_c5ab9f4e02.jpg?v=0" alt="" width="375" height="500" /></a></p>
<p><a href="http://www.flickr.com/photos/grahamix/6071001/"><img src="http://farm1.static.flickr.com/5/6071001_4fee2c2d5a.jpg?v=0" alt="" /></a></p>
<p><a href="http://www.flickr.com/photos/nagamori/56038263/" target="_blank"><img src="http://farm1.static.flickr.com/33/56038263_87230b0108.jpg?v=0" alt="" width="375" height="500" /></a></p>
<p><img src="http://farm3.static.flickr.com/2028/2362625769_3ca6a0653b.jpg?v=0" alt="" width="375" height="500" /></p>
<p><a href="http://www.flickr.com/photos/dherholz/319375411/" target="_blank"><img src="http://farm1.static.flickr.com/140/319375411_d8cb0295b6.jpg?v=0" alt="" width="333" height="500" /></a></p>
<p>OK, this next one isn&#8217;t really in real life but its entertaining nonetheless.</p>
<p><a href="http://www.flickr.com/photos/lastexile/487608770/" target="_blank"><img src="http://farm1.static.flickr.com/184/487608770_af93cd7312.jpg?v=0" alt="" width="500" height="400" /></a></p>
<p><a href="http://www.flickr.com/photos/g2223060/66607333/" target="_blank"><img src="http://farm1.static.flickr.com/25/66607333_a11265d811.jpg?v=0" alt="" width="500" height="375" /></a></p>
<p><a href="http://www.flickr.com/photos/smeallum/10344080/" target="_blank"><img src="http://farm1.static.flickr.com/8/10344080_89556689c0.jpg?v=0" alt="" width="344" height="500" /></a></p>
<p><a href="http://www.flickr.com/photos/ilmungo/49165881/" target="_blank"><img src="http://farm1.static.flickr.com/24/49165881_bb680fc370.jpg?v=0" alt="" width="500" height="388" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2008/03/10-blue-screens-of-death-in-real-life/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Starting Today</title>
		<link>http://blog.jordan-west.com/2008/02/starting-today/</link>
		<comments>http://blog.jordan-west.com/2008/02/starting-today/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 07:01:08 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jordwest.wordpress.com/2008/02/25/starting-today/</guid>
		<description><![CDATA[My quest to become fluent in speak Japanese began today. I’m taking Japanese classes for 6 hours per week, plus 2 extra hours of conversation practice. After one hour in class, and one hour of conversation class (with native Japanese speakers) I have already learned a lot more from the conversation class.
I remember while studying [...]]]></description>
			<content:encoded><![CDATA[<div class="goalentry">My quest to <span style="text-decoration:line-through;">become fluent in</span> speak Japanese began today. I’m taking Japanese classes for 6 hours per week, plus 2 extra hours of conversation practice. After one hour in class, and one hour of conversation class (with native Japanese speakers) I have already learned a lot more from the conversation class.</p>
<p>I remember while studying a little Japanese in high school I underestimated how difficult it would be to learn a language. I am hoping that these extra conversation classes will help. When learning a language, I think it helps to put it in context by actually conversing with a Japanese person – it takes away the whole academic aspect to the language. Japanese to the English speaker can sometimes feel like doing maths – it takes a while to understand, but then it just suddenly makes sense. Then you realise there are a zillion other rules (like English – the <em>I before E except after C</em> rule is the most stupid spelling rule I’ve ever encountered &#8211; what about &#8216;their&#8217;?!).</div>
<div class="goalprogresslink">See more progress on: <a href="http://www.43things.com/people/progress/jordwest?on=10100067">become fluent in japanese</a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2008/02/starting-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Procrastination Dash</title>
		<link>http://blog.jordan-west.com/2007/03/procrastination-dash/</link>
		<comments>http://blog.jordan-west.com/2007/03/procrastination-dash/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 12:34:24 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[motivation]]></category>
		<category><![CDATA[procrastination]]></category>
		<category><![CDATA[study]]></category>

		<guid isPermaLink="false">http://jordwest.wordpress.com/2007/03/29/procrastination-dash/</guid>
		<description><![CDATA[Just read an interesting method of avoiding procrastination, or rather motivating yourself to work on certain tasks. By doing tiny amounts of tasks you realise how easy the task is and thus how easily you can complete it. Not sure what you might do if the task isn&#8217;t easy however.
Sounds like an interesting idea, I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>Just read an interesting method of avoiding procrastination, or rather motivating yourself to work on certain tasks. By doing tiny amounts of tasks you realise how easy the task is and thus how easily you can complete it. Not sure what you might do if the task isn&#8217;t easy however.</p>
<p>Sounds like an interesting idea, I&#8217;ll give it a go over the next week or so.<br />
Link: <a href="http://www.43folders.com/2005/09/08/kick-procrastinations-ass-run-a-dash/" target="_blank">Kick Procrastination&#8217;s ass: Run a dash</a></p>
<p>Yes, I was procrastinating by writing this. I have an assignment due tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2007/03/procrastination-dash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Racial Separation in Australia</title>
		<link>http://blog.jordan-west.com/2007/03/racial-separation-in-australia/</link>
		<comments>http://blog.jordan-west.com/2007/03/racial-separation-in-australia/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 02:32:42 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[politics]]></category>
		<category><![CDATA[racism]]></category>

		<guid isPermaLink="false">http://jordwest.wordpress.com/2007/03/23/racial-separation-in-australia/</guid>
		<description><![CDATA[I recently received this chain letter in my email:
Subject:  im proud.u call me racist
Okay, now that i have your attention.
There are Aboriginals, ,Torres Strait Islanders, Kiwi Australians, Lebanese Australians, Asian Australians, Arab Australians, Boat People from all over the place., etc. And then there are just Australians.
You pass me on the street and sneer [...]]]></description>
			<content:encoded><![CDATA[<p>I recently received this chain letter in my email:</p>
<blockquote><p><strong><em>Subject:  <font size="2">im proud.u call me racist</font></em></strong><br />
<em><font size="2">Okay, now that i have your attention.</font></em></p>
<p><em><font size="2">There are Aboriginals, ,Torres Strait Islanders, Kiwi Australians, Lebanese Australians, Asian Australians, Arab Australians, Boat People from all over the place., etc. And then there are just Australians.</font></em></p>
<p><em><font size="2">You pass me on the street and sneer in my Direction.</font></em></p>
<p><em><font size="2">You Call me &#8221; Australian Dog&#8221;, &#8220;White boy&#8221;, &#8220;Cracker&#8221;, &#8220;Honkey&#8221;, &#8220;Whitey&#8221;, &#8220;Caveman&#8221; . And that&#8217;s OK. But when I call you, Black Fellarr, Kike, Towel head, Sand-nigger, Sheep Shager Camel Jockey, Gook, or Chink, You call Me a racist.</font></em></p>
<p><em><font size="2">You say that whites commit a lot of violence against you, so why are the Housing Estates the most dangerous places to Live?</font></em></p>
<p><em><font size="2">You have the United Arab&#8217;s union, College Fund. You have Invasion Day. You Have Yom Hashoah ,You have Ma&#8217;uled Al-Nabi. If we had WET (White Entertainment Television),<br />
.We&#8217;d be racists.</font></em></p>
<p><em><font size="2">If we had a White Pride Day .. You would call us Racists.</font></em></p>
<p><em><font size="2">If we had White History Month, we&#8217;d be racists.</font></em></p>
<p><em><font size="2">If we had any organization for only whites to&#8221;advance&#8221; OUR lives . We&#8217;d be racists.</font></em></p>
<p><em><font size="2">If we had a college fund that only gave white Students scholarships&#8230;.. You know we&#8217;d be racists.</font></em></p>
<p><em><font size="2">&#8220;White colleges&#8221; ..THAT would be a racist college.</font></em></p>
<p><em><font size="2">You can march for your race and rights. If we marched for our Race and rights, You would call us racists.</font></em></p>
<p><em><font size="2">You are proud to be black, brown, yellow and Orange, and you&#8217;re not afraid to announce it. But when we announce our White pride .You call us racists.</font></em></p>
<p><em><font size="2">You rob us, carjack us, and shoot at us. But, when a white police officer shoots a Muslim gang member or beats up a Lebanese Drug-dealer running from the law and posing a threat to society,<br />
You call him a racist.</font></em></p>
<p><em><font size="2">I am proud. But, you call me a racist.</font></em></p>
<p><em><font size="2">Why is it that only whites can be racists?</font></em></p>
<p><em><font size="2">There is nothing improper about this e-mail.</font></em></p>
<p><em><font size="2">Let&#8217;s see which of you are proud enough to send it on.<br />
And if you don&#8217;t send it on, you&#8217;ll be eaten alive on next wednesday, ( or something along the lines of that shit. )</font></em></p></blockquote>
<p>First of all, I&#8217;d like to know what is meant by <em>&#8220;And then there are just Australians&#8221;.</em> Who is just Australian? People born in Australia? I&#8217;m pretty sure many Aboriginal Australians are born in Australia. Or by &#8216;just Australian&#8217; are you talking about people from White European background? Take a look at your family history and I think you&#8217;ll find that all of your descendants arrived in Australia on boats from all over the place.</p>
<p><span id="more-20"></span></p>
<blockquote><p>You have Invasion Day. You Have Yom Hashoah ,You have Ma&#8217;uled Al-Nabi. If we had WET (White Entertainment Television),<br />
.We&#8217;d be racists.</p></blockquote>
<p>Invasion Day is Australia Day, the day that Australians celebrate the landing of the First Fleet and set up of the Colony of New South Wales. This sounds like a European day to me.<br />
Yom Hashoah remembers the 6+ million Jews who were killed in the Holocaust. ANZAC day remembers the bravery of the Australia/New Zealand Army Corps.<br />
Mawlid al-Nabi celebrates the birthday of the Prophet Muhammad. Christmas celebrates the birthday of Christ.<br />
White Entertainment Television? How about every channel which isn&#8217;t Black Entertainment Television. We don&#8217;t even <em>have</em> BET here in Australia (it turns out this email is just another modification of one which <a href="http://raceandpolitics.blogspot.com/2006/01/not-this-again.html">started in the US</a>).</p>
<blockquote><p>I am proud. But, you call me a racist.</p></blockquote>
<p>That&#8217;s because you are a racist. That has nothing to do with being proud. I&#8217;m a proud Australian. Nobody calls me racist. I am not proud of my European history. People don&#8217;t call you racist only because of what you say &#8211; they call you racist because of your attitude.</p>
<blockquote><p>There is nothing improper about this e-mail.</p></blockquote>
<p>Yes there is.</p>
<p>The way this chain-letter is written separates &#8220;us&#8221; from &#8220;you&#8221;, but this doesn&#8217;t make sense. The only separation that is being made here is skin colour. It is this attitude that people with white skin are somehow separate from people with any other colour skin that annoys me.  Unfortunately this is the attitude of many Australians &#8211; take the Cronulla riots for example. People are separate only in that they came from different countries to begin with. But here in Australia, we are all just Australians.</p>
<p>Australia is a land of diverse culture, which is what makes it so interesting. Its people who write and say things like this email that make me ashamed to say I&#8217;m Australian.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2007/03/racial-separation-in-australia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>OpenOffice &#8211; It&#8217;s Not Cheating</title>
		<link>http://blog.jordan-west.com/2007/03/openoffice-its-not-cheating/</link>
		<comments>http://blog.jordan-west.com/2007/03/openoffice-its-not-cheating/#comments</comments>
		<pubDate>Thu, 08 Mar 2007 11:41:04 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jordwest.wordpress.com/2007/03/08/openoffice-its-not-cheating/</guid>
		<description><![CDATA[With the launch of Microsoft&#8217;s new suite of software with an interface make-over comes an offer no money saving uni student could refuse. Microsoft Office Ultimate 2007, for $75. The website advertising it all &#8211; itsnotcheating.com.au &#8211; is clearly aimed at uni students who pirate their copies of Office. After all how many students can [...]]]></description>
			<content:encoded><![CDATA[<p>With the launch of Microsoft&#8217;s new suite of software with an interface make-over comes an offer no money saving uni student could refuse. Microsoft Office Ultimate 2007, for $75. The website advertising it all &#8211; <a href="http://www.itsnotcheating.com.au/" target="_blank">itsnotcheating.com.au</a> &#8211; is clearly aimed at uni students who pirate their copies of Office. After all how many students can afford the pricey Office suite, even with a normal student discount? It sounds like a great deal &#8211; you can even get a year&#8217;s trial for only $25, however I propose a better one. How about free? And no it is not cheating.</p>
<p>OpenOffice has been around for quite a while, however it is only just starting to pick up momentum as it becomes discovered by more and more individuals, businesses, and <acronym title="Non Profit Organisation">NPO</acronym>s. The great thing about OpenOffice is that it follows the open standard. Basically this means that it is designed in such a way that features can be continually added, and remain standard across all office software which use the OpenDocument format.</p>
<p>The OpenDocument format was created as an &#8216;open-source&#8217; format with the purpose of unifying all of the different document types into one public standard. Remember how annoying it was not being able to open Office 2000 documents with Office 97? OpenOffice can open both of these formats, and many more, however you are encouraged to save documents in the OpenDocument format. So it would seem logical that Microsoft&#8217;s new Office would embrace this new &#8216;universal&#8217; format to eliminate all of the compatibility problems. Instead, in the Microsoft tradition, the company has opted to create yet another proprietary format, the Office 2007 format. By default, files saved in Microsoft Office 2007 cannot be opened in Office 2003. So Microsoft released a patch. Another bandage to fix up another wound.</p>
<p>One more thing to note &#8211; Microsoft&#8217;s offer is only available to Australian university students, and expires 28 May 2007. OpenOffice is free for anyone, for any use, forever.</p>
<p><a href="http://www.itsnotcheating.com.au/" target="_blank">Office 2007</a> (Australia University Students only)<br />
<a href="http://why.openoffice.org/why_great.html" target="_blank">OpenOffice</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2007/03/openoffice-its-not-cheating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Version your Essays &#8211; Part I</title>
		<link>http://blog.jordan-west.com/2007/03/version-your-essays-part-i/</link>
		<comments>http://blog.jordan-west.com/2007/03/version-your-essays-part-i/#comments</comments>
		<pubDate>Tue, 06 Mar 2007 14:16:00 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[essay]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[study]]></category>

		<guid isPermaLink="false">http://jordwest.wordpress.com/2007/03/07/version-your-essays-part-i/</guid>
		<description><![CDATA[Subversion is almost a necessity for many programmers. However it is rarely thought of as a tool for &#8220;versioning&#8221; essays, study, letters, documents etc.
What is Subversion?
Subversion (or SVN) was designed to be a successor of CVS, another &#8220;version control&#8221; system. Basically what they do is keep track of every version of a file in a [...]]]></description>
			<content:encoded><![CDATA[<p>Subversion is almost a necessity for many programmers. However it is rarely thought of as a tool for &#8220;versioning&#8221; essays, study, letters, documents etc.</p>
<p><strong>What is Subversion?</strong></p>
<p>Subversion (or SVN) was designed to be a successor of CVS, another &#8220;version control&#8221; system. Basically what they do is keep track of every version of a file in a folder you specify. So for example when writing a program, you may try adding a new feature only to find that it screws up big-time, and you want to go back to an old working version. Subversion allows you to do this. However it can also be a very useful tool for general document work. For example, if you are using Microsoft Word, you can pick two different &#8220;revisions&#8221; (or versions) of your document and compare the changes in them.</p>
<p><strong>Why use Subversion?</strong></p>
<ol>
<li><a href="http://blog.jordan-west.com/wp-content/uploads/2007/03/logmessages.png" title="Subversion Revision Log"><img src="http://jordwest.files.wordpress.com/2007/03/logmessages.thumbnail.png" alt="Subversion Revision Log" align="left" /></a><em>Keeping backups</em><br />
You don&#8217;t have to worry about hundreds of old backup files lying around. Subversion keeps track of the date at which each file was versioned. You can also place notes on each revision. When you have finished working on the documents, you simply &#8220;Commit&#8221; the files to Subversion, which creates a new revision. You can then revert back to any revision at any time. You can also compare changes between two or more revisions.</li>
<li><em>Synchronising files<br />
</em>You might have a bunch of documents on a USB stick which you would also like to have on your PC at home. This way you can edit the files when your USB stick isn&#8217;t plugged in. Subversion can keep track of what has changed, and commit only the changes made to the database. Subversion was designed with collaborative work in mind.</li>
</ol>
<p>Check back for Part II &#8211; How to use Subversion</p>
<p>Meanwhile, check out <a href="http://dotnet.org.za/trumpi/archive/2006/12/13/Subversion-on-a-stick.aspx">Subversion on a stick</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2007/03/version-your-essays-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Top 10 of Free Software</title>
		<link>http://blog.jordan-west.com/2006/11/my-top-10-of-free-software/</link>
		<comments>http://blog.jordan-west.com/2006/11/my-top-10-of-free-software/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 06:46:32 +0000</pubDate>
		<dc:creator>jordwest</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mindmap]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://jordwest.wordpress.com/2006/11/24/my-top-10-of-free-software/</guid>
		<description><![CDATA[Following is a list of free (open source or freeware) software which I use regularly, more often in fact than commercial software. You may have already come across many of these applications before. If not &#8211; you may discover something useful.
1. Graphics &#8211; Blender
Windows, Linux, Mac
Blender is 3D modelling software. It was previously a commercial [...]]]></description>
			<content:encoded><![CDATA[<p>Following is a list of free (open source or freeware) software which I use regularly, more often in fact than commercial software. You may have already come across many of these applications before. If not &#8211; you may discover something useful.</p>
<p><span id="more-15"></span>1. <span style="font-weight:bold;">Graphics</span> &#8211; <a href="http://www.blender3d.org/" title="Blender 3D" target="_blank">Blender</a><br />
<em>Windows, Linux, Mac</em><br />
Blender is 3D modelling software. It was previously a commercial application, however the company went out of business and sold the code to the open source community. Yet the application in its current state is much more powerful than the original commercial product. Some argue that it even rivals 3D Studio Max in some of its features. The main turn-off for Blender is the user interface, which at first appears very confusing. After following a few tutorials, you will find that the interface is actually very efficient.</p>
<p>2. <span style="font-weight:bold;">Editor </span>- <a href="http://notepad-plus.sourceforge.net/" title="Notepad++" target="_blank">Notepad++<br />
</a><em>Windows</em><a href="http://notepad-plus.sourceforge.net/" title="Notepad++" target="_blank"><br />
</a>Notepad++ is an excellent Notepad replacement. I currently use it for all of my PHP and Python development, as it can be customised to function almost like an IDE. It starts up very fast, and features syntax highlighting, code completion, text zoom, folding, macros, and many other features that you may expect from an IDE. <a href="http://notepad-plus.sourceforge.net/" title="Notepad++" target="_blank"><br />
</a></p>
<p>3. <span style="font-weight:bold;">Productivity </span>- <a href="http://www.autohotkey.com/" title="AutoHotKey" target="_blank">AutoHotKey</a><br />
<em>Windows</em><br />
AutoHotKey is an essential tool to speed up any type of computer based work. Create hotkeys that do just about anything, and automate almost any task in Windows. There are plenty of existing scripts if you don&#8217;t have any programming experience (although the scripting language is very easy to learn), including global hotkeys for iTunes, code completion in any application, window detection, and even <a href="http://jordwest.wordpress.com/2006/09/10/search-prank/" title="Search Prank">pranks</a>.</p>
<p>4. <span style="font-weight:bold;">Planning </span>- <a href="http://freemind.sourceforge.net/" target="_blank" title="Freemind">Freemind</a><br />
<em>Windows, Linux, Mac</em><br />
Freemind is a mindmapping tool which is excellent for mapping out ideas, plans, todo listsc, essays &#8211; virtually anything. I have also found it to be a great tool for <a href="http://jordwest.wordpress.com/2006/09/12/mind-and-subject-mapping-with-freemind/" title="Mind and Subject Mapping with Freemind">study</a>. Freemind can export to many formats including HTML and png.</p>
<p>5. <span style="font-weight:bold;">Media </span>- <a href="http://www.videolan.org/vlc/" title="VLC Media Player">VLC</a><br />
<em>Windows, Linux, Mac<br />
</em>The ultimate media player that plays almost any format of audio and video (except RealMedia). Fast, simple and efficient, VLC is an excellent media player. There is no media library feature, however it does have a playlist function and works well as a &#8216;drag-and-drop&#8217; media player.</p>
<p>6. <span style="font-weight:bold;">Programming </span>- <a href="http://www.icsharpcode.net/OpenSource/SD/" title="SharpDevelop IDE" target="_blank">SharpDevelop</a><br />
<em>Windows<br />
</em>SharpDevelop is designed to be a replacement IDE for Microsoft Visual Studio. SharpDevelop 2 is built for the .NET 2 framework, and allows you to write applications with C#, Visual Basic .NET, and Boo.NET. Most of the features of Visual Studio 2005 can be found in SharpDevelop.<em><br />
</em></p>
<p>7. <span style="font-weight:bold;">Music </span>- <a href="http://www.winamp.com/" title="Winamp" target="_blank">Winamp</a><br />
<em>Windows<br />
</em>Most of you have probably already made up your mind on Winamp. It is a music and video player with library, podcast client, iTunes replacement &#8211; all pretty standard features. I use it only because it supports all the common music formats (m4a, wma, mp3 etc).</p>
<p>8. <span style="font-weight:bold;">Photos </span>- <a href="http://picasa.google.com/" title="Picasa" target="_blank">Picasa</a><br />
<em>Windows, Linux (sort of)<br />
</em>Picasa is another child of Google, which means it follows the &#8217;search and sort&#8217; mantra. It is excellent for organising your photo library &#8211; you can tag images, add captions, and it also features many one-click functions such as screensaver, collage, email, slideshow, timeline, and colour adjustments. It even includes an I&#8217;m Feeling Lucky button which attempts to adjust brightness/contrast and colour balance automatically.</p>
<p>9. <span style="font-weight:bold;">Game </span>- <a href="http://www.queasygames.com/gate88/" title="Gate 88" target="_blank">Gate 88</a><br />
<em>Windows, Linux</em><br />
Gate 88 is a great game, although it takes a bit of time to learn. The graphics are very simplistic; the objects are composed of basic vector graphics, but this actually gives some interesting effects. Probably the most unique thing about this game is that it plays as both an RTS (Real Time Strategy) and a space shooter. You fly a ship around, but can also build and research. Internet and LAN play can be great fun however as with many freeware games, it can get tired quickly.</p>
<p>10. <span style="font-weight:bold;">Internet </span>- Firefox<br />
I&#8217;m sure anyone who comes across this knows about Firefox. If you haven&#8217;t yet tried Firefox, <a href="http://www.mozilla.com/en-US/firefox/" title="Get Mozilla Firefox">make the switch</a>.</p>
<p>Hopefully you have found something useful in here &#8211; if you have any additions feel free to post a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jordan-west.com/2006/11/my-top-10-of-free-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
