<?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</title>
	<atom:link href="http://sniptools.com/feed" rel="self" type="application/rss+xml" />
	<link>http://sniptools.com</link>
	<description>Design &#38; Technology Observations</description>
	<lastBuildDate>Fri, 11 Dec 2009 18:00:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Create ringtones for iPhone (for free)</title>
		<link>http://sniptools.com/mac-osx/create-ringtones-for-iphone-for-free</link>
		<comments>http://sniptools.com/mac-osx/create-ringtones-for-iphone-for-free#comments</comments>
		<pubDate>Fri, 11 Dec 2009 17:59:30 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=540</guid>
		<description><![CDATA[A simple app ought to do it. Download iRinger. It&#8217;s a Windows app. If you&#8217;re on Mac, you&#8217;ll want to use it within a virtual machine, like Parallels or VMWare [...]]]></description>
			<content:encoded><![CDATA[<p>A simple app ought to do it. </p>
<p><a href="http://www.iringer.net/"><img src="http://www.iringer.net/img/mainss.png" alt="iRinger - Free app" /></a></p>
<p>Download <a href="http://www.iringer.net/">iRinger</a>. </p>
<p>It&#8217;s a Windows app. If you&#8217;re on Mac, you&#8217;ll want to use it within a virtual machine, like Parallels or VMWare Fusion. </p>
<p>A very intuitive application. Select a song (mp3 for example), it clips it and shows you the ringtone-worthy segment of it, you basically export it as a &#8220;.m4r&#8221; file. </p>
<p>When done, just open the file and iTunes will automatically open it. Done. </p>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/mac-osx/create-ringtones-for-iphone-for-free/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding non-UTF8 values in PostgreSQL</title>
		<link>http://sniptools.com/databases/finding-non-utf8-values-in-postgresql</link>
		<comments>http://sniptools.com/databases/finding-non-utf8-values-in-postgresql#comments</comments>
		<pubDate>Thu, 23 Jul 2009 01:56:02 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=528</guid>
		<description><![CDATA[This regexp worked for me. SELECT * FROM table WHERE NOT column ~ ( '^('&#124;&#124; $$[\09\0A\0D\x20-\x7E]&#124;$$&#124;&#124; -- ASCII $$[\xC2-\xDF][\x80-\xBF]&#124;$$&#124;&#124; -- non-overlong 2-byte $$\xE0[\xA0-\xBF][\x80-\xBF]&#124;$$&#124;&#124; -- excluding overlongs $$[\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}&#124;$$&#124;&#124; -- straight 3-byte [...]]]></description>
			<content:encoded><![CDATA[<p>This regexp worked for me.</p>
<pre lang="SQL" line="1">
SELECT * FROM table
WHERE NOT column ~ ( '^('||
 $$[\09\0A\0D\x20-\x7E]|$$||               -- ASCII
 $$[\xC2-\xDF][\x80-\xBF]|$$||             -- non-overlong 2-byte
  $$\xE0[\xA0-\xBF][\x80-\xBF]|$$||        -- excluding overlongs
 $$[\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}|$$||  -- straight 3-byte
  $$\xED[\x80-\x9F][\x80-\xBF]|$$||        -- excluding surrogates
  $$\xF0[\x90-\xBF][\x80-\xBF]{2}|$$||     -- planes 1-3
 $$[\xF1-\xF3][\x80-\xBF]{3}|$$||          -- planes 4-15
  $$\xF4[\x80-\x8F][\x80-\xBF]{2}$$||      -- plane 16
 ')*$' )
;</pre>
<p>Or, if you have iconv on your system, as most UNIX variants do, you can pg_dumpall a database and run the following command on it: </p>
<pre lang="bash">
if (@iconv($input, 'UTF-8', 'UTF-8') == $input) echo "Good UTF-8!"; else echo "Nope."
</pre>
<p>Then take a plain text pg_dump of the database in UTF-8. Let&#8217;s call it &#8220;db.orig.dmp&#8221;. Strip all problem characters:</p>
<pre lang="bash">
iconv -f UTF-8 -t UTF-8 -c <db .orig.dmp >db.stripped.sql
</db></pre>
<p>Compare both files:</p>
<pre lang="bash">
diff -u db.orig.dmp db.stripped.sql
</pre>
<p>That output will show all lines containing a problem character. Now the tedious part: Use &#8220;db.orig.dmp&#8221; to find out which tables they belong to, locate the records in the database by primary key and fix them. Alternatively, you can use iconv&#8217;s auto-repair if you know which bytes give you a problem.</p>
<p>For example, if you know that the trouble stems only from 0&#215;80 bytes that should be Euro symbols, you could:</p>
<pre lang="bash">
iconv -f UTF-8 -t UTF-8 --byte-subst="&lt;0x%x>" < db.orig.sql | sed -e 's/&lt;0x80>/EUR/g' >db.fixed.sql
</pre>
<p>The resulting &#8220;db.fixed.sql&#8221; could then be loaded into the new database.</p>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/databases/finding-non-utf8-values-in-postgresql/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>KeepVid: saving videos from Youtube or Vimeo, from anywhere</title>
		<link>http://sniptools.com/webtools/keepvid-saving-videos-from-youtube-or-vimeo-from-anywhere</link>
		<comments>http://sniptools.com/webtools/keepvid-saving-videos-from-youtube-or-vimeo-from-anywhere#comments</comments>
		<pubDate>Mon, 02 Feb 2009 04:54:06 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[Tips/Tricks]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=455</guid>
		<description><![CDATA[If you use Firefox (and if not, what are you waiting for?) you are familiar with useful extensions such as Video Downloader, which allow you to save local copies of [...]]]></description>
			<content:encoded><![CDATA[<p>If you use Firefox (and if not, what are you waiting for?) you are familiar with <a href="https://addons.mozilla.org/en-US/firefox/search?q=video++downloader&#038;cat=all">useful extensions</a> such as Video Downloader, which allow you to save local copies of the videos you watch on websites such as Youtube or Vimeo. You can then watch these videos whenever you please. </p>
<p>But this doesn&#8217;t account for those rare but possible times when you are not on your machine, or don&#8217;t have access to a browser set up to your tastes. No extensions available. </p>
<p>That&#8217;s where &#8220;<a href="http://keepvid.com/">KeepVid</a>&#8221; comes in. Just enter your URL and it automatically extracts any video(s) found on that website and allows you to download in both FLV and MP4 formats. The MP4 would play on your Nokia, iPhone, or Blackberry too. The FLV file is a flash viewer file, and easily played using common video players&#8211;if you don&#8217;t have <a href="http://www.videolan.org/vlc/">VLC</a>, get it pronto. </p>
<p>Here&#8217;s a straightforward screenshot: </p>
<p><img src="http://farm4.static.flickr.com/3299/3246681630_d42704b048.jpg" alt="KeepVid screenshot saving a Youtube video" /></p>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/webtools/keepvid-saving-videos-from-youtube-or-vimeo-from-anywhere/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resize a column in a PostgreSQL table without changing data</title>
		<link>http://sniptools.com/databases/resize-a-column-in-a-postgresql-table-without-changing-data</link>
		<comments>http://sniptools.com/databases/resize-a-column-in-a-postgresql-table-without-changing-data#comments</comments>
		<pubDate>Tue, 13 Jan 2009 05:49:21 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[postgresql sql databases]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=432</guid>
		<description><![CDATA[You use PostgreSQL. You find that a column you have in a table is of a smaller length than you now wish. In my case, this was a varchar(20) that [...]]]></description>
			<content:encoded><![CDATA[<p>You use PostgreSQL. You find that a column you have in a table is of a smaller length than you now wish. In my case, this was a <code>varchar(20)</code> that I now wished to make <code>varchar(35)</code>. Nothing else. I just want to change the size, keeping the data intact.</p>
<p>The <code>ALTER TABLE ...ALTER COLUMN...TYPE...</code> <a href="http://www.postgresql.org/docs/current/interactive/sql-altertable.html">command</a> is useful only if you want to alter the data somehow, or change the data type. Otherwise, it&#8217;ll be an aeon before this finishes even inside a transaction on a database of any meaningful size.</p>
<p>Until now, I was not familiar with any sensible mechanism to simply change the size in PG. But yesterday, Tom Lane himself suggested something ubercool in the list.</p>
<p>Let&#8217;s assume for the sake of simplicity that your table is called &#8220;<code>TABLE1</code>&#8221; and your column is &#8220;COL1&#8243;. You can find the size of your &#8220;<code>COL1</code>&#8221; column by issuing the following query on the system tables:</p>
<pre lang="sql">select atttypmod from pg_attribute
where attrelid = 'TABLE1'::regclass
and attname = 'COL1';

atttypmod
-----------
24
(1 row)</pre>
<p>This means that the size is 20 (4 is added for legacy reasons, we&#8217;re told). You can now conveniently change this to a <code>varchar(35)</code> size by issuing this command:</p>
<pre lang="sql">update pg_attribute set atttypmod = 35+4
where attrelid = 'TABLE1'::regclass
and attname = 'COL1';

UPDATE 1</pre>
<p>Note that I manually added the 4 to the desired size of 35..again, for some legacy reasons inside PG. Done. That&#8217;s it. Should we check?</p>
<pre lang="sql">d TABLE1

Table "public.TABLE1"
Column  |  Type                 | Modifiers
--------+-----------------------+-----------
COL1    | character varying(35) |</pre>
<p>Such a simple yet effective trick. Of course it&#8217;d be nicer if this is somehow included in a more proper way in the database, but this does the job.</p>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/databases/resize-a-column-in-a-postgresql-table-without-changing-data/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<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&#8217;ve been visited by the much dreaded CRC &#8212; Cyclical Redundancy Check error, most likely encountered while copying files between hard disks. On Mac OSX, this will usually appear [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve been visited by the much dreaded CRC &#8212; <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 &#8220;bad sectors&#8221;, 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&#8217;m hoping you already know your way around a command prompt; if you don&#8217;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, &#8220;<code>e:</code>&#8221; is my drive to be checked. The &#8220;<code>/R</code>&#8221; attribute asks the <code>chkdsk</code> command to &#8220;recover&#8221; whatever bad sectors it finds during its scan. In most cases, and if you&#8217;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&#8211;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&#8217;s not free, but when you use it you know why it&#8217;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&#8217; 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>Disable auto completion in Firefox address bar</title>
		<link>http://sniptools.com/webtools/disable-auto-completion-in-firefox-address-bar</link>
		<comments>http://sniptools.com/webtools/disable-auto-completion-in-firefox-address-bar#comments</comments>
		<pubDate>Wed, 27 Aug 2008 09:50:57 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Tips/Tricks]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=370</guid>
		<description><![CDATA[Firefox 3 has a &#8220;feature&#8221; that auto-fills a website that you wish to go to as you&#8217;re typing in the Location bar. I wanted to turn this off, but without [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox 3 has a &#8220;feature&#8221; that auto-fills a website that you wish to go to as you&#8217;re typing in the Location bar.</p>
<p>I wanted to turn this off, but <span style="text-decoration: underline;">without</span> turning off other auto complete functionality:</p>
<ul>
<li>I want to retain the autocomplete in forms (which can be managed from <code>Tools -&gt; Options -&gt; Privacy</code>)</li>
<li>I also want to retain the autocomplete in the search box on the right (which can be turned off by right-clicking inside the box, and then checking off &#8220;<code>Show Suggestions</code>&#8220;)</li>
</ul>
<p>But the Location Bar is a somewhat more involved beast. After hunting in the innards of &#8220;<code>about:config</code>&#8221; I discovered that this was possible. Just follow these steps:</p>
<ol>
<li>In the location bar, type <code>about:config</code>. The location bar is of course the place where you type URLs. Note that this is your internal Firefox configuration. Don&#8217;t mess with it.</li>
<li>In the text box that appears at the top of this page, enter <code>browser.urlbar.maxRichResults </code>as the preference name. (Tip: copy it from here and paste it into that box.)</li>
<li>Set the value to 0 if you wish to disable the auto-complete altogether. I have it set to 2 so I get some suggestions but it doesn&#8217;t crowd up the experience.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/webtools/disable-auto-completion-in-firefox-address-bar/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Uninstall Saft. For good. Really.</title>
		<link>http://sniptools.com/webtools/uninstall-saft-delete-saft-from-safari</link>
		<comments>http://sniptools.com/webtools/uninstall-saft-delete-saft-from-safari#comments</comments>
		<pubDate>Mon, 04 Aug 2008 08:38:56 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=405</guid>
		<description><![CDATA[If you&#8217;re here, you know what I&#8217;m talking about. The Safari plugin sounds like a neat little tool but is a pesky customer on any computer. Not the way to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re here, you know what I&#8217;m talking about. The Safari plugin sounds like a neat little tool but is a pesky customer on any computer. Not the way to win hearts. Deleting it doesn&#8217;t work, not do the instructions on their website.</p>
<p>Here is how I did.</p>
<ol>
<li>First, close Safari. This is VERY important, as it does not work otherwise.</li>
<li>Start Terminal. (Go to Applications -&gt; Utilities -&gt; Terminal, or type Terminal in Spotlight).</li>
<li>Under Terminal type &#8220;sudo -s&#8221; without the quotation marks to log in as root.</li>
<li>Then enter:
<pre lang="bash">defaults write com.apple.finder AppleShowAllFiles TRUE</pre>
</li>
<li>Go to the blue (or gray) apple at the top left of the screen, then select Force Quit. From the menu of items, click on &#8220;Saft&#8221; and click on the Force Quit button.</li>
<li>Then, in the same Force Quit window, click on &#8220;Finder&#8221; and click the &#8220;Relaunch&#8221; button.</li>
<li>In the Finder window, on the top right bar (the Filter spotlight bar), type &#8220;saft&#8221; without the quotes. Delete with delight any file called Saft. Note: This may reveal a few other files that may contain the word &#8220;Saft&#8221; such as threads.py in my case (a Python file). Naturally, you want to NOT delete these. Just get rid of the Saft files.</li>
<li>Empty the trash. If there is a file that won&#8217;t delete because it&#8217;s in use, then Force Quit &#8220;Saft&#8221; again as in Step 5 above, and then Empty Trash again.</li>
<li>Go back into Terminal, and type &#8220;sudo -s&#8221; again without quotation marks. Then enter:
<pre lang="bash"> defaults write com.apple.finder AppleShowAllFiles FALSE</pre>
<p>This will set the Finder back to the way it was before. Then type &#8220;exit&#8221; and it will exit out of the root.</li>
<li>Now navigate to the folder: <code>/Library/InputManagers</code>. Note that this is NOT the &#8220;Library&#8221; folder in your Users folder. This is the Library folder from the root. Inside InputManagers is the &#8220;saft&#8221; folder &#8212; get rid of it.</li>
<li>Empty Trash (again). If it says Saft is in use, reboot the machine and empty it then. Or if you use some excellent utility like <a href="/vault/osx-utilities-power-users">MainMenu</a> you can &#8220;Force Empty Trash&#8221;.</li>
</ol>
<p>Go back to your happy, problem free Mac!  <img src='http://sniptools.com/cms/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/webtools/uninstall-saft-delete-saft-from-safari/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Remember WEP wireless password on Nokia e61i (any e-Series)</title>
		<link>http://sniptools.com/vault/remember-wep-wireless-password-on-nokia-e61i</link>
		<comments>http://sniptools.com/vault/remember-wep-wireless-password-on-nokia-e61i#comments</comments>
		<pubDate>Sat, 02 Aug 2008 14:23:16 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[System Maintenance]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Tips/Tricks]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=338</guid>
		<description><![CDATA[I use the Nokia e61i as my mobile. Instead of my telco&#8217;s data plan (which offers me a meagre 1GB per month) I simply prefer to use my home wireless [...]]]></description>
			<content:encoded><![CDATA[<p>I use the Nokia e61i as my mobile. Instead of my telco&#8217;s data plan (which offers me a meagre 1GB per month) I simply prefer to use my home wireless LAN when I am at home. Until recently I used the wireless &#8220;access point&#8221; without any secure settings, but have had to move to WEP now due to cheeky neighbors.</p>
<p>Problem: Nokia&#8217;s WLAN option kept prompting me for the WEP key *everytime* I would connect to my email or any website.</p>
<p>After googling for a good many days and bumbling around on Nokia&#8217;s forums, I have finally figured out how to make Nokia remember the cotton-picking password. Simple answer: you need to lose your cached WLAN entry, which may be stored as a non-WEP access point.</p>
<p>Here are the more detailed steps:</p>
<ol>
<li>Delete your current WLAN access point you&#8217;ve created for the E61i. This is the secret sauce.</li>
<li>Now, under
<p><code>Tools &gt; Settings &gt; Connection &gt; Access Points<br />
</code><br />
Select Options and create a new access point using &#8220;default settings&#8221;. We&#8217;ll tweak them below.</li>
<li>Under <strong><em>Connection Name</em></strong>, pick a name for your connection. This doesn&#8217;t have to be your wireless network&#8217;s SSID, but you can keep it under the same name.</li>
<li>Under <strong><em>Data Bearer</em></strong>, select WLAN.</li>
<li>Under <em>WLAN Network Name</em>, select manual entry and type in your SSID name.</li>
<li>Under <strong><em>Network Status</em></strong> mark &#8220;Hidden&#8221;.</li>
<li><strong><em>Network Mode</em></strong> will be the default: &#8220;Infrastructure&#8221;.</li>
<li>Under <strong><em>WLAN Security Mode</em></strong>, choose your security type. For instance, mine is WEP, so that&#8217;s what I selected.</li>
<li>Under <strong><em>WLAN Security Settings</em></strong>, go to WEP key settings and define your encryption level, format, and key. For instance, for WEP you might have 64 bit, ASCII, and &#8220;xyzabc&#8221; as your level, format, and key respectively. If you don&#8217;t know this stuff, this entire tutorial is perhaps not for you, otherwise you know what these values are. (You can always login as admin user into your wireless router and reconfirm these settings for your specific case.)</li>
</ol>
<p>That&#8217;s it. You can now connect to some website or your email server on your mobile phone, select the WLAN with the name you chose in Step 3 above, and your Nokia e-series phone will remember your WEP password for good. Finally.</p>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/vault/remember-wep-wireless-password-on-nokia-e61i/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Readair: Google Reader client on your desktop (with Adobe AIR client)</title>
		<link>http://sniptools.com/webtools/readair-google-reader-client-on-your-desktop</link>
		<comments>http://sniptools.com/webtools/readair-google-reader-client-on-your-desktop#comments</comments>
		<pubDate>Fri, 01 Aug 2008 09:43:30 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Tools/Reviews]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=350</guid>
		<description><![CDATA[If you use RSS, Google Reader is among the best there is. So good, in fact, that I imported all my old Bloglines feeds. The interface, the starring of important [...]]]></description>
			<content:encoded><![CDATA[<p>If you use RSS, <a href="http://reader.google.com">Google Reader</a> is among the best there is. So good, in fact, that I imported all my old Bloglines feeds. The interface, the starring of important feed items, the sharing &#8212; all of it is addictive.</p>
<p>Recently, I started using the <a href="http://vienna-rss.sourceforge.net/">Vienna</a> client on OSX, which looks good but it&#8217;s a pain to manage the feed listings in two places&#8211; Google Reader, and local Vienna.  Yes, you can import your Google Reader OPML into Vienna, but to have them synced, you need to import it often.</p>
<p>But that&#8217;s a manual sync and not very useful.</p>
<p>If Vienna&#8217;s user forums are any indication, the automatic synchronization between Google Reader and Vienna is among the top requested features, and I can understand why.</p>
<p>Well, I won&#8217;t be waiting for Vienna anymore, as the <a href="http://www.adobe.com/products/air/">Adobe AIR</a> Google Reader client is here, and it works like a charm!</p>
<blockquote>
<p style="text-align: center;"><a href="http://code.google.com/p/readair/"><img class="aligncenter" title="Readair: Google Reader Client" src="http://readair.adammcgrath.com/img/logo.gif" alt="" width="200" height="61" /><br />
</a></p>
</blockquote>
<p>The interface is very Mac OSX like, very clean and nifty. Just set up your Google email and password:</p>
<p style="text-align: center;"><a href="http://sniptools.com/cms/wp-content/uploads/2008/08/readair.gif"><img class="size-medium wp-image-358 aligncenter" title="Readair Preferences" src="http://sniptools.com/cms/wp-content/uploads/2008/08/readair-300x213.gif" alt="" width="300" height="213" /></a></p>
<p style="text-align: left;">And you are ready to roll. Of course, it doesn&#8217;t (yet) have the functionality to tweak font sizes or flag important items or share &#8212; i.e., a complete desktop alternative to Vienna or Google Reader, but this is a fantastic start.</p>
<p style="text-align: center;"><a href="http://code.google.com/p/readair/"><img class="aligncenter" title="Google Reader Desktop Client - Adobe AIR" src="http://readair.adammcgrath.com/img/screenshot.png" alt="Google Reader Desktop Client - Adobe AIR" width="801" height="630" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/webtools/readair-google-reader-client-on-your-desktop/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Revision Control: Manage or Disable edit history in WP</title>
		<link>http://sniptools.com/vault/manage-or-disable-revisions-in-wordpress</link>
		<comments>http://sniptools.com/vault/manage-or-disable-revisions-in-wordpress#comments</comments>
		<pubDate>Wed, 23 Jul 2008 06:59:15 +0000</pubDate>
		<dc:creator>Shanx</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://sniptools.com/?p=320</guid>
		<description><![CDATA[Among many new exciting features, WordPress 2.6 released the ability to store each and every revision of your posts, like an elaborate update history. Now this can be a pretty [...]]]></description>
			<content:encoded><![CDATA[<p>Among many new exciting features, <a href="http://wordpress.org">WordPress 2.6</a> released the ability to store each and every revision of your posts, like an elaborate update history. Now this can be a pretty useful feature if you are only making substantive changes to your articles, but if you change a &#8220;the&#8221; or a preposition, this can be overkill.</p>
<p>The suggested workaround to disable this revision function is to enter a variable in your wp_config.php file. But this takes away the functionality from the entire blog.</p>
<div id="attachment_323" class="wp-caption alignnone" style="width: 310px"><a href="http://dd32.id.au/wordpress-plugins/revision-control/"><img class="size-medium wp-image-323" title="Revision Control plugin for WordPress" src="http://sniptools.com/cms/wp-content/uploads/2008/07/revision-control-wordpress-300x177.gif" alt="Revision Control plugin for WordPress" width="300" height="177" /></a><p class="wp-caption-text">Revision Control plugin for WordPress</p></div>
<p>I discovered a superb plugin today that makes this process very simple. It allows you to define the setting from the WordPress aministration interface on a Global basis. That is, to</p>
<ul>
<li>Disable All revisions for all posts/pages</li>
<li>And override on a per-page/post basis.</li>
</ul>
<p>For example, I can set Revisions to Disabled globally, and then enable it to store say 5 revisions for a Specific page(Without affecting any other pages).</p>
<p>You&#8217;ll find some Info ( &amp; Download link) on it here:<br />
<a href="http://dd32.id.au/wordpress-plugins/revision-control/">http://dd32.id.au/wordpress-plugins/revision-control/</a></p>
<p>This is not MU compatible yet (untested).</p>
]]></content:encoded>
			<wfw:commentRss>http://sniptools.com/vault/manage-or-disable-revisions-in-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
