<?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>DancingSamurai.ca &#187; windows</title>
	<atom:link href="http://dancingsamurai.ca/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancingsamurai.ca</link>
	<description>Musings on Culture, Medicine, and Life in General</description>
	<lastBuildDate>Thu, 19 Aug 2010 00:24:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ubuntu Netbook with fully encrypted disk</title>
		<link>http://dancingsamurai.ca/2010/07/19/ubuntu-netbook-with-fully-encrypted-disk/</link>
		<comments>http://dancingsamurai.ca/2010/07/19/ubuntu-netbook-with-fully-encrypted-disk/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 02:54:45 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/?p=1952</guid>
		<description><![CDATA[So I&#8217;ve been noticing that windows is really slow on my netbook (even on my Toshiba A300), and so has my wife. It is quite frustrating that I could probably check my e-mail faster 20 years ago (boot time to open the application, etc). Sure, it was text based, but the functionality was there! So [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2006/05/14/j-river-media-center-11-under-wine/' rel='bookmark' title='Permanent Link: J. River Media Center 11 under WINE'>J. River Media Center 11 under WINE</a></li>
<li><a href='http://dancingsamurai.ca/2005/05/21/xandros-linux/' rel='bookmark' title='Permanent Link: Xandros Linux'>Xandros Linux</a></li>
<li><a href='http://dancingsamurai.ca/2005/05/11/misc-updates-2/' rel='bookmark' title='Permanent Link: Misc. Updates'>Misc. Updates</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been noticing that windows is really slow on my netbook (even on my Toshiba A300), and so has my wife. It is quite frustrating that I could probably check my e-mail faster 20 years ago (boot time to open the application, etc). Sure, it was text based, but the functionality was there!<br />
<span id="more-1952"></span></p>
<p>So I thought I would give Ubuntu a whirl &#8230; first on my netbook, then on my laptop, and who knows, maybe even on my desktop? Problem is, the current version of Ubuntu Netbook Edition (10.04) &#8212; and even the standard desktop install &#8211; doesn&#8217;t let you encrypt your whole hard drive (and I&#8217;m used to having this done, in case my laptop&#8230; goes missing). Sure, you can encrypt your home directory, which is where all your documents would likely be, but most crypto geeks say stuff could &#8216;leak&#8217; out (through temp files etc.)</p>
<p>Plus, if I want to share stuff between all users of the laptop, like music and pictures and video that I don&#8217;t want a laptop thief to find, I&#8217;d have to figue out how to encrypt THAT directory in a way that any user login could decrypt it. Probably possible, but&#8230; too much trouble, and the first problem is still there.</p>
<p>So, on the ubuntu forums, I found a set of instructions for <a href="http://ubuntuforums.org/showpost.php?p=9162672&amp;postcount=16">accomplishing exactly this</a>. It&#8217;s for 9.04, but worked perfectly for 10.04 as well:</p>
<blockquote>
<div>Originally Posted by <strong>LonelyAppleHater</strong> <a rel="nofollow" href="http://ubuntuforums.org/showthread.php?p=7367589#post7367589"><img title="View Post" src="http://ubuntuforums.org/images/buttons/viewpost.gif" border="0" alt="View  Post" /></a></div>
<div>BTW, I&#8217;m able to resume and  hibernate with my encrypted swap.  I have a hard drive, not an SSD, so I  don&#8217;t have to take care with excessive writes.</p>
<p>Here&#8217;s the updated procedure without the need for the Fedora install  (thanks jiink):</p>
<p>Encrypted Linux Install</p>
<p>1.  Set up partitions.</p>
<div>
<div>Code:</div>
<pre dir="ltr"># sudo -i
# cfdisk /dev/sda
### Create first partition with type 83 (Linux) for /boot
### Create second partition with type 8e (Linux LVM) for our encrypted volumes</pre>
</div>
<p>2.  Setup the encrypted volume to contain our LV&#8217;s</p>
<div>
<div>Code:</div>
<pre dir="ltr"># apt-get install lvm2 cryptsetup
# modprobe dm-crypt
# modprobe aes
# cryptsetup -y -s 256 -c aes-cbc-essiv:sha256 luksFormat /dev/sda2
# cryptsetup luksOpen /dev/sda2 sda2_crypt
(enter password)</pre>
</div>
<p>3.  Now the encrypted volume is ready &#8211; let&#8217;s use it for Logical  Volumes.</p>
<div>
<div>Code:</div>
<pre dir="ltr"># pvcreate /dev/mapper/sda2_crypt
# vgcreate vg /dev/mapper/sda2_crypt
# vgchange -a y vg
# lvcreate -L 3G -n swap vg
# lvcreate -l 100%FREE -n root vg</pre>
</div>
<p>4.  Finally format the volumes so the installer partitioner  recognizes them. There&#8217;s no need to format again in the partitioner  after this.</p>
<div>
<div>Code:</div>
<pre dir="ltr"># mkfs.ext4 -L boot -M /boot /dev/sda1
# mkfs.ext4 -L root -M / /dev/vg/root
<span style="color: red;"> # mkswap -L swap /dev/vg/swap</span></pre>
</div>
<p>5.  Start installer. No need to reformat partitions. Don&#8217;t reboot  after installer is done.</p>
<p><span style="color: red;">5.5 </span></p>
<div>
<div>Code:</div>
<pre dir="ltr"><span style="color: red;">
# mkdir /target2
</span></pre>
</div>
<p><span style="color: red;"><br />
as /target/ existed on my live unr version after the installer was  finished i createt a new directory called target2<br />
</span></p>
<div>
<div>Code:</div>
<pre dir="ltr"><span style="color: red;">
# mount /dev/vg/root /target2/
# mount /dev/sda1 /target2/boot
# chroot /target2
# mount -t proc proc /proc
# mount -t sysfs sys /sys
# apt-get install lvm2 cryptsetup
</span></pre>
</div>
<p>6.  Using your favorite text editor (I used nano), enter the following  entry in /etc/crypttab:</p>
<div>
<div>Code:</div>
<pre dir="ltr">sda2_crypt     /dev/sda2     none      luks</pre>
</div>
<p>7.  Now put the following in /etc/initramfs-tools/modules:</p>
<div>
<div>Code:</div>
<pre dir="ltr">aes-i586
dm-crypt
dm-mod
sha256</pre>
</div>
<p>8.   Now edit /etc/fstab. What you need to do here is comment out  or delete the UUID that is associated with your encrypted volumes and  put in the actual path for the volume. Apparently, the UUID&#8217;s might be  wrong, so you need to use the path instead.</p>
<p>So, for example, it might say in the comment &#8220;Was on  /dev/mapper/VolGroup00-LogVol00 during installation.&#8221; You should see the  UUID below. So, replace the UUID with /dev/mapper/VolGroup00-LogVol00.  Repeat for the encrypted swap volume as well. There&#8217;s no need to do this  for any other partition in the fstab file.</p>
<p>9. Finally, save and close the fstab file and enter one final command:</p>
<div>
<div>Code:</div>
<pre dir="ltr"># update-initramfs -k all -c</pre>
</div>
</div>
</blockquote>
<p>Also, to fix the unusual position of the window buttons,<a href="http://www.howtogeek.com/howto/13535/move-window-buttons-back-to-the-right-in-ubuntu-10.04/"> see here</a>.<br />
(basically, hit Alt-F2, run gconf-editor, and change the apps/metacity/general button_layout to &#8220;menu:minimize, maximize, close&#8221;)</p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2006/05/14/j-river-media-center-11-under-wine/' rel='bookmark' title='Permanent Link: J. River Media Center 11 under WINE'>J. River Media Center 11 under WINE</a></li>
<li><a href='http://dancingsamurai.ca/2005/05/21/xandros-linux/' rel='bookmark' title='Permanent Link: Xandros Linux'>Xandros Linux</a></li>
<li><a href='http://dancingsamurai.ca/2005/05/11/misc-updates-2/' rel='bookmark' title='Permanent Link: Misc. Updates'>Misc. Updates</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2010/07/19/ubuntu-netbook-with-fully-encrypted-disk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Synchronize / Backup to the Cloud&#8230;</title>
		<link>http://dancingsamurai.ca/2009/12/15/synchronize-backup-to-the-cloud/</link>
		<comments>http://dancingsamurai.ca/2009/12/15/synchronize-backup-to-the-cloud/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 05:31:33 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/?p=1866</guid>
		<description><![CDATA[Well, I&#8217;ve finally gotten around to trying to backup all my important (and not so important files) offsite. Here I&#8217;ll give a rundown of the sync products I tried and some issues I ran into&#8230; For the last year or so I&#8217;ve been using Unison as I described here, syncronizing to my file server (using [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2006/01/17/offline-files/' rel='bookmark' title='Permanent Link: Offline Files'>Offline Files</a></li>
<li><a href='http://dancingsamurai.ca/2009/07/05/video-editing-issues/' rel='bookmark' title='Permanent Link: Video Editing Issues&#8230;'>Video Editing Issues&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2007/07/06/you-never-know-what-the-computer-repairman-is-looking-at/' rel='bookmark' title='Permanent Link: You never know what the computer repairman is looking at&#8230;'>You never know what the computer repairman is looking at&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve finally gotten around to trying to backup all my important (and not so important files) offsite. Here I&#8217;ll give a rundown of the sync products I tried and some issues I ran into&#8230;</p>
<p><span id="more-1866"></span></p>
<p>For the last year or so I&#8217;ve been using <a href="http://www.cis.upenn.edu/~bcpierce/unison/">Unison</a> as <a href="http://dancingsamurai.ca/2008/11/21/synchronizing-files/">I described here</a>, syncronizing to my file server (using <a href="https://secure.logmein.com/products/hamachi2/">Hamachi</a> to keep a VPN connection to it open no matter where I am).</p>
<p>For the most part, it works well &#8211; especially once I put the batch file to run whenever I step away from my computer and when I get back (set it up as a Scheduled Task with a bunch of triggers like screen saver active, workstation locked, workstation unlocked, etc). Occasionally though I still ran into conflicts. Also, accessing my files from a machine I didn&#8217;t own (without Hamachi installed) was a bit of a pain. And, primarily, all my stuff was sitting just on hardware I had at home. If someone broke in and took all the electronics, or my house burned down &#8211; goodbye 20 years of photos and videos. I do have some backups on DVD in a safety deposit box but I think I last updated those backups 2 years ago. Burning &amp; reburning &amp; taking the trip out there just isn&#8217;t convenient.</p>
<p>My main concern is privacy &#8211; I have some scans of important documents etc. on my HD that I want backed up &#8211; but I don&#8217;t necessarily want some random employee (or the US government) snooping around in it. So&#8230; I just stuck all that stuff in a <a href="http://www.truecrypt.org/">TrueCrypt</a> volume, to be synchronized.</p>
<p>So, I bit the bullet and had a look around. Quickly my options dwindled to <a href="https://www.sugarsync.com/">SugarSync</a> or <a href="https://www.dropbox.com/referrals/NTMzNzE2Mjk">DropBox</a>*. <a href="http://mozy.com/">Mozy</a> was another one (endorsed by <a href="http://www.xmarks.com/">Xmarks</a> &#8211; a great bookmark sync plugin!), but it is more of a pure backup app with some bad performance reviews out there; and adding 3 computers (or more!) would cost extra $$$.</p>
<p>They are both about the same, overall. A quick bullet list of pros/cons:</p>
<p>SugarSync:</p>
<ul>
<li>The Good:
<ul>
<li>More space (up to 250GB)</li>
<li>Cheaper (14.99/mo for 100GB vs. 19.99/mo)</li>
<li>More control over sharing of folders between computers &amp; other people</li>
<li>Lets you pick which folders to share</li>
<li>Lets you stream mp3s from your files over the &#8216;net&#8230; even to a mobile device!</li>
</ul>
</li>
<li>The Bad:
<ul>
<li>Supposedly has delta sync, but for what I need it for (My aforementioned TrueCrypt volume) it was re-uploading the whole file on every minor change</li>
<li>The client was crashing randomly on Windows 7 (although it may be something with my install or my hardware &#8211; my box has been doing this for the last month or so with lots of other weirdness&#8230;)</li>
<li>Syncronization would sometimes just stop. 5000 files to go, it would say &#8216;uploading&#8217;&#8230; but network activity would be zilch. I&#8217;d have to quit &amp; reload the program. At which point (despite supposedly being able to &#8216;resume&#8217; uploading, it would start re-synchronizing my 512 MB TrueCrypt volume from the beginning.</li>
<li>Limited support &#8211; no user forums. Takes 48 hours even for support to acknowledge a ticket.</li>
</ul>
</li>
</ul>
<p><a href="https://www.dropbox.com/referrals/NTMzNzE2Mjk">DropBox:</a></p>
<ul>
<li>The Good:
<ul>
<li>True delta sync that works</li>
<li>Fast sync. Stable client</li>
<li>A Wiki, user forums, vote for new features &#8211; generally more active/interactive community.</li>
</ul>
</li>
<li> The Bad:
<ul>
<li>Less space / more expensive (although 100GB plenty atm for me)</li>
<li>Fewer options for sharing with others</li>
<li>Syncs only one directory &#8220;My Dropbox&#8221; although this is easily circumvented with <a href="http://en.wikipedia.org/wiki/NTFS_symbolic_link">symbolic links</a> (<a href="http://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html">Link Shell Extension GUI</a> makes this even easier; see full instruction on the <a href="http://wiki.dropbox.com/TipsAndTricks/SyncOtherFolders">DropBox Wiki</a>).</li>
</ul>
</li>
</ul>
<p>Anyway, I ended up going with DropBox, because of the geek factor, but also because the instability of the SugarSync client &amp; lack of real delta sync was a no-starter for me.</p>
<p>So, sign up with my <a href="https://www.dropbox.com/referrals/NTMzNzE2Mjk">referral link</a>, give me some extra space, &amp; get some extra space for you, too!</p>
<p>* <a href="https://www.dropbox.com/referrals/NTMzNzE2Mjk">This is my referral link</a> &#8211; use it to get an extra 250MB of space (giving me an extra 500MB&#8230;). Or just go to the main site and not&#8230; up to you.</p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2006/01/17/offline-files/' rel='bookmark' title='Permanent Link: Offline Files'>Offline Files</a></li>
<li><a href='http://dancingsamurai.ca/2009/07/05/video-editing-issues/' rel='bookmark' title='Permanent Link: Video Editing Issues&#8230;'>Video Editing Issues&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2007/07/06/you-never-know-what-the-computer-repairman-is-looking-at/' rel='bookmark' title='Permanent Link: You never know what the computer repairman is looking at&#8230;'>You never know what the computer repairman is looking at&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2009/12/15/synchronize-backup-to-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MP4 (h264) files won&#8217;t stream?</title>
		<link>http://dancingsamurai.ca/2009/11/23/mp4-h264-files-wont-stream/</link>
		<comments>http://dancingsamurai.ca/2009/11/23/mp4-h264-files-wont-stream/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 02:16:52 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/?p=1846</guid>
		<description><![CDATA[Yeah, I had that problem. zenphoto uses flowplayer, but I think the problem would exist in any flash-based video player. Basically, it would need to download the whole .mp4 file before starting to play &#8211; defeating the whole idea of &#8216;streaming&#8217; Apparently, I&#8217;m not alone with this problem. And, as often is the case, someone [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2009/08/27/adobe-premiere-elements-project-settings-problem/' rel='bookmark' title='Permanent Link: Adobe Premiere Elements &#8211; Project settings problem'>Adobe Premiere Elements &#8211; Project settings problem</a></li>
<li><a href='http://dancingsamurai.ca/2008/11/21/synchronizing-files/' rel='bookmark' title='Permanent Link: Synchronizing Files'>Synchronizing Files</a></li>
<li><a href='http://dancingsamurai.ca/2009/07/05/video-editing-issues/' rel='bookmark' title='Permanent Link: Video Editing Issues&#8230;'>Video Editing Issues&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yeah, I had that problem. zenphoto uses flowplayer, but I think the problem would exist in any flash-based video player. Basically, it would need to download the whole .mp4 file before starting to play &#8211; defeating the whole idea of &#8216;streaming&#8217;</p>
<p>Apparently, I&#8217;m <a href="http://www.mediacollege.com/forum/showthread.php?t=5431">not alone</a> with this problem. And, as often is the case, someone else on the internet has solved it admirably with <a href="http://rndware.info/products/metadata-mover.html">MetaDataMover</a>.</p>
<blockquote><p>Doesn&#8217;t your mp4 file stream properly over the Internet? Does the mp4 need to download completely before playing in a Flash player? rndware&#8217;s Metadata Mover moves metadata from the end to the beginning of mp4 files. This allows any mp4 file to be streamed using Flash players, without needing to load the entire movie.</p></blockquote>
<p>I&#8217;m just puzzled why this tool needs administrator access. Hope I haven&#8217;t installed a trojan&#8230;</p>
<p>Local cache: <a href='http://dancingsamurai.ca/wp-content/uploads/2009/11/mp4MetadataMover0.9.zip'>mp4MetadataMover0.9</a></p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2009/08/27/adobe-premiere-elements-project-settings-problem/' rel='bookmark' title='Permanent Link: Adobe Premiere Elements &#8211; Project settings problem'>Adobe Premiere Elements &#8211; Project settings problem</a></li>
<li><a href='http://dancingsamurai.ca/2008/11/21/synchronizing-files/' rel='bookmark' title='Permanent Link: Synchronizing Files'>Synchronizing Files</a></li>
<li><a href='http://dancingsamurai.ca/2009/07/05/video-editing-issues/' rel='bookmark' title='Permanent Link: Video Editing Issues&#8230;'>Video Editing Issues&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2009/11/23/mp4-h264-files-wont-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista &#8211; Switch User Shortcut</title>
		<link>http://dancingsamurai.ca/2009/08/22/windows-vista-switch-user-shortcut/</link>
		<comments>http://dancingsamurai.ca/2009/08/22/windows-vista-switch-user-shortcut/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 20:57:50 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/?p=1717</guid>
		<description><![CDATA[On all my Windows XP machines, I&#8217;m used to pushing Win-L to lock the screen and go to the Welcome Screen, so for example, I can pass the computer on to my wife, and come back and resume everything I was working on without any lost time. On Windows Vista (which I have on the [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2007/01/06/vista-highlights-digital-freedom-battle/' rel='bookmark' title='Permanent Link: Vista highlights digital freedom battle'>Vista highlights digital freedom battle</a></li>
<li><a href='http://dancingsamurai.ca/2007/04/01/how-to-access-uptodate-from-home-for-mcmaster-students/' rel='bookmark' title='Permanent Link: How to access UpToDate from home (for McMaster Students)'>How to access UpToDate from home (for McMaster Students)</a></li>
<li><a href='http://dancingsamurai.ca/2009/07/05/tinkering-with-my-old-acer-travelmate-c310/' rel='bookmark' title='Permanent Link: Tinkering with my old Acer Travelmate C310'>Tinkering with my old Acer Travelmate C310</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>On all my Windows XP machines, I&#8217;m used to pushing Win-L to lock the screen and go to the Welcome Screen, so for example, I can pass the computer on to my wife, and come back and resume everything I was working on without any lost time.</p>
<p>On Windows Vista (which I have on the laptop because it came with it &#8211; and I&#8217;m not spending any more money on a Windows XP license, as if you can still find them&#8230;.), Win-L just goes to a new &#8216;locked&#8217; screen. It&#8217;s an extra mouse click to go to the select user screen. Which doesn&#8217;t seem like much, but despite the fact that the resolution is the SAME FOR ALL USERS, Vista insists on refreshing the screen. And Vista being Vista, it is SLOW to do this. So, instead of 2 seconds to switch users, it takes 10-15, which is really annoying for a supposedly &#8216;upgraded&#8217; operating system.</p>
<p>I know, I know, I should just install Linux on the laptop. My wife probably wouldn&#8217;t even notice. :) But, I do ocassionally play games (ok, ok, dual boot, I know).</p>
<p>I&#8217;ll do that with Windows 7 I guess&#8230;</p>
<p>Anyway, this website has a workaround that, while not ideal, allows me to get to <a href="http://blog.dotsmart.net/2008/01/17/shortcut-to-switch-user-in-windows-vista/">switch users with a quick keypress in Vista</a> (Win-2). So, somewhat improved user switching. Doesn&#8217;t help if the screen saver kicks in &amp; goes to the &#8216;locked&#8217; screen automatically&#8230; but when it comes to Microsoft, I&#8217;ll take what I can get. They even have a solution for Vista Home/Home Premium without a TSDISCON executable.</p>
<blockquote>
<ol>
<li>Create a shortcut on your desktop to TSDISCON (* see below) and call it something like “Switch User”</li>
<li>Go the shortcut Properties page and assign a shortcut key. Note that unfortunately you can’t use the Windows Key in your shortcut – so I went for CTRL + ALT + SHIFT + L</li>
<li>Right click Start button and choose “Open All Users” and move the shortcut into the Programs folder (confirming the UAC prompt as you go).</li>
<li>Log out, and back in again. This is necessary because Explorer hasn’t noticed there’s now a shortcut with a new shortcut key it should be taking notice of.</li>
</ol>
<p>And that did it. CTRL + ALT + SHIFT + L isn’t quite a neat as WinKey+L but it’s a hell of a lot better than poking around in the Start Menu.</p></blockquote>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2007/01/06/vista-highlights-digital-freedom-battle/' rel='bookmark' title='Permanent Link: Vista highlights digital freedom battle'>Vista highlights digital freedom battle</a></li>
<li><a href='http://dancingsamurai.ca/2007/04/01/how-to-access-uptodate-from-home-for-mcmaster-students/' rel='bookmark' title='Permanent Link: How to access UpToDate from home (for McMaster Students)'>How to access UpToDate from home (for McMaster Students)</a></li>
<li><a href='http://dancingsamurai.ca/2009/07/05/tinkering-with-my-old-acer-travelmate-c310/' rel='bookmark' title='Permanent Link: Tinkering with my old Acer Travelmate C310'>Tinkering with my old Acer Travelmate C310</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2009/08/22/windows-vista-switch-user-shortcut/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Tinkering with my old Acer Travelmate C310</title>
		<link>http://dancingsamurai.ca/2009/07/05/tinkering-with-my-old-acer-travelmate-c310/</link>
		<comments>http://dancingsamurai.ca/2009/07/05/tinkering-with-my-old-acer-travelmate-c310/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 05:18:43 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/?p=1528</guid>
		<description><![CDATA[Well I had a few minutes today so I finally got around to looking at what&#8217;s wrong with my C310. For the last few years I&#8217;ve had to underclock the processor or the CPU temperature would go abouve 100 degrees C and funny stuff would start happening. Even running at half speed (~ 1000MHz), the [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2004/07/04/cpu-temp/' rel='bookmark' title='Permanent Link: CPU Temp'>CPU Temp</a></li>
<li><a href='http://dancingsamurai.ca/2008/11/15/new-toshiba-laptop/' rel='bookmark' title='Permanent Link: New Toshiba Laptop'>New Toshiba Laptop</a></li>
<li><a href='http://dancingsamurai.ca/2007/02/07/tinkering-with-my-dell-axim/' rel='bookmark' title='Permanent Link: Tinkering with my Dell Axim'>Tinkering with my Dell Axim</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Well I had a few minutes today so I finally got around to looking at what&#8217;s wrong with my C310. For the last few years I&#8217;ve had to underclock the processor or the CPU temperature would go abouve 100 degrees C and funny stuff would start happening. Even running at half speed (~ 1000MHz), the CPU would idle at 80-90 degrees. Seems a bit hot.</p>
<p>I bought a new Toshiba last year, but I missed my old computer (hey, at least it&#8217;s running XP instead of that crappy Vista!) so I thought I&#8217;d give repairing it a whirl.</p>
<p><span id="more-1528"></span></p>
<p>I had tried to take it apart before, but I couldn&#8217;t figure out how to do it. The case seemed glued together despite all the screws coming out. Well, the <a href="http://netfree1.blogspot.com/2008/05/acer-travelmate-c300-notebook-service.html">Service Manual</a> helped. (Local cache: <a href='http://dancingsamurai.ca/wp-content/uploads/2009/07/Acer-TravelMate-C300-Service-Manual.PDF'>Acer TravelMate C300 Service Manual</a>). Even with that I was stuck on the cryptic <a href="http://steve.wedevelop.net/archives/000191.html">remove keyboard</a> directions until I found this:</p>
<blockquote><p>
Hi there! Stumbled across your blog while looking for more info on the C300. I&#8217;m typing this on a C300 with 1 GB of RAM, and I thought I&#8217;d share the method for upgrading the RAM. As an aside, shame on ACER for the poor split-location memory design, and even more shame for not even mentioning it in the manual!</p>
<p>Ok, the second ram slot is under the keyboard, but it&#8217;s not as tough to get to as past models may have been. You&#8217;ll notice a little round doohicky between the F12 and the prtsc key. There are two others between F4-F5 and ESC F1. Take a paperclip, straighten one side of it, and put that side in the doohicky. pull down towards the front of the computer. Each will slide a couple of mm&#8217;s and click. Flip the computer over, and tere&#8217;s a screw in the middle of the computer labled &#8220;KB&#8221;. Remove it.</p>
<p>You can now lift the keyboard out of the computer by pulling up on the Function row. Carefully lift it up and rotate it towards the touchpad. There is a ribbon cable attaching it to the computer. Now very carefully pry out the extremely poorly designed cost-saving clip that retains the ribbon cable to the computer. I can&#8217;t believe Acer used this rather than the typical &#8220;cam&#8217;d&#8221; locking clip. Once you remove that, hopefully in one piece, you&#8217;re home free.</p>
<p>The memory slot is under the metal cover you&#8217;re now looking at. Remove the 6 or 7 screws that retain it, and slide it towards the screen and up and out. Ta-da! you&#8217;re set.</p>
<p>Don&#8217;t be afraid of the ribbon cable. The only thing you need to make sure of is that the cable isn&#8217;t backwards, but it&#8217;ll be obvious which way it goes back in. You just press it back in and put the clip over it to retain it. After putting the metal cover/framwork back in place, the keyboard will click back into place by pushing on the left and right sides. Flip the computer over and re-install the KB screw, and you&#8217;re done :)
</p></blockquote>
<p>So with those instructions in hand, I disassembled the TravelMate C310.</p>
<p>When I finally got the heatsink off &#8212; I saw the problem. There was nothing between the chip and the heatsink. Usually there&#8217;s some thermal paste or a pad of some kind&#8230; but no luck.<br />
Threw some <a href="http://www.arcticsilver.com/">Arctic Silver</a> on it and voila. </p>
<p>The only mistake I made was that the nvidia chip DID have a thermal pad between heatsink &#038; chip. Normally, the Arctic Silver folks recommend not to use those but to use paste instead, so I took it off &#038; dabbed arctic silver on it too.</p>
<p>Unfortunately the heat sink is mounted several mm above the chip (room for the pad!) so I suspect the heat transfer will not be ideal. I&#8217;ll have to get a replacement pad thingie. Ah well, wasn&#8217;t exactly planning on playing games on this old clunker, anyway.</p>
<p>Anyway, it&#8217;s running like a charm. Faster than my dual-core Toshiba running Vista, natch. (That&#8217;s what a lean install can do&#8230;). CPU idling at 70 degrees (still hot but it&#8217;s a crappy Intel chip, what can I say), and it hasn&#8217;t climbed above 82 degrees with the CPU maxed out for several minutes. </p>
<p>Yay! &#8230; now to run Windows Update for the last 12 months of patches&#8230; :S</p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2004/07/04/cpu-temp/' rel='bookmark' title='Permanent Link: CPU Temp'>CPU Temp</a></li>
<li><a href='http://dancingsamurai.ca/2008/11/15/new-toshiba-laptop/' rel='bookmark' title='Permanent Link: New Toshiba Laptop'>New Toshiba Laptop</a></li>
<li><a href='http://dancingsamurai.ca/2007/02/07/tinkering-with-my-dell-axim/' rel='bookmark' title='Permanent Link: Tinkering with my Dell Axim'>Tinkering with my Dell Axim</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2009/07/05/tinkering-with-my-old-acer-travelmate-c310/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synchronizing Files</title>
		<link>http://dancingsamurai.ca/2008/11/21/synchronizing-files/</link>
		<comments>http://dancingsamurai.ca/2008/11/21/synchronizing-files/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 00:54:38 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/?p=1043</guid>
		<description><![CDATA[While I&#8217;ve been using SyncEXP to keep my music collection, etc, synchronzied between my laptop &#038; my file server at home (as well as my portable HD on occasion), I wanted to find something a little more bandwidth-friendly, so I could synchronize over the network if need be. My search for an rsync-like util to [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2009/12/15/synchronize-backup-to-the-cloud/' rel='bookmark' title='Permanent Link: Synchronize / Backup to the Cloud&#8230;'>Synchronize / Backup to the Cloud&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2006/01/17/offline-files/' rel='bookmark' title='Permanent Link: Offline Files'>Offline Files</a></li>
<li><a href='http://dancingsamurai.ca/2009/11/23/mp4-h264-files-wont-stream/' rel='bookmark' title='Permanent Link: MP4 (h264) files won&#8217;t stream?'>MP4 (h264) files won&#8217;t stream?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>While I&#8217;ve been using <a href="http://www.syncexp.com/">SyncEXP</a> to keep my music collection, etc, synchronzied between my laptop &#038; my file server at home (as well as my portable HD on occasion), I wanted to find something a little more bandwidth-friendly, so I could synchronize over the network if need be. </p>
<p>My search for an rsync-like util to do this landed me with <a href="http://www.cis.upenn.edu/~bcpierce/unison/">Unison</a>. Works like a charm &#8211; unfortunately the GUI doesn&#8217;t work (at least, not in Vista), from the precompiled packages available.</p>
<p>No matter, I just set up a little batch file and PRESTO!  Synchronized like a charm.</p>
<p>Well, at least, it&#8217;s working on it. I really should have done this first sync in a while from home&#8230; :)</p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2009/12/15/synchronize-backup-to-the-cloud/' rel='bookmark' title='Permanent Link: Synchronize / Backup to the Cloud&#8230;'>Synchronize / Backup to the Cloud&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2006/01/17/offline-files/' rel='bookmark' title='Permanent Link: Offline Files'>Offline Files</a></li>
<li><a href='http://dancingsamurai.ca/2009/11/23/mp4-h264-files-wont-stream/' rel='bookmark' title='Permanent Link: MP4 (h264) files won&#8217;t stream?'>MP4 (h264) files won&#8217;t stream?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2008/11/21/synchronizing-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Toshiba Laptop</title>
		<link>http://dancingsamurai.ca/2008/11/15/new-toshiba-laptop/</link>
		<comments>http://dancingsamurai.ca/2008/11/15/new-toshiba-laptop/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 18:34:18 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/?p=1033</guid>
		<description><![CDATA[Well, I&#8217;m playing with the new Toshiba laptop I just bought (Satellite A300-07G), after my wife started really complaining about my old Acer TravelMate C310 Tablet (it is about 4 years old now, and getting a bit slow, crashing randomly, and the CPU runs at about 85 degrees &#8212; Acers never do cool things well, [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2010/04/03/whoops-a-key-fell-off-my-laptop-keyboard/' rel='bookmark' title='Permanent Link: Whoops, a key fell off my laptop keyboard&#8230;'>Whoops, a key fell off my laptop keyboard&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2009/08/22/windows-vista-switch-user-shortcut/' rel='bookmark' title='Permanent Link: Windows Vista &#8211; Switch User Shortcut'>Windows Vista &#8211; Switch User Shortcut</a></li>
<li><a href='http://dancingsamurai.ca/2009/08/27/adobe-premiere-elements-project-settings-problem/' rel='bookmark' title='Permanent Link: Adobe Premiere Elements &#8211; Project settings problem'>Adobe Premiere Elements &#8211; Project settings problem</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;m playing with the new Toshiba laptop I just bought (<a href="http://www.toshiba.ca/web/product.grp?lg=en&#038;section=1&#038;group=1&#038;product=8191&#038;part=8275#spectop">Satellite A300-07G</a>), after my wife started really complaining about my old Acer TravelMate C310 Tablet (it is about 4 years old now, and getting a bit slow, crashing randomly, and the CPU runs at about 85 degrees &#8212; Acers never do cool things well, do they?).</p>
<p>Besides the approximately 3 hours it takes to unpack its software after first boot-up, it runs pretty well. Initial boot times were in the 3 minute range but I removed Norton 360 (which was the major culprit, I think), and some other programs, tweaked the startup a bit with msconfig, and installed Kaspersky AV, and VOILA!</p>
<p>Was trying to find something similar to notebook hardware control for the 64-bit vista that came with the laptop, and ran across <a href="http://cpu.rightmark.org/products/rmclock.shtml">RMClock</a>. </p>
<p>A <a href="http://forum.rightmark.org/topic.cgi?id=6:1226">little tweak</a> to let it run without signed drivers (need to run cmd.exe as admin) was presented in the forums:</p>
<blockquote><p>
Disable Driver Signature Enforcement. Go to the command promt (run &#8220;cmd.exe&#8221;), then type<br />
&#8220;bcdedit /set loadoptions DDISABLE_INTEGRITY_CHECKS&#8221; (without quotes, and the DD is not a typo)
</p></blockquote>
<p>And a scheduled task to get it to start up on boot with admin priviledges&#8230; and we&#8217;re all set! &#8230; Except it doesn&#8217;t work. :( *sigh* back to the drawing board!</p>
<p>Vista is very pretty, BTW. Looks sketchy performance-wise, but&#8230; we&#8217;ll see how it goes!</p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2010/04/03/whoops-a-key-fell-off-my-laptop-keyboard/' rel='bookmark' title='Permanent Link: Whoops, a key fell off my laptop keyboard&#8230;'>Whoops, a key fell off my laptop keyboard&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2009/08/22/windows-vista-switch-user-shortcut/' rel='bookmark' title='Permanent Link: Windows Vista &#8211; Switch User Shortcut'>Windows Vista &#8211; Switch User Shortcut</a></li>
<li><a href='http://dancingsamurai.ca/2009/08/27/adobe-premiere-elements-project-settings-problem/' rel='bookmark' title='Permanent Link: Adobe Premiere Elements &#8211; Project settings problem'>Adobe Premiere Elements &#8211; Project settings problem</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2008/11/15/new-toshiba-laptop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gaming&#8230;</title>
		<link>http://dancingsamurai.ca/2008/10/03/gaming/</link>
		<comments>http://dancingsamurai.ca/2008/10/03/gaming/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 04:40:06 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[Fun and Games]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/?p=975</guid>
		<description><![CDATA[I went to visit my brother in Ottawa recently &#8211; hadn&#8217;t seen him in some time. While there for the weekend, he convinced me to put EVE Online aside for a moment and try this different online MMO, Mabinogi. It&#8217;s pretty fun &#8211; a little different combat system, but otherwise pretty much standard. I think [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2007/01/16/taking-apart-my-zire-72/' rel='bookmark' title='Permanent Link: Taking apart my Zire 72'>Taking apart my Zire 72</a></li>
<li><a href='http://dancingsamurai.ca/2008/11/01/some-gaming-links/' rel='bookmark' title='Permanent Link: Some Gaming links&#8230;'>Some Gaming links&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2010/02/04/birthday-updates/' rel='bookmark' title='Permanent Link: Birthday updates&#8230;'>Birthday updates&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I went to visit my brother in Ottawa recently &#8211; hadn&#8217;t seen him in some time. While there for the weekend, he convinced me to put <a href="http://www.eve-online.com/">EVE Online</a> aside for a moment and try this different online MMO, <a href="http://mabinogi.nexon.net/">Mabinogi</a>. </p>
<p><span id="more-975"></span></p>
<p>It&#8217;s pretty fun &#8211; a little different combat system, but otherwise pretty much standard. I think I&#8217;ll keep playing for a while though, because Mabinogi has what most other games I&#8217;ve played don&#8217;t &#8211; people I know in real life (TM) actually playing them!!</p>
<p>&#8230; that being said, I haven&#8217;t had a chance to log in all week, with re-installing my computer and that pesky residency thing and all that. *sigh*</p>
<p>Oh, and because of the combat system (or rather, probably the developer&#8217;s implementation thereof) lag really screws you over. On the forums they suggest disabling the Nagle algorithm, like so:</p>
<blockquote>
<p>http://projectelite.freeforums.org/lag-fix-darkmgl-s-fix-t333.html</p>
<p>This is not a joke. I have been suffering from major lag for a long time, and I have FOUND the problem.</p>
<p>The issue is something known as the &#8220;Nagle Algorithm&#8221;. Anyways I&#8217;ll keep it simple, this algorithm was created years ago as a way of allowing a steady stream of data to use low bandwidth. It was designed for older dial up modems to prevent online games and other things sending large numbers of small packets from filling up your entire bandwidth sending &#8220;ACK Packets&#8221;. What this does is automatically delay your computer from responding to a single packet by 200ms which allows your computer to respond to multiple packets at once using less bandwidth. What this essentially does, is add up to 200ms to your lag. If you want to know more, do some googling; I don&#8217;t want to bore you.</p>
<p>Anyways, if you are on a modern broadband connection, you can DRASTICALLY improve your Mabinogi lag by disabling this algorithm. I am unsure of how to do this in Windows Vista, but in Windows XP it is a simple registry edit.</p>
<p>1. Run Regedit</p>
<p>2. Browse to HKEY_LOCAL_MACHINE \SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\</p>
<p>3. It gets tricky here, there be a bunch of Folders with letters and numbers under this Key, you need to find the one that is your network adapter. Browse them one at a time and look for the ones with similar settings to your network, such as if you have an IP address or a Gateway manually set. If you are unsure, you could always just try adding the line to all of them.<br />
4. Add a DWORD named TcpAckFrequency This is Case Sensitive. If it is already there, skip to step 5.<br />
5. Set the Value of the DWORD to 1<br />
6. Reboot your PC</p>
<p>After this, the Nagle Algorithm will be disabled.</p>
<p>If you wish to test your lag, the best way to do it is by casting the Healing spell. Try casting all 5 charges of your healing spell before this fix, then after. I guarantee you&#8217;ll cast them twice as fast after this fix if you have had lag issues or are living on the east coast.</p>
<p>For more information read: http://smallvoid.com/article/winnt-nagle-algorithm.html</p>
<p>I was ready to quit this game due to lag issues until I found this. Now all of my problems have completely gone away. If this improves your game performance, please share!</p>
<p>Original Post = http://forum.nexon.net/Mabinogi/forums/thread/919604.aspx</p></blockquote>
<p>Well, off to bed now, another busy day tomorrow!</p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2007/01/16/taking-apart-my-zire-72/' rel='bookmark' title='Permanent Link: Taking apart my Zire 72'>Taking apart my Zire 72</a></li>
<li><a href='http://dancingsamurai.ca/2008/11/01/some-gaming-links/' rel='bookmark' title='Permanent Link: Some Gaming links&#8230;'>Some Gaming links&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2010/02/04/birthday-updates/' rel='bookmark' title='Permanent Link: Birthday updates&#8230;'>Birthday updates&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2008/10/03/gaming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remotely accessing the desktop&#8230;</title>
		<link>http://dancingsamurai.ca/2007/12/23/remotely-accessing-the-desktop/</link>
		<comments>http://dancingsamurai.ca/2007/12/23/remotely-accessing-the-desktop/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 17:12:02 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/2007/12/23/remotely-accessing-the-desktop/</guid>
		<description><![CDATA[Sometimes I need to access my home computer from work. Probably the easiest way to do this is with a Remote Desktop solution &#8212; there are lots out there. Windows XP has Microsoft&#8217;s &#8220;Remote Desktop&#8221; &#8212; which apparently is a pretty insecure solution. Also, most of the computers at the hospital are running Win2000, which [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2010/04/03/more-ways-to-get-around-an-annoying-firewall/' rel='bookmark' title='Permanent Link: More ways to get around an annoying firewall'>More ways to get around an annoying firewall</a></li>
<li><a href='http://dancingsamurai.ca/2006/09/08/quick-fix-for-missing-desktop-icon/' rel='bookmark' title='Permanent Link: Quick Fix for Missing &#8216;Desktop&#8217; Icon'>Quick Fix for Missing &#8216;Desktop&#8217; Icon</a></li>
<li><a href='http://dancingsamurai.ca/2004/06/15/wireless-lan-goodness/' rel='bookmark' title='Permanent Link: Wireless LAN goodness'>Wireless LAN goodness</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Sometimes I need to access my home computer from work. Probably the easiest way to do this is with a Remote Desktop solution &#8212; there are lots out there. Windows XP has Microsoft&#8217;s &#8220;Remote Desktop&#8221; &#8212; which apparently is a pretty insecure solution. Also, most of the computers at the hospital are running Win2000, which doesn&#8217;t have the tool installed by default.</p>
<p><span id="more-645"></span></p>
<p>The other issue with that is, unlike &#8216;Remote Assistance&#8217;, the person at the local end is kicked off the machine&#8230;</p>
<p>Anyway, I poked around on the Internet for a while and found <a href="http://www.tightvnc.com/">TightVNC</a>. Perfect!</p>
<p>I still need to figure out a way to encase the VNC connection in an SSH tunnel (when I had a linux server on my LAN this was easy, but now I just have Microsoft machines&#8230; ick), but for now I can connect easily. <a href="https://secure.logmein.com/products/hamachi/vpn.asp?lang=en">Hamachi </a>actually is a good way to do this &#8211; except I may have to configure some port forwarding on my router for it to work from behind a work firewall without going through Hamachi&#8217;s proxies (low-speed, since I haven&#8217;t paid them for a membership).</p>
<p>The only hiccup I ran into was, because of the firewalls at work, I had to listen on a non-standard port. I couldn&#8217;t for the life of me figure out how to get VNC Viewer to connect on an alternate port &#8212; the port was open, I could telnet to it, but the !@$!% thing wouldn&#8217;t connect.</p>
<p>I guess I should have read the documentation. For some reason, despite standard notation being <em>server:port</em>, the VNC viewer you need to use <em>server::port</em> (two colons). Crazy. Anyway, that works.</p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2010/04/03/more-ways-to-get-around-an-annoying-firewall/' rel='bookmark' title='Permanent Link: More ways to get around an annoying firewall'>More ways to get around an annoying firewall</a></li>
<li><a href='http://dancingsamurai.ca/2006/09/08/quick-fix-for-missing-desktop-icon/' rel='bookmark' title='Permanent Link: Quick Fix for Missing &#8216;Desktop&#8217; Icon'>Quick Fix for Missing &#8216;Desktop&#8217; Icon</a></li>
<li><a href='http://dancingsamurai.ca/2004/06/15/wireless-lan-goodness/' rel='bookmark' title='Permanent Link: Wireless LAN goodness'>Wireless LAN goodness</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2007/12/23/remotely-accessing-the-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DV Video Editing</title>
		<link>http://dancingsamurai.ca/2007/06/17/dv-video-editing/</link>
		<comments>http://dancingsamurai.ca/2007/06/17/dv-video-editing/#comments</comments>
		<pubDate>Mon, 18 Jun 2007 01:48:31 +0000</pubDate>
		<dc:creator>DancingSamurai</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dancingsamurai.ca/2007/06/17/dv-video-editing/</guid>
		<description><![CDATA[10271 So I&#8217;ve finally taken the time to edit the piles of footage I&#8217;ve filmed over the years with my camcorder. Most of the original footage I had backed up to DVD already, but some was still lying around vulnerable on my HDD. In going to back it up, I noticed I had several files [...]


Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2009/07/05/video-editing-issues/' rel='bookmark' title='Permanent Link: Video Editing Issues&#8230;'>Video Editing Issues&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2006/01/17/offline-files/' rel='bookmark' title='Permanent Link: Offline Files'>Offline Files</a></li>
<li><a href='http://dancingsamurai.ca/2004/04/06/video-capture-stuff-fixed/' rel='bookmark' title='Permanent Link: Video Capture Stuff fixed..'>Video Capture Stuff fixed..</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="g2image_float_right"><wpg2id>10271</wpg2id></div>
<p>So I&#8217;ve finally taken the time to edit the piles of footage I&#8217;ve filmed over the years with my camcorder. Most of the original footage I had backed up to DVD already, but some was still lying around vulnerable on my HDD. In going to back it up, I noticed I had several files where Adobe Premiere&#8217;s scene detection had failed at the end of the tape, and I had a file with about 30 minutes of blank tape (which took up some 6 GB of disk space). This had been a problem for me before but I was too lazy to look into it &#8212; my initial attempts at opening it with VirtualDub gave me an error. It complained about not having a VfW (Video for Windows) driver for the DV codec.</p>
<p>So I just burned those humungous files &#8212; sometimes requiring archiving for some files that were bigger than 4.3 GB (lately, 8 GB with my DL burner&#8230;)</p>
<p>I should have turned to google sooner. Apparently there is a <a href="http://www.free-codecs.com/download/Panasonic_DV_Codec.htm">free DV VfW codec</a>. It took me 10 seconds to download and install, and now all those AVIs open in <a href="http://www.doom9.org/index.html?/software.htm">VirtualDubMod</a> without a hitch &#8212; making it a cinch to <a href="http://www.divx-digest.com/articles/cutavi.html">remove the dead tape</a>.</p>
<p>*sigh*. That&#8217;s what I get for being lazy, I guess.</p>
<p>Local cache: <a href='http://dancingsamurai.ca/wp-content/uploads/2007/06/pdvcodec.zip' title='Panasonic DV VfW codec'>Panasonic DV VfW codec</a></p>


<p>Possibly related posts:<ol><li><a href='http://dancingsamurai.ca/2009/07/05/video-editing-issues/' rel='bookmark' title='Permanent Link: Video Editing Issues&#8230;'>Video Editing Issues&#8230;</a></li>
<li><a href='http://dancingsamurai.ca/2006/01/17/offline-files/' rel='bookmark' title='Permanent Link: Offline Files'>Offline Files</a></li>
<li><a href='http://dancingsamurai.ca/2004/04/06/video-capture-stuff-fixed/' rel='bookmark' title='Permanent Link: Video Capture Stuff fixed..'>Video Capture Stuff fixed..</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dancingsamurai.ca/2007/06/17/dv-video-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 3.408 seconds -->
