<?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"
	>

<channel>
	<title>Questionable Dabbling</title>
	<atom:link href="http://blog.questionabledabbling.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.questionabledabbling.com</link>
	<description>An unfocused exploration of 'How' and 'Why'</description>
	<pubDate>Tue, 16 Sep 2008 17:22:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Reverse Push Start</title>
		<link>http://blog.questionabledabbling.com/?p=8</link>
		<comments>http://blog.questionabledabbling.com/?p=8#comments</comments>
		<pubDate>Fri, 12 Sep 2008 18:05:36 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://blog.questionabledabbling.com/?p=8</guid>
		<description><![CDATA[Did you know you can push start a car in reverse?
This morning, I was reading an article about how to jump start a car (mentions the classic push start at the end). It brought back fond memories of the day I was stuck at the top of Pearl st (a bit of a hill at [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know you can push start a car in reverse?</p>
<p>This morning, I was reading an article about <a href="http://artofmanliness.com/2008/09/11/how-to-jump-start-a-car/">how to jump start a car</a> (mentions the classic push start at the end). It brought back fond memories of the day I was stuck at the top of <a href="http://maps.google.com/maps?ie=UTF8&amp;q=pearl+and+south+colchester+st,+burlington,+vt&amp;ll=44.479085,-73.199522&amp;spn=0.008727,0.014162&amp;z=16">Pearl st </a>(a bit of a hill at the end there) and for the first time ever push started a car. With the transmission in reverse, and my foot on the clutch, I just let it roll down the hill into oncoming traffic (there was a cop stopping said traffic a little ways out). As the car picked up speed, I let the clutch go.</p>
<p>The trick, it turns out, is to STOP the car once you&#8217;ve started it. Funny that, once you get the engine engaged and turning, it starts providing its own energy. After a brief moment of surprise, I brought the car to a stop, put it in first and was off to a mechanic.</p>
<p>Anyway. A random story.<br />
Chris</p>
<p><span>If you don&#8217;t believe me, the <a href="http://www.ehow.com/how_7414_push-start-car.html">interweb can confirm</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.questionabledabbling.com/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>How to Map a Folder to a Drive Letter</title>
		<link>http://blog.questionabledabbling.com/?p=7</link>
		<comments>http://blog.questionabledabbling.com/?p=7#comments</comments>
		<pubDate>Thu, 11 Sep 2008 17:04:13 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
		
		<category><![CDATA[CLI]]></category>

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

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

		<guid isPermaLink="false">http://blog.questionabledabbling.com/?p=7</guid>
		<description><![CDATA[Last week, I reformatted my ThinkPad. Usually, I create two partitions for a Windows implementation, one for the OS (C:\)  and one for data (E:\). This time around, I did something wrong when executing the restore and now have a single C: drive &#8230; Too lazy to rerun the restore process, I decided to [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, I reformatted my ThinkPad. Usually, I create two partitions for a Windows implementation, one for the OS (C:\)  and one for data (E:\). This time around, I did something wrong when executing the restore and now have a single C: drive &#8230; Too lazy to rerun the restore process, I decided to make lemonade. </p>
<p>In an effort to utilize the structure implemented by Windows, Program Files are in C:\Program Files, rather than E:\Program Files. Personal data are organized in My Documents and work data are organized in My Work, rather than a custom structure on the E: drive (ok, My Work is a slight deviation). With one exception, things are OK so far.</p>
<p>Here&#8217;s the problem. I write a lot of automation scripts for work (meaning I&#8217;m on a command line a lot). The command line prompt usually looks something like this beautiful thing:<br />
<code>'C:\Documents&nbsp;and&nbsp;Settings\[me]\My&nbsp;Work\Projects\[projectname]\[subfolder][\subfolder2][\...]&#8216;</code><br />Oddly, the GUI world isn&#8217;t all that bad&#8230; Thanks to <a href="http://lifehacker.com/400566/executor-is-impressive-full+featured-app-launcher">Executor</a> there are aliases for my most accessed folders. Really, the only place this is an issue is on the command line.</p>
<p>[Li/U]nux, and by extension, OS X, allow one to create links between files using the <a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?ln">ln</a> command. Alas, a similar utility does not exist in Windows land. (truth be told, SysInternals has <a href="http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx">something similar</a>, but it comes with a few complications.)</p>
<p><b>Enter SUBST:</b></p>
<p>Using <a href="http://en.wikipedia.org/wiki/Subst">SUBST</a>, one can create a virtual drive that maps to a folder. Not as powerful as ln, but still very useful. </p>
<p><code>SUBST P: "C:\Documents&nbsp;and&nbsp;Settings\[me]\My&nbsp;Work\Projects\&#8221;</code></p>
<p>Now all my projects are readily accessible. Less than 10 keystrokes gets me from an empty desktop to any project, on the command line. Taking it a step further, a simple Perl/VBScript/AutoHotKey script will allow me quick access to map specific projects (and <a href="http://blog.questionabledabbling.com/?p=6">SharePoint Folders</a>) to the letters of my choosing. (Two steps further and a startup script maps a couple drives automatically)</p>
<p> It turns out, if you work with it, not against it, Windows is only mostly bad. I&#8217;m constantly learning new tips and tricks built into the OS that allow <i>almost</i> as much flexibility as *nix.</p>
<p>Cheers,<br />Chris</p>
<p><font size="-2">For the GUI inclined, the folks at NT-Wind have a free utility called <a href="http://www.ntwind.com/software/utilities/visual-subst.html">Visual Subst</a> which does similar.</font></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.questionabledabbling.com/?feed=rss2&amp;p=7</wfw:commentRss>
		</item>
		<item>
		<title>How to Map a SharePoint Folder to a Drive Letter</title>
		<link>http://blog.questionabledabbling.com/?p=6</link>
		<comments>http://blog.questionabledabbling.com/?p=6#comments</comments>
		<pubDate>Thu, 11 Sep 2008 16:23:07 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
		
		<category><![CDATA[CLI]]></category>

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

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

		<guid isPermaLink="false">http://blog.questionabledabbling.com/?p=6</guid>
		<description><![CDATA[A long time ago, I learned how to map a SharePoint folder to a drive letter. Apparently, SharePoint is an evolved implementation of WebDav, so it&#8217;s really quite simple:
NET USE [drive]: &#8220;[URL]&#8220;
If you have a SharePoint server, MySharePointServer.com and it has a folder &#8216;/MyProject/SharedResources&#8217;, then you could go to &#8216;http://MySharePointServer.com/MyProject/SharedResources&#8217; and deal with the less [...]]]></description>
			<content:encoded><![CDATA[<p>A long time ago, I learned how to map a SharePoint folder to a drive letter. Apparently, SharePoint is an evolved implementation of WebDav, so it&#8217;s really quite simple:</p>
<p><code>NET USE [drive]: &#8220;[URL]&#8220;</code></p>
<p>If you have a SharePoint server, MySharePointServer.com and it has a folder &#8216;/MyProject/SharedResources&#8217;, then you could go to &#8216;http://MySharePointServer.com/MyProject/SharedResources&#8217; and deal with the less than zippy web interface &#8230; or you could map the folder to a drive letter and access the files natively:<br />
<br /><code>NET USE S: "http://MySharePointServer.com/MyProject/SharedResources"</code></p>
<p>Last bit of wisdom: Apple OS X and Linux both have WebDav clients. I haven&#8217;t tried it, but in theory, you can similarly access SharePoint folders in either OS. For once, Microsoft has developed a solution that plays nice with others.</p>
<p>Cheers,<br />
Chris</p>
<p><span> For the less textically inclined, you can also right click on &#8216;My Computer&#8217; -&gt; Map Network Drive and perform a similar action. Similar GUI methods exist in OS X and Linux.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.questionabledabbling.com/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
		<item>
		<title>VBScript: Multiple Statements on One Line</title>
		<link>http://blog.questionabledabbling.com/?p=5</link>
		<comments>http://blog.questionabledabbling.com/?p=5#comments</comments>
		<pubDate>Wed, 13 Aug 2008 17:45:12 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
		
		<category><![CDATA[Coding]]></category>

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

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

		<guid isPermaLink="false">http://blog.questionabledabbling.com/?p=5</guid>
		<description><![CDATA[Many examples have I seen regarding how to break a long statement into multiple lines but only yesterday did I learn how to place two statements on the same line.

DIM strMyName : strMyName = "Chris"
DIM i : For i = 0 to 10
WScript.Echo i
Loop

This is, to me, very cool. If you&#8217;re using &#8216;Option Explicit&#8217; (which [...]]]></description>
			<content:encoded><![CDATA[<p>Many examples have I seen regarding how to break a long statement into multiple lines but only yesterday did I learn how to place two statements on the same line.</p>
<p><code><br />
DIM strMyName : strMyName = "Chris"<br />
DIM i : For i = 0 to 10<br />
WScript.Echo i<br />
Loop<br />
</code></p>
<p>This is, to me, very cool. If you&#8217;re using &#8216;Option Explicit&#8217; (which you better be using), you can declare and assign a value to a variable, all on the same line&#8230; not too exciting, but it makes code much cleaner when used apropriatly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.questionabledabbling.com/?feed=rss2&amp;p=5</wfw:commentRss>
		</item>
		<item>
		<title>How to cook your garlic and enjoy it too.</title>
		<link>http://blog.questionabledabbling.com/?p=4</link>
		<comments>http://blog.questionabledabbling.com/?p=4#comments</comments>
		<pubDate>Thu, 10 Jul 2008 02:07:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
		
		<category><![CDATA[Cooking]]></category>

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

		<guid isPermaLink="false">http://blog.questionabledabbling.com/?p=4</guid>
		<description><![CDATA[Hypothetical situation: Yesterday you made a stew. It was a tasty stew, a satisfying repast. Its remenants shall assuage more than one future bout of hunger, but tonight you crave variety, something new, something different.
Assesing the ingredients at hand, you identify a potato, some small  bit of garlic and a steak. Together, they server as [...]]]></description>
			<content:encoded><![CDATA[<p>Hypothetical situation: Yesterday you made a stew. It was a tasty stew, a satisfying repast. Its remenants shall assuage more than one future bout of hunger, but tonight you crave variety, something new, something different.</p>
<p>Assesing the ingredients at hand, you identify a potato, some small  bit of garlic and a steak. Together, they server as the means by which you&#8217;ll feed yourself this night.  The potato (microwaved out of lazyness), a bit of butter, salt and most of the garlic make a side dish of mashed potatoes. The steak, covered in a salt/peper rub will cook nicly on your <em>George Foreman</em> grill (For it is summer and they heat of a stove is far from welcome).</p>
<p>At the last minute, you realize a bit of garlic, minced, with a few drops of olive oil would lend itself well to the steak. There is but one problem, dear reader. How do you keep from burning the garlic, roasting it to a bitternese beereft of its former savory goodness?  The cunning chef would find many a suitable solution within a quick glance of his kitchen. I shall share with you but one.</p>
<p>Find a cork, not one of those plonking cheap rubber/plastic substitutes, but a real cork. Cut it in half, crosswise and place each half on a side of the grill. Place your steak in the center of the grill and pour over the top of it your garlic and oil. Lower the lod of the grill so it rests on the cork, thos pillars of strength, protecting the delicate balance of flavor.</p>
<p>To further augment, lay a second cork lengthwise above the upper lip of the grill&#8217;s cooking area. This will rais up the back end of the lid in it&#8217;s hinged track such that there is eaven heat across the top of your steak. </p>
<p style="text-align: center;">&#8212;===&#8212;</p>
<p>Google can suggest <a href="http://www.google.com/search?q=cork+hacks">many uses</a> for those leftover corks. My personal favorite would be the DIY <a href="http://lifehacker.com/software/laptop/diy-wine-cork-laptop-stand-233097.php">Laptop Stand</a>, combining multiple vices of which the author is guilty.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.questionabledabbling.com/?feed=rss2&amp;p=4</wfw:commentRss>
		</item>
	</channel>
</rss>
