<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>binaer-infusion</title>
	<atom:link href="http://tilm4nn.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tilm4nn.wordpress.com</link>
	<description>tilm4nn's IT blog</description>
	<lastBuildDate>Sun, 06 Jul 2008 07:42:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tilm4nn.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>binaer-infusion</title>
		<link>http://tilm4nn.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tilm4nn.wordpress.com/osd.xml" title="binaer-infusion" />
	<atom:link rel='hub' href='http://tilm4nn.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Editing text made easy with AutoHotkey</title>
		<link>http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/</link>
		<comments>http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 22:46:28 +0000</pubDate>
		<dc:creator>tilm4nn</dc:creator>
				<category><![CDATA[IT in daily life]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[hotkey]]></category>
		<category><![CDATA[hotstring]]></category>
		<category><![CDATA[navigate]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/</guid>
		<description><![CDATA[While editing text, especially computer programs but also letters, documentation or reports, it is often required to move the cursor to another position like a line up or down or to the beginning or end of the line. Fortunately keyboards have keys to do this. Unfortunately the right hand has to be removed from its [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tilm4nn.wordpress.com&amp;blog=1802205&amp;post=4&amp;subd=tilm4nn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="justify">While editing text, especially computer programs but also letters, documentation or reports, it is often required to move the cursor to another position like a line up or down or to the beginning or end of the line. Fortunately keyboards have keys to do this. Unfortunately the right hand has to be removed from its usual working position to use these. This leads to interrupts of the typing work-flow, is time-consuming and is error prone when the hand has been placed back in the wrong position. A possible solution to this is to customize the keyboard behaviour so that the required functions are accessible while the hands can stay right where they are.</p>
<p align="justify"><span id="more-4"></span></p>
<h3>Customize cursor movements</h3>
<p align="justify"><a href="http://www.autohotkey.com/">AutoHotkey</a> is a very useful Windows utility that allows, among other functions, full customization of the keyboard behaviour. Now I&#8217;ll show how it can be used to simplify navigation in text.</p>
<p align="justify">After AutoHotkey has been installed a so called AutoHotkey script has to be edited or created. The best way to start is to simply edit the AutoHotkey init script which is called &#8220;AutoHotkey.ini&#8221; and is located in the install directory. It can be changed using any text editor. If AutoHotkey is running it can be accessed with a right click on the AutoHotkey system tray icon and selecting &#8220;Edit This Script&#8221;.</p>
<p>Now the following macros can be included in the script.</p>
<pre>;----------------------------------
; Navigation in Text
;----------------------------------
!+j::Send ^{Left}
!+l::Send ^{Right}
!j::Send {Left}
!l::Send {Right}
!i::Send {Up}
!k::Send {Down}
!SC027::Send {End}
!h::Send {Home}</pre>
<p align="justify">The script must be saved and AutoHotkey restarted to activate the macros. If AutoHotkey is running the restart can be done by a right clicking on the AutoHotkey system tray icon and selecting &#8220;Reload This Script&#8221;</p>
<p align="justify">The macros just presented allow the text writer to navigate up, down, left, right, home and end by holding down the Alt key with the left hand and using i, j, k, l as arrow keys and h, : as Home and End. Navigation by word is done by holding down Alt and Shift together and using the keys j and l.</p>
<p>Let&#8217;s now have a look at some lines of the code to explain how the macros work:</p>
<pre>!j::Send {Left}</pre>
<p align="justify">The line consists of two parts. The first part is left of &#8220;::&#8221; and is called the hotkey. The part on the right side is the command executed when the hotkey is pressed. The hotkey in the example &#8220;!j&#8221; is a compound hotkey that is a press of the j key while the Alt key is being held down. The command &#8220;Send {Left}&#8221; tells AutoHotkey to send a keypress of the left arrow to the operating system. So the key combination Alt+j has now the same effect as the left arrow.</p>
<pre> !SC027::Send {End}</pre>
<p align="justify">The simulation of the end key is activated by the key combination Alt+:. Since &#8220;:&#8221; is a special character in the AutoHotkey macro language the keyboard scan code &#8220;SC027&#8243; is used in the hotkey instead.</p>
<pre>!+j::Send ^{Left}</pre>
<p align="justify">&#8220;+&#8221; is standing for the Shift key and &#8220;^&#8221; is standing for the Ctrl key. This macro maps Alt+Shift+j to Ctrl+Left which allows to move the cursor one word to the left in the text.</p>
<h3>Automatically generate or replace text</h3>
<p align="justify">Another example for the usefulness of AutoHotkey is its hotstrings function. This functions scans the text input for defined abbreviations and replaces them with some other text on the fly. Below is shown a script compartment with some examples:</p>
<pre>;----------------------------------
; Hotstrings for programming
;----------------------------------
#Hotstring c ; Case sensitive
#Hotstring EndChars  .(
:R:pu::public
:R:st::static
:R:pr::private
:R:fi::final
:R:str::string
:R :Str::String
:R  :STr::String
:R:bo::boolean
:R:re::return
:R:imp::implements
:R:sout::System.out.println</pre>
<p align="justify">When a defined end character is typed (&#8221; &#8220;, &#8220;.&#8221; and &#8220;(&#8221; in this example)  AutoHotkey examines the preceding text. If it can find a hotstring it is replaced. Hotstrings are defined by the notation :R:&lt;hotstring&gt;::&lt;replacement&gt; in the AutoHotkey script file. So if the script presented above is active the input of &#8220;Str &#8221; will immediately be replaced with &#8220;String &#8221; while typing.</p>
<h3>Advanced features of AutoHotkey</h3>
<p align="justify">AutoHotkey has a lot of more features than presented here that make it easy to perform repeated tasks. They can be used for any purpose such as access to installed programs by key, control of instant messengers or gaming for example. Here is the feature list from the <a href="http://www.autohotkey.com/">AutoHotkey homepage</a></p>
<ul class="size110">
<li>
<div>Automate almost anything by sending keystrokes and mouse clicks. You can write a <a href="http://www.autohotkey.com/docs/misc/Macros.htm">mouse or keyboard macro</a> by hand or use the macro recorder.</div>
</li>
<li>
<div>Create <a href="http://www.autohotkey.com/docs/Hotkeys.htm">hotkeys</a> for keyboard, joystick, and mouse. Virtually any key, button, or combination can become a hotkey.</div>
</li>
<li>
<div><a href="http://www.autohotkey.com/docs/Hotstrings.htm">Expand abbreviations</a> as you type them. For example, typing &#8220;btw&#8221; can automatically produce &#8220;by the way&#8221;.</div>
</li>
<li>
<div>Create custom data-entry forms, user interfaces, and menu bars. See <a href="http://www.autohotkey.com/docs/commands/Gui.htm">GUI</a> for details.</div>
</li>
<li>
<div><a href="http://www.autohotkey.com/docs/misc/Remap.htm">Remap</a> keys and buttons on your keyboard, joystick, and mouse.</div>
</li>
<li>
<div>Respond to signals from hand-held remote controls via the <a href="http://www.autohotkey.com/docs/scripts/WinLIRC.htm">WinLIRC client script</a>.</div>
</li>
<li>
<div>Run existing AutoIt v2 scripts and enhance them with <a href="http://www.autohotkey.com/docs/AutoIt2Users.htm">new capabilities</a>.</div>
</li>
<li>
<div>Convert any script into an <a href="http://www.autohotkey.com/docs/Scripts.htm#ahk2exe">EXE file</a> that can be run on computers that don&#8217;t have AutoHotkey installed.</div>
</li>
<li class="li2">
<div>Change the volume, mute, and other <a href="http://www.autohotkey.com/docs/commands/SoundSet.htm">settings</a> of any soundcard.</div>
</li>
<li class="li2">
<div>Make any window <a href="http://www.autohotkey.com/docs/commands/WinSet.htm#trans">transparent</a>, <a href="http://www.autohotkey.com/docs/commands/WinSet.htm#AlwaysOnTop">always-on-top</a>, or alter its <a href="http://www.autohotkey.com/docs/commands/WinSet.htm#region">shape</a>.</div>
</li>
<li class="li2">
<div>Use a <a href="http://www.autohotkey.com/docs/scripts/JoystickMouse.htm">joystick</a> or <a href="http://www.autohotkey.com/docs/scripts/NumpadMouse.htm">keyboard</a> as a mouse.</div>
</li>
<li class="li2">
<div><a href="http://www.autohotkey.com/docs/commands/SetTimer.htm">Monitor</a> your system. For example, close unwanted windows the moment they appear.</div>
</li>
<li class="li2">
<div>Retrieve and change the <a href="http://www.autohotkey.com/docs/misc/Clipboard.htm">clipboard&#8217;s contents</a>, including file names copied from an Explorer window.</div>
</li>
<li class="li2">
<div><a href="http://www.autohotkey.com/docs/misc/Override.htm">Disable or override</a> Windows&#8217; own shortcut keys such as Win+E and Win+R.</div>
</li>
<li class="li2">
<div>Alleviate RSI with substitutes for <a href="http://www.autohotkey.com/docs/Hotkeys.htm#alttab">Alt-Tab</a> (using keys, mouse wheel, or buttons).</div>
</li>
<li class="li2">
<div>Customize the <a href="http://www.autohotkey.com/docs/commands/Menu.htm">tray icon menu</a> with your own icon, tooltip, menu items, and submenus.</div>
</li>
<li class="li2">
<div>Display <a href="http://www.autohotkey.com/docs/commands/MsgBox.htm">dialog boxes</a>, <a href="http://www.autohotkey.com/docs/commands/ToolTip.htm">tooltips</a>, <a href="http://www.autohotkey.com/docs/commands/TrayTip.htm">balloon tips</a>, and <a href="http://www.autohotkey.com/docs/commands/Menu.htm">popup menus</a> to interact with the user.</div>
</li>
<li class="li2">
<div>Perform scripted actions in <a href="http://www.autohotkey.com/docs/commands/OnExit.htm#logoff">response</a> to system shutdown or logoff.</div>
</li>
<li class="li2">
<div>Detect how long the user has been <a href="http://www.autohotkey.com/docs/Variables.htm#TimeIdle">idle</a>. For example, run CPU intensive tasks only when the user is away.</div>
</li>
<li class="li2">
<div>Automate game actions by detecting <a href="http://www.autohotkey.com/docs/commands/ImageSearch.htm">images</a> and <a href="http://www.autohotkey.com/docs/commands/PixelGetColor.htm">pixel colors</a> (this is intended for legitimate uses such as the alleviation of RSI).</div>
</li>
<li class="li2">
<div><a href="http://www.autohotkey.com/docs/commands/LoopReadFile.htm">Read</a>, <a href="http://www.autohotkey.com/docs/commands/FileAppend.htm">write</a>, and <a href="http://www.autohotkey.com/docs/commands/LoopParse.htm">parse</a> text files more easily than in other languages.</div>
</li>
<li class="li2">
<div>Perform operation(s) upon a set of files that match a <a href="http://www.autohotkey.com/docs/commands/LoopFile.htm">wildcard pattern</a>.</div>
</li>
<li class="li2">
<div>Work with the <a href="http://www.autohotkey.com/docs/commands/RegRead.htm">registry</a> and <a href="http://www.autohotkey.com/docs/commands/IniRead.htm">INI files</a>.</div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tilm4nn.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tilm4nn.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tilm4nn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tilm4nn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tilm4nn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tilm4nn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tilm4nn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tilm4nn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tilm4nn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tilm4nn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tilm4nn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tilm4nn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tilm4nn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tilm4nn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tilm4nn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tilm4nn.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tilm4nn.wordpress.com&amp;blog=1802205&amp;post=4&amp;subd=tilm4nn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46718535e8c16d6ee47589cdda14bd16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tilm4nn</media:title>
		</media:content>
	</item>
		<item>
		<title>Synchronize Contacts w. Mobile and Tunderbird x2</title>
		<link>http://tilm4nn.wordpress.com/2007/12/26/synchronize-contacts-w-mobile-and-tunderbird-x2/</link>
		<comments>http://tilm4nn.wordpress.com/2007/12/26/synchronize-contacts-w-mobile-and-tunderbird-x2/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 12:11:39 +0000</pubDate>
		<dc:creator>tilm4nn</dc:creator>
				<category><![CDATA[IT in daily life]]></category>
		<category><![CDATA[cellphone]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[e-mail client]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[synchronize]]></category>
		<category><![CDATA[syncml]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://tilm4nn.wordpress.com/2007/12/26/synchronize-contacts-w-mobile-and-tunderbird-x2/</guid>
		<description><![CDATA[Keeping contact data on a mobile phone and the personal e-mail client in sync can be a tedious task especially if multiple e-mail client instances are involved. In this article I&#8217;m going to show how the scenario with one of Sony Ericsson&#8217;s mobile phones and two instances of Thunderbird can be handled. On the web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tilm4nn.wordpress.com&amp;blog=1802205&amp;post=3&amp;subd=tilm4nn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="justify">Keeping contact data on a mobile phone and the personal e-mail client in sync can be a tedious task especially if multiple e-mail client instances are involved. In this article I&#8217;m going to show how the scenario with one of Sony Ericsson&#8217;s mobile phones and two instances of <a title="The Tunderbird e-mail client" href="http://www.mozilla.com/thunderbird/">Thunderbird</a> can be handled.</p>
<p align="justify">On the web there exists a bunch of synchronization services that provide the possibility to sync your contact, calendar, sms, and other data among multiple mobile phones using the <a title="The OMA SyncML Specification" href="http://www.openmobilealliance.org/tech/affiliates/syncml/syncmlindex.html">SyncML</a> protocol. Together with fitting plug-ins they can also be used to sync between mobile phone and e-mail client. The services tested by me are <a title="Mobical" href="https://www.mobical.net/">Mobical</a> and <a title="ZYB" href="https://zyb.com/">ZYB</a> which both have their advantages and drawbacks.</p>
<p align="justify"><span id="more-3"></span></p>
<ul>
<li>
<div>Mobical has a more tidy and user-friendly web interface. It is the #1 choice if you plan to edit your contacts on-line. But Mobical has relative slow syncML servers which caused some problems with my SE w880i mobile so I had to apply a little trick to get it to work correctly.</div>
</li>
<li>
<div>ZYB caused no problems with my mobile but the flash web application has tiny widgets that are very hard to work with. Syncing contacts with my mobile and one instance of Thunderbird worked very well and fast, but when I added another Thunderbird instance I got all contacts duplicated from time to time which was mess because there is no easy way to find out which are the correct ones.</div>
</li>
</ul>
<h3>The basic setup</h3>
<p>To start synchronization only a few easy steps are required:</p>
<ol>
<li>
<div>Create an account with <a title="Mobical" href="https://www.mobical.net/">Mobical</a></div>
</li>
<li>
<div>Have Mobical send automatic configuration to the mobile phone. (Worked correctly with Sony Ericsson w880i)</div>
</li>
<li>
<div>Download and install the <a title="TSync" href="http://www.topologilinux.com/syncml/index.php?menu=1">TSync Thunderbird add-on</a>. The TSync configuration must be adjusted to use your  Mobical user-name and password the database name &#8220;con&#8221; and the server URL &#8220;http://www.mobical.net/sync/server&#8221;</div>
</li>
</ol>
<p>These three steps are sufficient to start synchronization <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>Tricks to apply</h3>
<p align="justify">Unfortunately as mentioned before it is required to take care about some deficits when using certain combinations of SyncML clients and servers.</p>
<ul>
<li>
<div>When synchronizing with Mobical and TSync there are two noticeable problems that can be easily solved: Occasionally Thunderbird will display a dialog box about a unresponsive script and asks how to proceed. In this case the option &#8220;Continue&#8221; has to be selected. In addition the progress dialog of TSync will never close by itself. It will stay open on &#8220;Receiving data from server 6/6&#8243; and can be safely closed using the close button of the dialog window. As seen in the sync servers log file the synchronization has finished successfully.</div>
</li>
<li>
<div>When synchronizing with Mobical and a Sony Ericsson mobile there can be unexpected aborts of the synchronization process. This happens because of the Mobical server being very slow when many contacts have to be synchronized at once. There is a solution to this problem for the initial synchronization when all contacts to be synchronized are already stored on the Mobical server: First all contacts have to be deleted from the mobile. After logging in to the Mobical web site all contacts on the server should be moved to the Trashcan by deleting them. Now synchronization works fine if repeatedly about 20 contacts are undeleted in Mobical and a synchronization process is carried out with the mobile phone until all contacts have been undeleted and synchronized. From now on it is crucial to occasionally synchronize the mobile phone to prevent the synchronization process to abort when to many contacts have been added or changed at once.</div>
</li>
</ul>
<h3>Add another instance of Thunderbird</h3>
<p align="justify">To avoid problems when synchronizing with multiple instances of Thunderbird it is important for the SyncML server to be able to differentiate between the instances. This done by the device id sent by the client to the server during each synchronization process. If you install TSync on two different Thunderbird instances they will both use the same device id which will cause problems during synchronization. Now I present step by step instructions how to change the device id of a TSync installation:</p>
<ol>
<li>
<div>Locate the TSync add-on in the Thunderbird profile by looking for a file called tsync.jar.</div>
</li>
<li>
<div>Extract tsync.jar using your favourite zip file extractor in the same folder.</div>
</li>
<li>
<div>Delete tsync.jar</div>
</li>
<li>
<div>Open the file content/tsync/tsync.js using a text file editor.</div>
</li>
<li>
<div>Locate the line starting with &#8220;var devid&#8221; and change the string literal assigned to this variable.</div>
</li>
<li>
<div>Optionally also change the text that will appear in Mobical&#8217;s sync history by looking for the text &#8220;Tobias SyncML client for Thunderbird&#8221; in the same file and changing it to something identifying to which Tunderbird instance it refers.</div>
</li>
<li>
<div>Close and save tsync.js.</div>
</li>
<li>
<div>Recompress the once extracted folders and files to a file called tsync.jar using a zip file compressor.</div>
</li>
<li>
<div>Remove the extracted files and directories.</div>
</li>
<li>
<div>Restart Thunderbird if it was running.</div>
</li>
</ol>
<p align="justify">After completing these steps synchronizing contacts with two Thunderbird instances can be really enjoyed.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tilm4nn.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tilm4nn.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tilm4nn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tilm4nn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tilm4nn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tilm4nn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tilm4nn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tilm4nn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tilm4nn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tilm4nn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tilm4nn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tilm4nn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tilm4nn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tilm4nn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tilm4nn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tilm4nn.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tilm4nn.wordpress.com&amp;blog=1802205&amp;post=3&amp;subd=tilm4nn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tilm4nn.wordpress.com/2007/12/26/synchronize-contacts-w-mobile-and-tunderbird-x2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46718535e8c16d6ee47589cdda14bd16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tilm4nn</media:title>
		</media:content>
	</item>
	</channel>
</rss>
