<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.10" -->
<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/"
	>

<channel>
	<title>Alde's Stuff</title>
	<link>http://www.alde.com</link>
	<description>Being True to Yourself is the MOST important thing.</description>
	<pubDate>Tue, 02 Sep 2008 22:45:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.10</generator>
	<language>en</language>
			<item>
		<title>Hacking the SMC EZStream Internet Streaming Radio</title>
		<link>http://www.alde.com/2008/09/02/hacking-smc-ezshare/</link>
		<comments>http://www.alde.com/2008/09/02/hacking-smc-ezshare/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 22:45:26 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Games &amp; Gear</category>

		<guid isPermaLink="false">http://www.alde.com/2008/09/02/hacking-smc-ezshare/</guid>
		<description><![CDATA[A sales droid that managed the account at a past company gave my friends and I the EZStream media player as kinds of &#8220;spiffs&#8221; for doing business with them.  Not that it did provide them any extra business, and the device was the 802.11b version, not the G.
So I finally have a use for [...]]]></description>
			<content:encoded><![CDATA[<p>A sales droid that managed the account at a past company gave my friends and I the <a href="http://www.smc.com/index.cfm?event=viewCategory&#038;localeCode=EN_USA&#038;cid=11">EZStream media player</a> as kinds of &#8220;spiffs&#8221; for doing business with them.  Not that it did provide them any extra business, and the device was the 802.11b version, not the G.</p>
<p>So I finally have a use for the device; my wife likes to listen to country music to go to sleep to, yet the #1 radio format nation-wide has no stations in the New York City area.  Hey, I&#8217;ll use the EZStream.</p>
<p>I hook it up to my clock radio with MP3 input (<a href="http://www.amazon.com/gp/redirect.html%3FASIN=B000CCDAXA%26tag=aldsstu-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B000CCDAXA%253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">The Timex T307S</a>) and power it up.  After setting it up to use my DSL wireless with WEP (so old there&#8217;s no WPA-PSK), I try out the internet radio stations&#8230;  There&#8217;s a whole whopping 50 stations.  And the one country station doesn&#8217;t actually work. </p>
<p>I then ponder how to replace this damn thing.  802.11b is bad, 50 stations is worse&#8230;</p>
<p>I could buy a <a href="http://www.amazon.com/gp/redirect.html%3FASIN=B000BI6AH8%26tag=aldsstu-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B000BI6AH8%253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Roku SoundBridge M1000 System</a>, but that&#8217;s 200 bucks&#8230; <br />Or I could get a <a href="http://www.amazon.com/gp/redirect.html%3FASIN=B000BUX3I0%26tag=aldsstu-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B000BUX3I0%253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Silm Devices Squeezebox</a>, but since they sold out to Logitech, their prices are still wack.<br />
<br /> Nope, I&#8217;m going to have to see what I need to do to get this thing to play the stations I want.<br />
<br />The mediaserver software that came with the device has an iRadio tab.  So I put in some stations, turned on the server, however, all the stations get rejected by the device.  It can&#8217;t play any of them.<br />
<br />What to do what to do&#8230;.<br />
So here&#8217;s what I did&#8230;</p>
<p>In the device&#8217;s network config, one can set a &#8220;Proxy&#8221;&#8230; So I set that to my Squid server.  I then went to the Internet Radio config, and had that manually update, and I tcpdump&#8217;d the tcp stream.</p>
<p>The device calls home, to www.radiosmc.com.  The URL has some other information in it, such as your device&#8217;s MAC address, software version, and the hardware version.  So I went to radiosmc&#8230; It seems that for the luxury of programming your own preset stations, you have to pay a monthly fee.  Joy of joys.</p>
<p>However, the file that returns to the device is of such simplicity, the key to it is redirecting the device&#8217;s get to a file of your own.</p>
<p>File Format:</p>
<p>It&#8217;s a simple XML file. There&#8217;s an XML Header:</p>
<blockquote><p>
&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;iso-8859-1&#8243; standalone=&#8221;yes&#8221;?>
</p></blockquote>
<p>Followed by the main container, the station_db:</p>
<blockquote><p>&lt;station_db version=&#8221;2007-01-14T15:03:48Z&#8221; format_version=&#8221;2.0&#8243; station_count=&#8221;48&#8243;></p></blockquote>
<p>The key things here are to always incrememnt the version number (kinda like DNS) and to make sure the station count is correct.<br />
<br />
The next lines pertain to the database info:</p>
<blockquote><p>&lt;database_info><br />
&lt;format_version>2.0&lt;/format_version><br />
&lt;name>vTuner&lt;/name></p></blockquote>
<p>I&#8217;d keep this all the same.<br />Next is the URL the device goes to update it&#8217;s list:</p>
<blockquote><p>&lt;server_url>http://www.radiosmc.com/setupapp/smc1/asp/rsdb/update.asp&lt;/server_url></p></blockquote>
<p>Eventually you&#8217;ll want to change this so you no longer have to redirect in Squid (covered later).<br />
Then the service level:</p>
<blockquote><p>&lt;service>BASIC&lt;/service>.&lt;/database_info>
</p></blockquote>
<p>I left this the same too.  Don&#8217;t want to hurt it, just change the stations.<br />
<br />
Now we get to the meat of the file, the station list:</p>
<blockquote><p>
&lt;station_list>
</p></blockquote>
<p>
Stations are 6 points of data:<br />

<ol>
<li>The Station ID (Unique Identifier)</li>
<li>Station Name<br /> - What the short name listed in the chooser of the device</li>
<li>Description<br /> - The Long name if you get info on the station (i.e. the Info button on the remote)</li>
<li>Bandwidth of the station (kbps)</li>
<li>URL of the station</li>
<li>Mime_Type of the station</li>
</ol>
<p>So, a standard station looks like this:</p>
<blockquote><p>&lt;station><br />
&lt;id>4392&lt;/id><br />
&lt;station_name>WBHM&lt;/station_name><br />
&lt;description>classical music streaming to the Internet from Birmingham, Alabama with a touch of NPR here and there.&lt;/description><br />
&lt;bw>56&lt;/bw><br />
&lt;url>http://www.wbhm.org:8000/live&lt;/url><br />
&lt;mime_type>m3u&lt;/mime_type><br />
&lt;/station>
</p></blockquote>
<p>
So repeat this until you have the number of stations you want (Make sure to put the right number up in the station_db tag).  When you&#8217;re done with stations, you close out the station_list tag and open a directory list tag:<br />
</p>
<blockquote><p>&lt;/station_list><br />
&lt;directory_list>
</p></blockquote>
<p>
The Directory list is very important; it is how the stations are organized in the player. The format is based upon directories.  For example, the first line:</p>
<blockquote><p>&lt;dir name=&#8221;Internet Radio&#8221; subdir_count=&#8221;3&#8243; station_count=&#8221;0&#8243; >
</p></blockquote>
<p>states that the name to display is &#8220;Internet Radio&#8221;, that there are 3 Subdirectories under this directory, and that there are 0 stations under this directory.  The next tag is a &#8220;Genres&#8221; subdirectory, and under that is &#8220;Adult Contemporary&#8221;&#8230; Under that is &#8220;All stations&#8221;, of which there are two AC stations:</p>
<blockquote><p>
&lt;dir name=&#8221;Genres&#8221; subdir_count=&#8221;28&#8243; station_count=&#8221;0&#8243; ><br />
&lt;dir name=&#8221;Adult Contemporary&#8221; subdir_count=&#8221;3&#8243; station_count=&#8221;0&#8243; ><br />
&lt;dir name=&#8221;All Stations&#8221; subdir_count=&#8221;0&#8243; station_count=&#8221;2&#8243; ><br />
&lt;station>8512&lt;/station><br />
&lt;station>12049&lt;/station><br />
&lt;/dir>
</p></blockquote>
<p>Use the station tag to link back to the unique id in the ID tag for the station, and then close the directory.</p>
<p>The most annoying thing was the Country part, so with my file I just left all that out.  Who cares if you&#8217;re listening to an AC station from Canada or Germany?<br />
<br />
When you&#8217;re done with all your directories close the directory list, and the station db, and you&#8217;re done:</p>
<blockquote><p>&lt;/dir><br />
&lt;/dir><br />
&lt;/dir><br />
&lt;/directory_list><br />
&lt;/station_db>
</p></blockquote>
<p>So, now you&#8217;ve got your xml file, how to get the device to fetch it?  Its your friendly neighborhood Squid proxy to the rescue!</p>
<p>Squid (<a href="http://www.squid-cache.org/">http://www.squid-cache.org/</a>) has a nice feature called URL Redirection:</p>
<blockquote><p>#  TAG: redirect_program<br />
#       Specify the location of the executable for the URL redirector.<br />
#       Since they can perform almost any function there isn&#8217;t one included.<br />
#       See the <a href="http://wiki.squid-cache.org/SquidFaq/SquidRedirectors">FAQ (section 15) </a>for information on how to write one.<br />
#       By default, a redirector is not used.<br />
#<br />
#Default:<br />
# none
</p></blockquote>
<p>In your squid.conf file, you can use a simple program to redirect all URLs.  What I did here was add a line of code to the conf:</p>
<blockquote><p>#  TAG: redirect_program<br />
#       Specify the location of the executable for the URL redirector.<br />
#       Since they can perform almost any function there isn&#8217;t one included.<br />
#       See the FAQ (section 15) for information on how to write one.<br />
#       By default, a redirector is not used.<br />
#<br />
#Default:<br />
# none<br />
redirect_program /usr/lib/squid/redir.pl
</p></blockquote>
<p>and then created a simple perl script to redirect the URL to my xml file:<br />
</p>
<h4>redir.pl</h4>
<blockquote><p>#!/usr/bin/perl<br />
$|=1;<br />
while (<>) {<br />
    s@http://www.radiosmc.com/.*@http://example.com/mystations.xml@;<br />
    print;<br />
}
</p></blockquote>
<p>Reload the config, and manually update the Internet Radio list, and boom, I&#8217;ve got all the stations you want.<br />
Now, is this stealing?  Well, ethically I look at it this way:  I was given a device that had I bought it, would have been like buying an FM radio, but one without a tuner.  Then I had to pay someone to program my preset buttons. <br />SMC does not provide any content; it&#8217;s not like XM or Sirius.  They are not providing the network connection, they are not providing the Audio content, nor are they paying the streamers for that content.  I&#8217;m sure there&#8217;s some sort of monetary exchange between staiton and RadioSMC, but I&#8217;m not sure in what direction.  The device retails for about $110, and the service they sell on top of that is a $30 one time fee.  Why not charge $140 for the device and allow the enhanced service for free?  Poor customer service></p>
<p>My Stationlist can be found at <a href="http://www.alde.com/mystations.xml">http://www.alde.com/mystations.xml</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/09/02/hacking-smc-ezshare/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Uselessness of &#8220;The Network&#8221;</title>
		<link>http://www.alde.com/2008/08/28/the-uselessness-of-the-network/</link>
		<comments>http://www.alde.com/2008/08/28/the-uselessness-of-the-network/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 17:23:37 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Internet</category>

		<guid isPermaLink="false">http://www.alde.com/2008/08/28/the-uselessness-of-the-network/</guid>
		<description><![CDATA[After spending 20 minutes trying to wade through the compartmentalized and siloed nature that is Verizon billing, I eventually talked to a Mr. Mukerjee (guessing he was in Mumbai) to dispute the erroneous charges on my bill.  Then I talked to a Mrs Smith (the indignant agent would not give me her first name) [...]]]></description>
			<content:encoded><![CDATA[<p>After spending 20 minutes trying to wade through the compartmentalized and siloed nature that is Verizon billing, I eventually talked to a Mr. Mukerjee (guessing he was in Mumbai) to dispute the erroneous charges on my bill.  Then I talked to a Mrs Smith (the indignant agent would not give me her first name) to ensure that my account was canceled.  This was on the 18th of August.  Now I get the following voicemail in my inbox:</p>
<p>&#8220;This is Verizon with an urgent message regarding a letter that was sent to you recently and the potential interruption of internet access on your account. Think for your internet access can be as easy as using your charge card. Verizon offers convenient self-serve payment options including the ability to pay your bill using the recurring charge card payment method. To take advantage of this payment options, visit us on the web at www.verizon.net/myaccount or call us online 1-877-432-9409. If payment is not received. Your verizon online service maybe suspended and any outstanding debt will be referred for collection. Verizon thanks you for your prompt attention. Goodbye.&#8221;</p>
<p>So, I&#8217;m wondering why an automated call would come to me on the 27th of August, days after I canceled my account and was told my Mr Mukerjee that my account balance was $0.</p>
<p>I call that number; it&#8217;s a payment service, that charges you, get this, a $3.50 convenience fee.  Whose convenience?  I why do I need to pay to save you the time and processing of a check?  For a bill I&#8217;ve been told I owe nothing.  See, the email that Verizon Sent to me:</p>
<blockquote><p>
Thank you for allowing us to serve as your Internet service provider. We received your cancellation order effective 2008-08-20 00:00:00.0. We&#8217;re sorry to see you go and hope you reconsider. If you change your mind and would like to re-start your Verizon High Speed Internet service, simply call 1-800-567-6789.<br />
&#8230;<br />
Sincerely,</p>
<p>Verizon Online<br />
Customer Care Team
</p></blockquote>
<p>Then I call into Verizon&#8217;s Payment Information and Payment arrangements line: 800-281-8584.  Since I had a dry loop DSL, this completely FLUMMOXES their Voice Actuated IVR system, so much so I eventually just get an &#8220;Ok&#8221; from it, and a transfer&#8230;. To Residential Voice Line collections.  Hey! Collections department&#8230; No, Lisa doesn&#8217;t want to talk to me, so she transfers me over to DSL collections&#8230; Where Monica Miller tells me, oh, Dry Loop DSL is another department&#8230; To which I get a &#8220;Please enter your 10 digit account number&#8230;&#8221;  um, my account number is 13 numbers.  I try the first 10, no go.  I enter the last 10, no go.  Eventually I get the &#8220;We can&#8217;t help you, please call again.&#8221;</p>
<p>So much for having the Network by your side.</p>
<p>Verizon, your customer service is horrible.  I&#8217;d dare say it&#8217;s more horrible than my company&#8217;s, and JD Power doesn&#8217;t like us at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/08/28/the-uselessness-of-the-network/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why I love the retention department.</title>
		<link>http://www.alde.com/2008/08/12/why-i-love-the-retention-department/</link>
		<comments>http://www.alde.com/2008/08/12/why-i-love-the-retention-department/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 00:24:50 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Uncategorized</category>

		<guid isPermaLink="false">http://www.alde.com/2008/08/12/why-i-love-the-retention-department/</guid>
		<description><![CDATA[So, I work for a large company with a rather big call center, including off-shore partners, as honestly, people won&#8217;t pay the money to get 100% on-shore support, especially for the idiots we are able to hire at the exhorbanent prices due to our location.
Last month, after being told by a technician dispatched to my [...]]]></description>
			<content:encoded><![CDATA[<p>So, I work for a large company with a rather big call center, including off-shore partners, as honestly, people won&#8217;t pay the money to get 100% on-shore support, especially for the idiots we are able to hire at the exhorbanent prices due to our location.</p>
<p>Last month, after being told by a technician dispatched to my house that I was lucky my DSL modem got sync as how far I was from the Central Office, and that most likely it was a wet pair, i.e. every time it rains it gets wet and causes the modem to lose sync.</p>
<p>Bundled that with Verizon billing me $5 more a month ($40 a month) for 1.5meg DSL, and my contract being up, I was ditching Verizon for a cable modem.  I hate the cable companies, but at least for my $43, I&#8217;d get more than 1.5megs.  </p>
<p>So, on the 14th of July, I cancelled my account with Verizon.  Told the retention agent, no, I&#8217;m not interested in a free month, I am no longer need DSL.  I might come back when you have FIOS, but you suck, I&#8217;m firing you.</p>
<p>I was told by the retention agent that my account was canceled, and my account would be updated and I&#8217;d get a pro-rated charge for the 7 days of the month I still had service. </p>
<p>&#8216;lo and behold, when my August bill showed up, I got the free month and my account was not cancelled.  Hooray call center agent!  </p>
<p>Now that I work with 1000+ call center agents, with another 300-500 off-shored agents, I know excatly what the agent did, and why.</p>
<p>See, call center agent is a suck ass job.  First line tech support sucks so bad as a job, every company (basically) off-shores this part.  Why?  No one will work for that wage and deal with the idiots that call in.  So, at my work, tier 2 tech, advanced tech support, some sales, and retention are all housed in the US.</p>
<p>So, the retention agent job sucks as well.  At least with the other tech support jobs, you get a satisfaction in troubleshooting a problem and generally delighting the customer.  However, for these jobs, you need some computer saavyness, and the ability to troubleshoot advanced issues dealing with problems you will not have a script for.  </p>
<p>The retention agent job sucks in that every person you talk to is on the phone to fire you as a company.  It&#8217;s almost as bad as cold-call sales.  So to get people into the job, they provide probably the highest per-hour wage (other than the advanced/tier3 tech support jobs), with a bonus based upon your &#8220;save&#8221; rate, or the rate at which you are able to convince customers to not cancel their service.</p>
<p>So, the unscrupulous agent (i.e. the agent that for the most part will not have a job soon) to boost their numbers, will tell the customer that they&#8217;re cancelled, but &#8220;save&#8221; them in the system, so it&#8217;s put off onto another agent next month.  The &#8220;Retention Shuffle&#8221;.</p>
<p>I had once thought Verizon to be a company of impecable technical support and service, I realize that they are just like every crappy company out there and therefore, I no longer put them in that class of &#8220;enlightened&#8221; customer service companies.  </p>
<p>Sorry for you, Verizon.  You&#8217;ve been fired, even if you&#8217;ve tried a corrupt way to keep my account, I&#8217;m going to get the (unfortunate) pleasure of firing you again&#8230;After 47 minutes on hold, to talk to an agent who may (or may not) cancel my account&#8230; Again.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/08/12/why-i-love-the-retention-department/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Who&#8217;s Like Us?</title>
		<link>http://www.alde.com/2008/06/24/whos-like-us/</link>
		<comments>http://www.alde.com/2008/06/24/whos-like-us/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 03:54:16 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Games &amp; Gear</category>

		<guid isPermaLink="false">http://www.alde.com/2008/06/24/whos-like-us/</guid>
		<description><![CDATA[

Want some Rye? &#8216;Course you do.
 

]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.alde.com/boos.jpg"><br />
<br />
<a href="http://www.alde.com/rye.wav">Want some Rye? &#8216;Course you do.</a></p>
<p><embed id="VideoPlayback" style="width:400px;height:326px" allowFullScreen="true" src="http://video.google.com/googleplayer.swf?docid=3151389080190044882&#038;hl=en&#038;fs=true" type="application/x-shockwave-flash"> </embed>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/06/24/whos-like-us/feed/</wfw:commentRss>
<enclosure url='http://www.alde.com/rye.wav' length='345632' type='audio/x-wav'/>
		</item>
		<item>
		<title>Electronics Kits Links</title>
		<link>http://www.alde.com/2008/06/20/electronics-kits-links/</link>
		<comments>http://www.alde.com/2008/06/20/electronics-kits-links/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 17:58:06 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Gear</category>

		<guid isPermaLink="false">http://www.alde.com/2008/06/20/electronics-kits-links/</guid>
		<description><![CDATA[From a Slashdot article + comments, some sites for Electronics kits / Electronics Learning.
Heathkit

Nerdkits
Electronics Kits
Getting Started in Electronics
RadioShack Electronics Learning Lab
Adafruit Industries
MakerShed Kits
Camera Triggers
Velleman
]]></description>
			<content:encoded><![CDATA[<p>From a <a href="http://entertainment.slashdot.org/article.pl?sid=08/06/20/1327207&#038;from=rss">Slashdot</a> article + comments, some sites for Electronics kits / Electronics Learning.</p>
<p><a href="http://www.heathkit.com/">Heathkit</a><br />
<br />
<a href="http://www.nerdkits.com/projects/">Nerdkits</a><br />
<a href="http://www.electronickits.com/">Electronics Kits</a><br />
<a href="http://www.amazon.com/gp/redirect.html%3FASIN=0945053282%26tag=aldsstu-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/Getting-Started-Electronics-Forrest-Mims/dp/0945053282%253FSubscriptionId=09GE3K6JDGSKCKXKEJG2" title="View product details at Amazon"><img src="http://ecx.images-amazon.com/images/I/51YV8CF90YL._SL75_.jpg" alt="Getting Started in Electronics" />Getting Started in Electronics</a><br />
<a href="http://www.radioshack.com/product/index.jsp?productId=2102913&#038;cp=">RadioShack Electronics Learning Lab</a><br />
<a href="http://www.adafruit.com/">Adafruit Industries</a><br />
<a href="http://www.makershed.com/SearchResults.asp?Cat=20">MakerShed Kits</a><br />
<a href="http://www.hiviz.com/tools/triggers/triggers2.htm">Camera Triggers</a><br />
<a href="http://www.vellemanusa.com/us/enu/product/list/?id=523008">Velleman</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/06/20/electronics-kits-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Awww Yea&#8230; Tony Jaa&#8217;s Back</title>
		<link>http://www.alde.com/2008/06/16/awww-yea-tony-jaas-back/</link>
		<comments>http://www.alde.com/2008/06/16/awww-yea-tony-jaas-back/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 00:57:40 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Cinema</category>

		<guid isPermaLink="false">http://www.alde.com/2008/06/16/awww-yea-tony-jaas-back/</guid>
		<description><![CDATA[From the folks at Twitch, they get the envious exclusive first look at the english subbed trailer and sales reel for Ong Bak 2.  I don&#8217;t want to compare him to Jackie Chan, because martial arts wise, he&#8217;s hands down better than Jackie, but his versatility (at least in the trailer) is like the [...]]]></description>
			<content:encoded><![CDATA[<p>From the folks at <a href="http://twitchfilm.net/site/view/tony-jaa-brings-the-pain-weve-got-the-ong-bak-2-promo-reel/">Twitch</a>, they get the envious exclusive first look at the english subbed trailer and sales reel for Ong Bak 2.  I don&#8217;t want to compare him to Jackie Chan, because martial arts wise, he&#8217;s hands down better than Jackie, but his versatility (at least in the trailer) is like the Three Dragons rolled into one.</p>
<p><embed src="http://services.brightcove.com/services/viewer/federated_f8/1214128517" bgcolor="#FFFFFF" flashVars="videoId=1612727519&#038;playerId=1214128517&#038;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&#038;servicesURL=http://services.brightcove.com/services&#038;cdnURL=http://admin.brightcove.com&#038;domain=embed&#038;autoStart=false&#038;" base="http://admin.brightcove.com" name="flashObj" width="510" height="550" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/06/16/awww-yea-tony-jaas-back/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wanchai Ferry Kungpao Chicken</title>
		<link>http://www.alde.com/2008/01/10/wanchai-ferry-kungpao-chicken/</link>
		<comments>http://www.alde.com/2008/01/10/wanchai-ferry-kungpao-chicken/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 03:36:48 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Food and Wine</category>

		<guid isPermaLink="false">http://www.alde.com/2008/01/10/wanchai-ferry-kungpao-chicken/</guid>
		<description><![CDATA[So, my friends know that one of my idiosynchrosies is to use the words &#8220;Kungpao Chicken&#8221; as a blanket answer for lots of questions.  I even have a server named Kungpao (my servers are named after asian foods).  My wife says that I say &#8220;Kungpao Chicken Optional Pancake&#8221; even though I should be [...]]]></description>
			<content:encoded><![CDATA[<p>So, my friends know that one of my idiosynchrosies is to use the words &#8220;Kungpao Chicken&#8221; as a blanket answer for lots of questions.  I even have a server named Kungpao (my servers are named after asian foods).  My wife says that I say &#8220;Kungpao Chicken Optional Pancake&#8221; even though I should be be saying &#8220;Mushu Pork Optional Pancake&#8221;.</p>
<p>Back in my freshman year of college, my friend Jason Engh was taking a karate class, and my friends Rich and Joel came up with this idea that Jason should use chinese foods instead of the typical &#8220;Hi-Ya&#8221;.</p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=B000UVN1A0%26tag=aldsstu-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B000UVN1A0%253FSubscriptionId=09GE3K6JDGSKCKXKEJG2" title="View product details at Amazon"><img src="http://ecx.images-amazon.com/images/I/11b%2BlodzEaL.jpg" alt="Wanchai Ferry Kung Pao Chicken, 12.8-Ounce Box (Pack of 6)" /></a>I found the <a href="http://www.amazon.com/gp/redirect.html%3FASIN=B000UVN1A0%26tag=aldsstu-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/B000UVN1A0%253FSubscriptionId=09GE3K6JDGSKCKXKEJG2" title="View product details at Amazon">Wanchai Ferry Kung Pao Chicken</a> pre-made kit at the super food town while shopping for groceries.  On an impulse, because I have very little impulse control with asian foods, I picked it up to make for dinner one night. </p>
<p>It comes with rice, kungpao sauce, peanuts and peppers, all you add is a teaspoon of vegetable oil (for coating the wok/pan) and a pound of chicken. </p>
<p>Making it was fairly easy, especially for someone like me who sucks at cooking.  Put the rice and water into a pan, boil it, simmer for 15 minutes, then let it sit.  The chicken was easy, but I messed up one thing; this stuff was <strong>FREAKING SPICY</strong>.</p>
<p>The package comes with 5 dried peppers. at least 3 of which opened up and dumped all their seeds into the mix.  I haven&#8217;t had kungpao this spicy since my friend Chris Takasawa&#8217;s roommate cooked Kungpao and pork dumplings one night.</p>
<p>Note to self: next time, empty all but one of the peppers of their seeds before placing them in to cook with the chicken.</p>
<p>It was very good, even with the spice, you just need to give it a little time to allow the final product to reduce and thicken a little otherwise you end up with a thin brown sauce that doesn&#8217;t really stick to the chicken.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/01/10/wanchai-ferry-kungpao-chicken/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Another Movie that Must Be Seen</title>
		<link>http://www.alde.com/2008/01/07/another-movie-that-must-be-seen/</link>
		<comments>http://www.alde.com/2008/01/07/another-movie-that-must-be-seen/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 05:25:40 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Uncategorized</category>

		<guid isPermaLink="false">http://www.alde.com/2008/01/07/another-movie-that-must-be-seen/</guid>
		<description><![CDATA[This one&#8217;s directed by the same man who directed Ong-Bak.
The Move&#8217;s called Chocolate.  Girls kick ass&#8230;
(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

]]></description>
			<content:encoded><![CDATA[<p>This one&#8217;s directed by the same man who directed Ong-Bak.</p>
<p>The Move&#8217;s called Chocolate.  Girls kick ass&#8230;</p>
<p><object type="application/x-shockwave-flash" data="http://www.alde.com/wp-content/plugins/pb-embedflash/mediaplayer.swf?file=http://www.alde.com/chocolate.flv&amp;autostart=false" width="400" height="350" class="embedflash"><param name="movie" value="http://www.alde.com/wp-content/plugins/pb-embedflash/mediaplayer.swf?file=http://www.alde.com/chocolate.flv&amp;autostart=false" /><small>(Either JavaScript is not active or you are using an old version of Adobe Flash Player. <a href="http://www.adobe.com/de/">Please install the newest Flash Player</a>.)</small></object>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/01/07/another-movie-that-must-be-seen/feed/</wfw:commentRss>
<enclosure url='http://www.alde.com/chocolate.flv' length='12892768' type='video/x-flv'/>
		</item>
		<item>
		<title>Must See This Movie</title>
		<link>http://www.alde.com/2008/01/06/must-see-this-movie/</link>
		<comments>http://www.alde.com/2008/01/06/must-see-this-movie/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 20:39:44 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Japan</category>

		<guid isPermaLink="false">http://www.alde.com/2008/01/06/must-see-this-movie/</guid>
		<description><![CDATA[(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)
Trailer says it&#8217;s &#8220;The Machine Girl&#8220;.

]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.alde.com/wp-content/plugins/pb-embedflash/mediaplayer.swf?file=http://www.alde.com/2920733_300.flv&amp;autostart=false" width="400" height="350" class="embedflash"><param name="movie" value="http://www.alde.com/wp-content/plugins/pb-embedflash/mediaplayer.swf?file=http://www.alde.com/2920733_300.flv&amp;autostart=false" /><small>(Either JavaScript is not active or you are using an old version of Adobe Flash Player. <a href="http://www.adobe.com/de/">Please install the newest Flash Player</a>.)</small></object></p>
<p>Trailer says it&#8217;s &#8220;<a href="http://www.imdb.com/title/tt1050160/">The Machine Girl</a>&#8220;.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/01/06/must-see-this-movie/feed/</wfw:commentRss>
<enclosure url='http://www.alde.com/2920733_300.flv' length='6510117' type='video/x-flv'/>
		</item>
		<item>
		<title>Smurf Glasses</title>
		<link>http://www.alde.com/2008/01/03/smurf-glasses/</link>
		<comments>http://www.alde.com/2008/01/03/smurf-glasses/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 02:29:33 +0000</pubDate>
		<dc:creator>Alde</dc:creator>
		
		<category>Gear</category>

		<guid isPermaLink="false">http://www.alde.com/2008/01/03/smurf-glasses/</guid>
		<description><![CDATA[Beekers writes about her Smurf Glasses.  Seeing as she wanted Smurf Gummi&#8217;s for Christmas, I know she&#8217;ll want the full set still.

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.beekerswords.com">Beekers</a> writes about her <a href="http://www.beekerswords.com/smurf-glasses/trackback">Smurf Glasses.</a>  Seeing as she wanted Smurf Gummi&#8217;s for Christmas, I know she&#8217;ll want the full set still.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alde.com/2008/01/03/smurf-glasses/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
