<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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>/dev/null</title>
	<link>http://blog.alien109.com</link>
	<description>Design, Development and Random Goodness</description>
	<pubDate>Wed, 02 Jan 2008 21:56:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Automated webcam capture/image downloader</title>
		<link>http://blog.alien109.com/2008/01/02/automated-image-downloader/</link>
		<comments>http://blog.alien109.com/2008/01/02/automated-image-downloader/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 21:38:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Random Junk]]></category>

		<category><![CDATA[Entertainment]]></category>

		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2008/01/02/automated-image-downloader/</guid>
		<description><![CDATA[The other day I was checking out a webcam at a local ski resort, and wanted to see what an entire day&#8217;s worth of shots looked like played in a movie. I&#8217;m sure there are apps out there that do this sort of thing, and might even be an easier way of doing this. Regardless, [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I was checking out a webcam at a local ski resort, and wanted to see what an entire day&#8217;s worth of shots looked like played in a movie. I&#8217;m sure there are apps out there that do this sort of thing, and might even be an easier way of doing this. Regardless, I decided to have a play.</p>
<p>Below is a simple VB Script file (sorry windowless folks) that will download and save an image to your hard drive. It will save the images in the same directory the script is running.</p>
<pre class="code" style="height:300px;">
Dim imageURL
imageURL = "http://www.mtbachelor.com/@@/cams/wvskycam.jpg"
Function SaveBinaryData(FileName, ByteArray)
	Const adTypeBinary = 1
	Const adSaveCreateOverWrite = 2
	Dim BinaryStream
	Set BinaryStream = CreateObject("ADODB.Stream")
	BinaryStream.Type = adTypeBinary
	BinaryStream.Open
	BinaryStream.Write ByteArray
	BinaryStream.SaveToFile FileName, adSaveCreateOverWrite
End Function
Function BinaryGetURL(URL)
	Dim Http
	Set Http = CreateObject("WinHttp.WinHttpRequest.5.1")
	Http.Open "GET", URL, False
	Http.Send
	BinaryGetURL = Http.ResponseBody
End Function
Function doSave()
	Dim image, fName, p_month, p_day, p_hour, p_minute, p_second
	image = BinaryGetURL(imageURL)
	p_month = padZero(Month(Now))
	p_day = padZero(Day(Now))
	p_hour = padZero(Hour(Now))
	p_minute = padZero(Minute(Now))
	p_second = padZero(Second(Now))
	fName = p_month &#038; "_" &#038; p_day &#038; "_" &#038; Year(Now) &#038; "-" &#038; p_hour &#038; "_" &#038; p_minute &#038; "_" &#038; p_second &#038; ".jpg"
	SaveBinaryData fName,image
End Function
Function padZero(val)
	If(Len(val) < 2) Then
		val = "0" &#038; val
	End If
	padZero = val
End Function
doSave()
</pre>
<p>Copy and paste the above script into an empty text file. Go find a webcam you&#8217;d like to capture. When viewing the webcam image, right click and copy the images URL. Change the imageURL variable at the top of the script. Save the script (.vbs extension). Next you&#8217;ll need to set up an automated task to run the script. For help on how to set up tasks, check out <a href="http://support.microsoft.com/kb/308569">this KB article</a>. You&#8217;ll want to schedule it run somewhat frequently, but no more frequent than the webcam updates.</p>
<p>That&#8217;s pretty much all you need to do. If everything goes right, image files should start appearing in the directory that the script is located.</p>
<p>To create a movie from the sequence, you&#8217;ll need to find some software to do that. Out of sheer laziness, I just use QuickTime Pro, but there&#8217;s a bunch of shareware/freeware options available out there.</p>
<p>Have fun&#8230;</p>
<p><object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;feedurl=http%3A%2F%2Falien109%2Eblip%2Etv%2Frss&#038;file=http%3A%2F%2Fblip%2Etv%2Frss%2Fflash%2F580337&#038;showplayerpath=http%3A%2F%2Fblip%2Etv%2Fscripts%2Fflash%2Fshowplayer%2Eswf" width="400" height="255" allowfullscreen="true" id="showplayer">
<param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;feedurl=http%3A%2F%2Falien109%2Eblip%2Etv%2Frss&#038;file=http%3A%2F%2Fblip%2Etv%2Frss%2Fflash%2F580337&#038;showplayerpath=http%3A%2F%2Fblip%2Etv%2Fscripts%2Fflash%2Fshowplayer%2Eswf" />
<param name="quality" value="best" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2008/01/02/automated-image-downloader/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft Surface Parody</title>
		<link>http://blog.alien109.com/2007/09/25/microsoft-surface-parody/</link>
		<comments>http://blog.alien109.com/2007/09/25/microsoft-surface-parody/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 17:18:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advertising]]></category>

		<category><![CDATA[Toys/Devices]]></category>

		<category><![CDATA[Computers]]></category>

		<category><![CDATA[Diversions]]></category>

		<category><![CDATA[Random Junk]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/09/25/microsoft-surface-parody/</guid>
		<description><![CDATA[


One day, your computer will be a big-ass table&#8230;
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/CZrr7AZ9nCY"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/CZrr7AZ9nCY" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<blockquote><p>One day, your computer will be a big-ass table&#8230;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/09/25/microsoft-surface-parody/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The most annoying behavior : Backspace = Back Button</title>
		<link>http://blog.alien109.com/2007/09/25/the-most-annoying-behavior-backspace-back-button/</link>
		<comments>http://blog.alien109.com/2007/09/25/the-most-annoying-behavior-backspace-back-button/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 14:38:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Random Junk]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/09/25/the-most-annoying-behavior-backspace-back-button/</guid>
		<description><![CDATA[This has got to be one of the WORST ever behaviors for a user interface. Who ever thought of this one, should be shot.
There is nothing worse than when you&#8217;re entering data in a form and hit backspace only to have your browser react as if you clicked the back button.
Arghhh.
]]></description>
			<content:encoded><![CDATA[<p>This has got to be one of the WORST ever behaviors for a user interface. Who ever thought of this one, should be shot.</p>
<p>There is nothing worse than when you&#8217;re entering data in a form and hit backspace only to have your browser react as if you clicked the back button.</p>
<p><strong>Arghhh.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/09/25/the-most-annoying-behavior-backspace-back-button/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Accordion 2.0</title>
		<link>http://blog.alien109.com/2007/09/21/accordion-20/</link>
		<comments>http://blog.alien109.com/2007/09/21/accordion-20/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 11:33:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/09/21/accordion-20/</guid>
		<description><![CDATA[Kevin Miller has updated his accordion control. The new version includes:

Open/Close functionality added (Click on an active accordion)
Nested Vertical Accordions
Accordions will dynamically resize on content added REAL TIME!

One of the better accordion widgets out there I must say.
Check it out!
]]></description>
			<content:encoded><![CDATA[<p>Kevin Miller has updated his accordion control. The new version includes:</p>
<ul>
<li>Open/Close functionality added (Click on an active accordion)</li>
<li>Nested Vertical Accordions</li>
<li>Accordions will dynamically resize on content added REAL TIME!</li>
</ul>
<p>One of the better accordion widgets out there I must say.</p>
<p><a href="http://www.stickmanlabs.com/accordion/">Check it out!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/09/21/accordion-20/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSSVista: Tweak CSS and see it in IE and Firefox at the same time</title>
		<link>http://blog.alien109.com/2007/09/21/cssvista-tweak-css-and-see-it-in-ie-and-firefox-at-the-same-time/</link>
		<comments>http://blog.alien109.com/2007/09/21/cssvista-tweak-css-and-see-it-in-ie-and-firefox-at-the-same-time/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 11:25:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/09/21/cssvista-tweak-css-and-see-it-in-ie-and-firefox-at-the-same-time/</guid>
		<description><![CDATA[CSSVista is a free Windows application for web developers which lets you edit your CSS code live in both Internet Explorer and Firefox simultaneously.
CSSVista is from the folks who gaves us Litmus
]]></description>
			<content:encoded><![CDATA[<p><a href="http://litmusapp.com/cssvista/">CSSVista</a> is a free Windows application for web developers which lets you edit your CSS code live in both Internet Explorer and Firefox simultaneously.</p>
<p>CSSVista is from the folks who gaves us <a href="http://litmusapp.com/">Litmus</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/09/21/cssvista-tweak-css-and-see-it-in-ie-and-firefox-at-the-same-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Julien Dupont</title>
		<link>http://blog.alien109.com/2007/09/20/julien-dupont/</link>
		<comments>http://blog.alien109.com/2007/09/20/julien-dupont/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 15:48:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Diversions]]></category>

		<category><![CDATA[Random Junk]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/09/20/julien-dupont/</guid>
		<description><![CDATA[


I don&#8217;t want a pickle
Just want to ride on my motorsickle
And I don&#8217;t want a tickle
&#8216;Cause I&#8217;d rather ride on my motorsickle
And I don&#8217;t want to die
Just want to ride on my motorcy&#8230;cle
Thank you Arlo&#8230;
]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1775980&#038;fullscreen=1" width="480" height="360" >
<param name="allowfullscreen" value="true" />
<param name="movie" quality="best" value="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1775980&#038;fullscreen=1" /></object></p>
<p>I don&#8217;t want a pickle<br />
Just want to ride on my motorsickle<br />
And I don&#8217;t want a tickle<br />
&#8216;Cause I&#8217;d rather ride on my motorsickle<br />
And I don&#8217;t want to die<br />
Just want to ride on my motorcy&#8230;cle</p>
<p>Thank you Arlo&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/09/20/julien-dupont/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web-based software license compliance tool</title>
		<link>http://blog.alien109.com/2007/09/15/web-based-software-license-compliance-tool/</link>
		<comments>http://blog.alien109.com/2007/09/15/web-based-software-license-compliance-tool/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 13:14:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Science/Technology]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/09/15/web-based-software-license-compliance-tool/</guid>
		<description><![CDATA[The Business Software Alliance is offering up to $1 million to whistle blowers who report software piracy and organizations are paying record fines for noncompliance. From initial fines to further audits from individual vendors, being found in noncompliance can be costly. So what help is there out there?
Centennial License Manager is a web-based software license [...]]]></description>
			<content:encoded><![CDATA[<p>The Business Software Alliance is offering up to $1 million to whistle blowers who report software piracy and organizations are paying record fines for noncompliance. From initial fines to further audits from individual vendors, being found in noncompliance can be costly. So what help is there out there?</p>
<p>Centennial License Manager is a web-based software license compliance solution that helps you quickly reconcile license entitlement to software usage on your network. Not only can it help your licensing position, it can help you save money as well by showing instances where you may be over licensed.</p>
<p>For more details, visit the <a href="http://www.centennial-software.com/products/license_manager/">License Manager products page</a> at <a href="http://www.centennial-software.com/">Centennial Software</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/09/15/web-based-software-license-compliance-tool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Heavy Metal Umlaut - The Diacritical Mark of the Beast</title>
		<link>http://blog.alien109.com/2007/09/11/heavy-metal-umlaut-the-diacritical-mark-of-the-beast/</link>
		<comments>http://blog.alien109.com/2007/09/11/heavy-metal-umlaut-the-diacritical-mark-of-the-beast/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 21:17:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Random Junk]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/09/11/heavy-metal-umlaut-the-diacritical-mark-of-the-beast/</guid>
		<description><![CDATA[
While trying to find some information on umlauts and the German language, I came across this and about pissed myself: The Heavy mMetal Umlaut
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newyorkwaste.com/nyw_main/music/Mortorhead/Motorhead-logo.gif" alt="motorhead logo" /></p>
<p>While trying to find some information on umlauts and the German language, I came across this and about pissed myself: <a href="http://en.wikipedia.org/wiki/Heavy_metal_umlaut">The Heavy mMetal Umlaut</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/09/11/heavy-metal-umlaut-the-diacritical-mark-of-the-beast/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moan my IP</title>
		<link>http://blog.alien109.com/2007/08/24/moan-my-ip/</link>
		<comments>http://blog.alien109.com/2007/08/24/moan-my-ip/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 19:29:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Random Junk]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/08/24/moan-my-ip/</guid>
		<description><![CDATA[Forget ipchicken.com. I&#8217;d much rather use moanmyip.com.
]]></description>
			<content:encoded><![CDATA[<p>Forget <a href="http://www.ipchicken.com">ipchicken.com</a>. I&#8217;d much rather use <a href="http://www.moanmyip.com/">moanmyip.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/08/24/moan-my-ip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Back from the UK</title>
		<link>http://blog.alien109.com/2007/08/22/back-from-the-uk/</link>
		<comments>http://blog.alien109.com/2007/08/22/back-from-the-uk/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 12:40:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.alien109.com/2007/08/22/back-from-the-uk/</guid>
		<description><![CDATA[Posting has been a bit sparse lately as I&#8217;ve been seriously busy with work. I also just returned from a trip to the UK for work.
It was the first time I&#8217;d ever been to the UK, or even Europe for that matter. It was a short visit unfortunately and I can&#8217;t wait to get back [...]]]></description>
			<content:encoded><![CDATA[<p>Posting has been a bit sparse lately as I&#8217;ve been seriously busy with work. I also just returned from a trip to the UK for work.</p>
<p>It was the first time I&#8217;d ever been to the UK, or even Europe for that matter. It was a short visit unfortunately and I can&#8217;t wait to get back and explore some more.</p>
<p>I loved London - the busyness, the people, the architecture - all good stuff. I was only in London for an evening, but got to see some of the more touristy things like Buckingham Palace, Piccadilly Circus, Parliament and Big Ben, which was all cool.</p>
<p>Can&#8217;t wait to get back.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alien109.com/2007/08/22/back-from-the-uk/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
