<?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>Sniptools &#187; Windows</title> <atom:link href="http://sniptools.com/tag/windows/feed/" rel="self" type="application/rss+xml" /><link>http://sniptools.com</link> <description>Design &#38; Technology Observations</description> <lastBuildDate>Tue, 15 May 2012 09:23:41 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Recovering Bad Hard Disks (CRC on Windows, Error –36 on Mac OSX)</title><link>http://sniptools.com/windows/fix-crc-hard-disk-error-recover-data</link> <comments>http://sniptools.com/windows/fix-crc-hard-disk-error-recover-data#comments</comments> <pubDate>Sun, 05 Oct 2008 02:58:23 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[Mac OSX]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[hard disk]]></category> <category><![CDATA[OSX]]></category> <category><![CDATA[storage]]></category><guid
isPermaLink="false">http://sniptools.com/?p=423</guid> <description><![CDATA[So you've been visited by the much dreaded CRC — Cyclical Redundancy Check error, most likely encountered while copying files between hard disks. On Mac OSX, this will usually appear as some cryptic permissions message with an Error –36. To cut the geek-speak, this simply means that you hard disk may have certain files that [...]]]></description> <content:encoded><![CDATA[<p>So you've been visited by the much dreaded CRC — <a
href="http://en.wikipedia.org/wiki/Cyclic_redundancy_check">Cyclical Redundancy Check error</a>, most likely encountered while copying files between hard disks. On Mac OSX, this will usually appear as some cryptic permissions message with an <a
href="http://support.apple.com/kb/HT1618">Error –36</a>.</p><p>To cut the geek-speak, this simply means that you hard disk may have certain files that may have "bad sectors", or are corrupted in other words.</p><p>Fortunately, this is a common enough problem in our technically advanced world of external storage. I recommend solving this on Windows (I use both XP and OSX Leopard at the time of this writing).</p><h3>Step 1: CHKDSK</h3><p>Use what Windows offers you by default. The <code>chkdsk</code> command. Just open an MS-DOS command prompt window and go to the drive you wish to check (I'm hoping you already know your way around a command prompt; if you don't please consider Step 2 below). With the command prompt showing the drive letter of the disk you wish to check, enter this command:</p><pre>e:&gt; chkdsk /R</pre><p>Here, "<code>e:</code>" is my drive to be checked. The "<code>/R</code>" attribute asks the <code>chkdsk</code> command to "recover" whatever bad sectors it finds during its scan. In most cases, and if you're lucky, this ought to do it.</p><h3>Step 2: CDCheck (Free)</h3><p>Only if the problem you were facing still remains after you have run the chkdsk command, should you consider doing this. This is <a
href="http://www.kvipu.com/CDCheck/helplink.php?helpfn=overview">a freeware program</a> that makes it super-easy to check/recover your disk. It can be any disk–your current hard disk, a CD or a DVD, or even an external hard disk. The interface is pretty simple as you can see in the <a
href="http://www.kvipu.com/CDCheck/helplink.php?helpfn=screenshots">screenshots here</a>.</p><h3>Step 3: SpinRite (US$ 90)</h3><p>If all else has failed, just save yourself some heartburn and go straight to SpinRite. This is hands-down the <a
href="http://www.grc.com/sr/spinrite.htm">best software for this purpose</a>, as anyone in a dire need of data recovery will confirm. I would trust any piece of software from GRC. Only catch: it's not free, but when you use it you know why it's worth every last cent. It gives you a simple option to save an ISO file, which you can then easily burn on to a CD using any CD writer tool (including Windows' own right-click). Then reboot your machine so it starts from the CD. SpinRite will automatically report and recover whatever is recoverable.</p><h2>Next Steps</h2><p>Basically, a CRC error is the beginning of the end. If this is on an external hard disk, I highly recommend that you consider backing up the data immediately.</p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/windows/fix-crc-hard-disk-error-recover-data/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Save SSH password for use in &quot;Terminal&quot; (OSX or *Nix)</title><link>http://sniptools.com/mac-osx/save-ssh-password-in-terminal</link> <comments>http://sniptools.com/mac-osx/save-ssh-password-in-terminal#comments</comments> <pubDate>Sat, 19 Jul 2008 04:37:39 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[Mac OSX]]></category> <category><![CDATA[System Maintenance]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[OSX]]></category> <category><![CDATA[SecureCRT]]></category> <category><![CDATA[SSH]]></category> <category><![CDATA[Terminal]]></category> <category><![CDATA[Tips/Tricks]]></category> <category><![CDATA[Windows]]></category><guid
isPermaLink="false">http://sniptools.com/cms/?p=163</guid> <description><![CDATA[How to set up time-saving shortcuts for SSH in Mac OSX or Linux, a bit like SecureCRT on Windows. ]]></description> <content:encoded><![CDATA[<p>Anyone who runs hosted remote servers and has to log into remote terminals for regular use, it is vital to have shortcuts that allow for quick login. SSH2 is the recommended way.</p><p>On Windows, there is the fantastic SSH2 tool <a
href="http://www.vandyke.com/products/securecrt/">SecureCRT</a>. Or if you're cash crunched, a combination of Putty and Putty Connection Manager works for many.</p><p>On Mac OSX and Unix/Linux systems, one doesn't truly need an SSH client at all, because the "<a
href="http://www.osxterminal.com/">Terminal</a>" application is inbuilt. People talk of iTerm and such, but I have still to see a value add for such tools.</p><p>But one does miss the convenience of SecureCRT on OSX, because I have still to find a true SecureCRT alternative for the Mac platform. Something that allows me to make pre-determined connections so I can just click on them to connect (which tools like <a
href="http://www.grepsoft.net/jellyfissh.html">JellyfiSSH</a> do) and then logs me in directly without prompting for a password (which JellyfiSHH does not do).</p><p>So I have simply made aliases in my [code].profile[/code] file, which gets executed everytime you start your Terminal window (so it's a good place to put your shortcuts and any code you wish to execute when the terminal starts, such as paths).</p><ol><li>Start the Terminal.</li><li>Open the profile file for the current user (you).</li><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;">pico .profile</pre></div></div><li>Enter a new line for our shortcut.</li><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">s</span>=<span style="color: #ff0000;">'ssh -2 -p 22 user@host.com'</span></pre></div></div></ol><p>Quick explanation for that command in step 3. The letter "s" is the shortcut I make for connecting to the sniptools.com server. Change it to what you wish. This will mean that when I start Terminal, all I need to do is type "s" and it connects me via SSH to the sniptools.com server. The "-p" switch is an important one because some of us with paranoid security settings might have a different port number than the default port 22 for secure SSH. The rest user/host stuff is self-explanatory. The "-2" is to force SSH2 connections instead of older vanilla SSH.</p><p>Now. Save the profile file and source it to try it out:</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">source</span> .profile</pre></div></div><p>Sourcing is only for this one time, for your current Terminal window, which had already executed the profile file *before* we added this alias. When you start a new Terminal session, these aliases et al will be automatically set for you.</p><p>Done. Now your profile has the alias for "s". From now when you type "s" in your Terminal, it will connect, but it will ask you for a password. To get rid of the nagging password, we need to create public authentication key for the domain. This, in fact is what SecureCRT does behind the scenes on Windows too.</p><p>Here are the steps to accomplish this. Run these <strong>one-time</strong> commands in order from the Terminal window.</p><div
class="wp_syntax"><table><tr><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
</pre></td><td
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># generate pub and priv keys, leave the passphrase empty</span>
<span style="color: #666666; font-style: italic;"># (simply press ENTER when asked for it)</span>
<span style="color: #c20cb9; font-weight: bold;">ssh-keygen</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#copy the pub key to the remote computer</span>
<span style="color: #666666; font-style: italic;">#(change port number if different from the usual 22)</span>
<span style="color: #666666; font-style: italic;">#change &quot;user&quot; to your user name</span>
<span style="color: #666666; font-style: italic;">#change &quot;host&quot; to your domain name</span>
<span style="color: #c20cb9; font-weight: bold;">scp</span> <span style="color: #660033;">-P</span> <span style="color: #000000;">22</span> ~<span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>id_rsa.pub user<span style="color: #000000; font-weight: bold;">@</span>host:~<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#log on to the remote computer</span>
<span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #660033;">-p</span> <span style="color: #000000;">22</span> user<span style="color: #000000; font-weight: bold;">@</span>host
&nbsp;
<span style="color: #666666; font-style: italic;">#create the .ssh directory in the root login directory, if it doesn't already exist</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> .ssh
&nbsp;
<span style="color: #666666; font-style: italic;">#append key to file</span>
<span style="color: #c20cb9; font-weight: bold;">cat</span> id_rsa.pub <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> ~<span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>authorized_keys
&nbsp;
<span style="color: #666666; font-style: italic;">#delete the public key file, no longer needed</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> id_rsa.pub
&nbsp;
<span style="color: #666666; font-style: italic;">#log off the remote server</span>
<span style="color: #7a0874; font-weight: bold;">exit</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#logon to the remote server, without password prompt</span>
<span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #660033;">-2</span> <span style="color: #660033;">-p</span> <span style="color: #000000;">22</span> user<span style="color: #000000; font-weight: bold;">@</span>host</pre></td></tr></table></div><p>That's it. This is a huge timesaver. Now all I need to do to login to the sniptools.com server is type one letter, "s" in the Terminal, and I'm on! Follow these instructions for each host you connect to on a regular basis and you'll love the convenience henceforth.</p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/mac-osx/save-ssh-password-in-terminal/feed/</wfw:commentRss> <slash:comments>19</slash:comments> </item> <item><title>Customize Microsoft Office 2007 blue ribbon UI to Office 2003</title><link>http://sniptools.com/windows/customize-microsoft-office-2007-blue-ribbon-ui-to-office-2003</link> <comments>http://sniptools.com/windows/customize-microsoft-office-2007-blue-ribbon-ui-to-office-2003#comments</comments> <pubDate>Thu, 17 Jul 2008 17:34:17 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[System Maintenance]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Excel]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[MS Word]]></category> <category><![CDATA[Office]]></category> <category><![CDATA[Powerpoint]]></category> <category><![CDATA[Tips/Tricks]]></category><guid
isPermaLink="false">http://sniptools.com/cms/?p=160</guid> <description><![CDATA[Take the hideous new blue look of Microsoft Office 2007 "blue ribbon" and make it more palatable to eyes that are accustomed to Office 2003. ]]></description> <content:encoded><![CDATA[<p>So I finally got around to installing Office 2007. This is what it looked like:</p><div
class="wp-caption aligncenter" style="width: 510px"><img
title="Office 2007 - First Look" src="http://farm4.static.flickr.com/3034/2677351944_1319c8a9af.jpg" alt="Office 2007 - First Look" width="500" height="305" /><p
class="wp-caption-text">Office 2007 — First Look</p></div><p>Now I don't know about you, but to me this bloo-ey look is hideous.I am not on Vista yet, by choice, so that sky blue gradation thing going on the top was not my cuppa. Why software designed for a certain platform cannot honor a user's general system UI preferences is beyond me, but Office 2007 does insist on having it's own look and feel. As though the new ribbon clutter was not enough.</p><p>I wanted to get rid of those ribbons to begin with. So I downloaded the the free version of <a
href="http://pschmid.net/office2007/ribboncustomizer/index.php">Ribbon Customizer</a>. They offer some Pro version but it does things I don't particularly care about. Alternatively, there is <a
href="http://toolbartoggle.com/">ToolbarToggle</a>, but on their site I did not seem to catch a free version, and I was unwilling to pay for this stuff.</p><p>The RibbonCustomizer install is pretty straightforward and when you start Word 2007 after its installation, here is how Word looks. There is an additional item in the View menu at the end:</p><div
class="wp-caption aligncenter" style="width: 730px"><img
title="Word 2007 after RibbonCustomizer" src="http://farm4.static.flickr.com/3146/2676534653_6594a869a3_o.gif" alt="Word 2007 after RibbonCustomizer" width="720" height="391" /><p
class="wp-caption-text">Word 2007 after RibbonCustomizer</p></div><p>I clicked on the obvious menu option to make ClassicUI my first menu tab. This is what this does:</p><div
class="wp-caption aligncenter" style="width: 819px"><img
title="Classic 2003 interface" src="http://farm4.static.flickr.com/3146/2677351776_0d12dcc876_o.gif" alt="Classic 2003 interface" width="809" height="494" /><p
class="wp-caption-text">Classic 2003 interface</p></div><p>That's a good start, but I now wanted to clean up some other stuff. Fortunately, Microsoft chose to include the additional "Minimize Ribbon" feature, which contextually hides the ribbon when your focus is on writing inside the document. So let's do that:</p><div
class="wp-caption aligncenter" style="width: 819px"><img
title="Minimize the Word 2007 ribbon" src="http://farm4.static.flickr.com/3237/2676534517_1552a04ccb_o.gif" alt="Minimize the Word 2007 ribbon" width="809" height="494" /><p
class="wp-caption-text">Minimize the Word 2007 ribbon</p></div><p>Now to get rid of the forced Blue. Click on the "More Commands" option in the menu shown in the screenshot above. Choose Silver and make other adjustments to your taste:</p><div
class="wp-caption aligncenter" style="width: 628px"><img
title="Choose silver" src="http://farm4.static.flickr.com/3021/2677351580_16e1a9b57a_o.gif" alt="Choose silver" width="618" height="373" /><p
class="wp-caption-text">Choose silver</p></div><p>Now this is what Word 2007 looks like, with minimized ribbon, classic 2003 UI, and a somewhat less intrusive silver gradient:</p><p><img
class="aligncenter" title="Office 2007 with minimized ribbon, classic 2003 UI, and silver color" src="http://farm4.static.flickr.com/3293/2676534383_437b64de15_o.gif" alt="" width="1001" height="408" /></p><p>Phew. I also recommend setting the default "Save" options as your regular Word ".doc" instead of the new ".docx" (or other .xlsx and .pptx equivalents) as that is a bit more standard even today in 2008.</p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/windows/customize-microsoft-office-2007-blue-ribbon-ui-to-office-2003/feed/</wfw:commentRss> <slash:comments>14</slash:comments> </item> <item><title>Apple Safari 3 Beta for Windows</title><link>http://sniptools.com/webtools/apple-safari-beta-for-windows</link> <comments>http://sniptools.com/webtools/apple-safari-beta-for-windows#comments</comments> <pubDate>Tue, 12 Jun 2007 11:33:10 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[Mac OSX]]></category> <category><![CDATA[Web Tools]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[browsers]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[Mac]]></category> <category><![CDATA[OSX]]></category> <category><![CDATA[Safari]]></category> <category><![CDATA[Tools/Reviews]]></category> <category><![CDATA[Windows]]></category><guid
isPermaLink="false">http://sniptools.com/cms/?p=149</guid> <description><![CDATA[apple safari beta for windows
]]></description> <content:encoded><![CDATA[<p>Finally, we can (hopefully) test Safari on Windows too, but it remains to be seen how this compares with Firefox and its battalion of extensions and the ever-blazing Opera.</p><p><span
id="more-149"></span></p><h3>Apple is on to some exciting things. After the iPhone and the new eagerly awaited of the Max OSX, it even announced <a
href="http://www.apple.com/safari/download/">Safari 3 Beta</a> for Windows!</h3><p>The install was painless. Especially if you choose the no-Quicktime option (which Apple has no qualms about plugging shamelessly with almost every download it offers). I was also asked during the installation for '<a
href="http://www.apple.com/support/downloads/bonjourforwindows.html">Bonjour</a>' — a tool that supposedly allows better sharing of things such as printers.</p><h3>The immediate uninstall</h3><p>When I started the browser, it came up in some weird language. Greek, or Russian, or a specific kind of Celt. Who knows. I tried to reinstall, and it insisted on removing Safari first, which is ok, but it also required me to close Firefox, SecureCRT (for SSH) and WinSCP (for SFTP). I like my browsers to be independent of each other thank you. Opera never bothers with what else I am using.</p><h3>The second and final uninstall</h3><p>After the re-install, it showed up yet again in the strange language. Nowhere on my system is this language set up. All my browsers are set up to show only English, but support Japanese and Chinese. I guess it's "beta" for a reason. It surely has a long way to go if it wants to be anywhere near decent contention to FF and Opera. Below's a snapshot of what this gunk looks like on my machine:</p><div
class="indent"> <img
alt="safari-windows-error.gif" src="http://sniptools.com/safari-windows-error.gif?348443" width="485" height="308" /></div><p>Turns out these junk characters are not really a language at all. When I try to type something in the location bar, it comes up in this junk lingo. I try and rummage through these nonsensical options to see if one of the menus or submenus may have "English" as an option, but no luck.</p><h3>Conclusion</h3><p>This mutt is off my PC before it could even bark. So long, Safari, and thanks for all the fish.</p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/webtools/apple-safari-beta-for-windows/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>FileBox Extender for Windows</title><link>http://sniptools.com/windows/filebox-extender-for-windows</link> <comments>http://sniptools.com/windows/filebox-extender-for-windows#comments</comments> <pubDate>Thu, 03 May 2007 13:36:37 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[Windows]]></category> <category><![CDATA[Explorer]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Tools/Reviews]]></category><guid
isPermaLink="false">http://sniptools.com/cms/?p=139</guid> <description><![CDATA[filebox extender for windows
]]></description> <content:encoded><![CDATA[<p>Very useful utility for the file opener/saver dialog boxes in Windows.</p><p>Here's a nifty little utility that allows you to set most often-used folders on your PC and access them quickly from a FILE OPEN dialogue box.</p><div
class="indent"><a
href="http://www.hyperionics.com/files/index.asp"><strong>FileBox Extender</strong><br
/> <img
src="http://sniptools.com/av/filebox.gif?348443" alt="filebox.gif" width="466" height="338" /><br
/> </a></div><p>These little icons appear in all the File –&gt; Open boxes in Windows. Which is very handy. Among the several customizations you can make to this oft-used file dialog box is the ability to automatically sort the file names by name, date, size, or type, and the ability to see the file names in Details or Thumbnails views. (Btw, the skin you see in that screenshot above is from <a
href="http://sniptools.com/tipstricks/flyakiteosx-mac-gui-for-windows">Flyakiteosx</a>).</p><h3>How to Change FbX Button Images</h3><p>You can tell a utility is well coded if you can customize it to your tastes. I have changed the icons that come with the tool as default (which are somewhat Win3.1-ish). This is simple. In the folder where you installed FileBox eXtender, there's a sub-folder named ICONS. Inside that are several standard format Windows icon files (with the extension .ICO). Copy a pair of these files into the main program folder, and then rename them to FAVORITE.ICO and RECENT.ICO. Now exit and restart FileBox eXtender. (In some cases you will have to reboot your machine—exiting and restarting the program may not be enough to effect the change). That's it. Your new icons should now appear.</p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/windows/filebox-extender-for-windows/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Comodo Firewall Pro: Free Zonealarm Replacement</title><link>http://sniptools.com/windows/comodo-firewall-pro-free-zonealarm-replacement</link> <comments>http://sniptools.com/windows/comodo-firewall-pro-free-zonealarm-replacement#comments</comments> <pubDate>Fri, 30 Mar 2007 12:08:27 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[System Maintenance]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[antivirus]]></category> <category><![CDATA[firewall]]></category> <category><![CDATA[security]]></category> <category><![CDATA[Tools/Reviews]]></category><guid
isPermaLink="false">http://sniptools.com/cms/?p=133</guid> <description><![CDATA[comodo firewall pro zonealarm
]]></description> <content:encoded><![CDATA[<p>A lovely firewall product that hogs lesser resources than the ubiquitous Zone Alarm, provides better reporting and protection options, and is still completely free.</p><p>Firewalls are dime a dozen these days. When the concept of a firewall first became important on home computers, with the advent of real high-speed broadband, Tiny Personal Firewall was the best. It even had <a
href="http://www.grc.com/lt/scoreboard.htm">the approval of experts</a>. Unfortunately, CA stepped in and <a
href="http://www.ca.com/tinysoftware/">gobbled up</a> the company.</p><p>Zone Alarm was already a strong contender, but with Tiny gone, it soon became the de-facto firewall on the machine of users who knew better than to let this computer flounder under the bloatware of Mcafee or Symantec.</p><p>Unfortunately, of late, Zone Alarm has been a bit of a hog on my machine. It's a Core2Duo, which means software such as Zone Alarm should cheerfully work in parallel with no fuss. <a
href="http://snipurl.com/avg_free">AVG</a> for instance scans my entire machine for an hour  without my so much as bothering about it.</p><p>It is in this context that I came across <a
href="http://www.personalfirewall.comodo.com/">Comodo Firewall</a>, one that is recommended by more than a few techies. Being a born tinkerer, I was off in a jiffy to download the thing. And short story: it rocks.</p><p>Below's a screenshot. It looks more professional than even Zone Alarm Pro. There are more options, explained more clearly.</p><p><img
src="http://sniptools.com/comodo.jpg?348443" alt="" width="587" height="451" /></p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/windows/comodo-firewall-pro-free-zonealarm-replacement/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Convert MKV to AVI for free (on Windows and OSX)</title><link>http://sniptools.com/windows/convert-mkv-to-avi-for-free-on-windows-and-osx</link> <comments>http://sniptools.com/windows/convert-mkv-to-avi-for-free-on-windows-and-osx#comments</comments> <pubDate>Fri, 30 Mar 2007 11:13:50 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[Audio/Video]]></category> <category><![CDATA[Mac OSX]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[OSX]]></category> <category><![CDATA[Tools/Reviews]]></category> <category><![CDATA[video]]></category><guid
isPermaLink="false">http://sniptools.com/?p=335</guid> <description><![CDATA[The MKV format, although never originally intended to share stuff online because it's large and really high quality, has now become standard. Especially now with Blu-Ray becoming a standard. But some of us are happy storing AVI for our own use especially if we can have it in decent-enough quality (MKV files are usually 1GB [...]]]></description> <content:encoded><![CDATA[<p>The MKV format, although never originally intended to share stuff online because it's large and really high quality, has now become standard. Especially now with Blu-Ray becoming a standard. But some of us are happy storing AVI for our own use especially if we can have it in decent-enough quality (MKV files are usually 1GB or more for, say, a film).</p><p>Google is full of tools and utilities that allow MKV to AVI conversion. Many of them are shareware. You download them free but then you have to cough up $29.99.</p><p>I have found the FREE tool, <a
href="http://sourceforge.net/projects/alltoavi/">All2AVI ( http://sourceforge.net/projects/alltoavi/ )</a> does the job and does it superbly. It's fast, free, and the conversion from MKV and other formats to AVI happens pretty efficiently and reliably.</p><p>If you're on OSX, you can use VisualHub or Submerge, but both of them are a bit unreliable. <a
href="http://www.techspansion.com/visualhub/">VisualHub</a> in particular is a fantastic way to do any conversion on Mac OSX, but if it collapses with a cryptic "Sorry, could not convert for some reason", then you may wish to use AlltoAVI inside an XP virtual machine.</p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/windows/convert-mkv-to-avi-for-free-on-windows-and-osx/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>MacOSX interface on Windows with Flyakite</title><link>http://sniptools.com/windows/flyakiteosx-mac-gui-for-windows</link> <comments>http://sniptools.com/windows/flyakiteosx-mac-gui-for-windows#comments</comments> <pubDate>Thu, 21 Jul 2005 06:42:05 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[System Maintenance]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Flyakite]]></category> <category><![CDATA[Mac]]></category> <category><![CDATA[OSX]]></category> <category><![CDATA[Tips/Tricks]]></category><guid
isPermaLink="false">http://sniptools.com/cms/?p=124</guid> <description><![CDATA[flyakiteosx mac gui for windows
]]></description> <content:encoded><![CDATA[<p>If not to make things simpler for you, then for the sheer delight of it, it's kind of fun to make your Windows PC look like a Mac. A full theme from FlyakiteOSX, sounds and all, makes it a breeze.</p><p>Want a Mac look on your Windows machine? Skins and themes would be nice, but there's more to that when you want to REALLY emulate a Mac OSX interface entirely. There are plenty of programs available to emulate specific features of OSX, e.g. Finder, icons, etc [<a
href="http://www.osx-e.com/downloads/icons/1000_pngs.html">example</a>].</p><p>But Flyakite OSX is a project that's looking mature, and it comes with a very complete theme, including sounds and mouse cursors and Explorer customization, things you don't typically expect from a simple 'theme'.</p><div
class="quote"><a
href="http://osx.portraitofakite.com/">Download Flyakite OSX here</a></div><p>The website goes for a Mac look itself, which is a bit painful, but it's worth the download.</p><h3>Before you go for it, some caveats</h3><ol><li>The performance of your machine in general may be affected, of course. Not too much though.</li><li>The theme does fundamentally change some core files like Explorer.exe but (a) it makes a backup so you can go back with a simple uninstall, and (b) it doesn't screw up any additional functionality like my Groove button on my Explorer bar.</li><li>I don't like shadows under my windows, but that seems to built-in in the skin.</li><li>Some things like Windows Media Player will not change. WMP has its own skin, which remains untouched.</li></ol> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/windows/flyakiteosx-mac-gui-for-windows/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Windows XP Home → Windows XP Pro</title><link>http://sniptools.com/vault/upgrade-windows-xp-home-to-xp-pro</link> <comments>http://sniptools.com/vault/upgrade-windows-xp-home-to-xp-pro#comments</comments> <pubDate>Wed, 01 Jun 2005 09:49:24 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[Miscellaneous]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[system]]></category> <category><![CDATA[Tips/Tricks]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[XP]]></category><guid
isPermaLink="false">http://sniptools.com/cms/?p=104</guid> <description><![CDATA[upgrade windows xp home to xp pro
]]></description> <content:encoded><![CDATA[<p>A hack to upgrade without, ahem, upgrading.</p><p><span
id="more-104"></span></p><p>Own Microsoft Windows XP Home but would like to own Windows XP Pro? Gizmodo is running a simple hack that apparently upgrades the system inadvertently.</p><p>No point duplicating it. <a
href="http://www.gizmodo.com/gadgets/software/howto-change-windows-xp-home-to-windows-xp-pro-105486.php"> Read it at Gizmodo</a>.</p><p>YMMV, and of course, I do not endorse bootlegging. Enjoy <img
src="http://sniptools.com/cms/wp-includes/images/smilies/icon_smile.gif?348443" alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/vault/upgrade-windows-xp-home-to-xp-pro/feed/</wfw:commentRss> <slash:comments>24</slash:comments> </item> <item><title>Rainlendar: Desktop Calendar</title><link>http://sniptools.com/vault/rainlendar-cute-windows-desktop-calendar</link> <comments>http://sniptools.com/vault/rainlendar-cute-windows-desktop-calendar#comments</comments> <pubDate>Sat, 21 May 2005 02:36:48 +0000</pubDate> <dc:creator>Shanx</dc:creator> <category><![CDATA[Miscellaneous]]></category> <category><![CDATA[calendar]]></category> <category><![CDATA[Tools/Reviews]]></category> <category><![CDATA[utilities]]></category> <category><![CDATA[Windows]]></category><guid
isPermaLink="false">http://sniptools.com/cms/?p=103</guid> <description><![CDATA[rainlendar cute windows desktop calendar
]]></description> <content:encoded><![CDATA[<p>Nifty little desktop calendar for the Windows desktop, with a negligible memory footprint.</p><p><span
id="more-103"></span></p><p>A calendar on the desktop is a handy feature. My option to date has been to settle for <a
href="http://www.webshots.com/">Webshots</a>, which is a nifty screensaver rotator utility and all that, but a bit bulky. Even when I turned off its screensaver functionality, its startup utility took up more time than I'm comfortable with.</p><p>Enter <a
title="Rainlendar" href="http://www.ipi.fi/~rainy/index.php">Rainlendar</a>, the cute windows desktop calendar! Tricky names aside, this is simply a fabulous find. It's small, cute, has a negligible memory footprint, and looks great with its avant garde font.</p><div
class="quote comments-wrap">Download Rainlendar:</p><p>http://www.snapfiles.com/download/dlRainlendar.html</p></div><p>It's a breeze to configure. You can place it anywhere on the desktop screen by simply dragging it and it latches into place. Best of all, you can have your To-Do lists and Events show up on the desktop as well. In a cool, semi-transparent manner (and the colors readjust automatically to make sure the text is visible.)</p><div
class="quote"><img
src="/av/rainlendar.png?348443" alt="Screenshot of Rainlendar" /></div><p>Best feature: It integrates right into my Microsoft Outlook through a <a
href="http://www.outlookcode.com/d/mapi.htm">MAPI</a> interface — Calendars &amp; Tasks. It even recognized my Archive.pst and pulled the calendar entries from there! No need to have a separate to-do list.</p><p>Brilliant!</p> ]]></content:encoded> <wfw:commentRss>http://sniptools.com/vault/rainlendar-cute-windows-desktop-calendar/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 4/11 queries in 0.003 seconds using disk: basic
Object Caching 1274/1286 objects using disk: basic

Served from: sniptools.com @ 2012-05-21 19:42:09 -->
