<?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>Stefan's Weblog</title>
	<atom:link href="http://stefancosma.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://stefancosma.wordpress.com</link>
	<description>Repository for my thoughts</description>
	<lastBuildDate>Sun, 15 Nov 2009 14:26:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='stefancosma.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/813ed9c6612b06ec01ad587d354ca6b6?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Stefan's Weblog</title>
		<link>http://stefancosma.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://stefancosma.wordpress.com/osd.xml" title="Stefan&#039;s Weblog" />
	<atom:link rel='hub' href='http://stefancosma.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Visual Studio Debugging Tip: Tracepoints</title>
		<link>http://stefancosma.wordpress.com/2009/11/15/visual-studio-debugging-tip-tracepoints/</link>
		<comments>http://stefancosma.wordpress.com/2009/11/15/visual-studio-debugging-tip-tracepoints/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 14:26:13 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://stefancosma.wordpress.com/2009/11/15/visual-studio-debugging-tip-tracepoints/</guid>
		<description><![CDATA[If you are the kind of developer that writes bug-free code, then you have no reason to waste your time reading this. Better go and write some more of your perfect code. This article is for the rest of us who have to spend some time in the debugger, trying to figure out what’s wrong [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=stefancosma.wordpress.com&amp;blog=3130026&amp;post=22&amp;subd=stefancosma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are the kind of developer that writes bug-free code, then you have no reason to waste your time reading this. Better go and write some more of your perfect code. This article is for the rest of us who have to spend some time in the debugger, trying to figure out what’s wrong with the code.</p>
<p>Still reading? Good… Visual Studio comes with one of the best debuggers out there. It supports both native and managed code and you can even extend it to support custom languages. For example the <a title="IronPython Project Page" href="http://www.codeplex.com/IronPython" target="_blank">IronPython</a> team added support for python scripts.</p>
<p>This is the first of a series of posts where I’ll try to discuss some of the Visual Studio’s debugger features. <a title="joc&#39;s bLog" href="http://blogs.msdn.com/ms_joc/" target="_blank">John Cunningham</a> said that “Some of the best debugger features are always hidden behind the right click.” One of this features is tracepoints.</p>
<p>A tracepoint is a breakpoint that performs an action on your code. To insert a new tracepoint, right click on the line of code where you want to insert it and select Breakpoint –&gt; Insert Tracepoint. This will open a window that will allow you to configure the tracepoint.</p>
<p> <a href="http://stefancosma.files.wordpress.com/2009/11/tracepointwhenbreakpointishit.png"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="Configure Tracepoint" border="0" alt="Configure Tracepoint" src="http://stefancosma.files.wordpress.com/2009/11/tracepointwhenbreakpointishit_thumb.png?w=535&#038;h=455" width="535" height="455" /></a>
<p>This window will allow you to specify the action to be performed when the tracepoint is hit. Most often a tracepoint will be used to print some information. You can print variable values but also a variety of program state types: program locations, thread info, etc. For more advanced actions you can specify a predefined macro to be executed.</p>
<p>For example let’s consider the following code snippet</p>
<p><a href="http://stefancosma.files.wordpress.com/2009/11/code.png"><img style="display:inline;border-width:0;" title="" border="0" alt="" src="http://stefancosma.files.wordpress.com/2009/11/code_thumb.png?w=634&#038;h=340" width="634" height="340" /></a> </p>
<p>The tracepoint is set to print &quot;<code>--&gt; Iteration {i}: {number}</code>&quot; and continue execution. When the program is executed, the output window will show something like this</p>
<p><a href="http://stefancosma.files.wordpress.com/2009/11/tracepointoutput.png"><img style="display:inline;border-width:0;" title="tracepoint-output" border="0" alt="tracepoint-output" src="http://stefancosma.files.wordpress.com/2009/11/tracepointoutput_thumb.png?w=644&#038;h=202" width="644" height="202" /></a></p>
<p>You can see how easy is to trace the evolution of a variable during program execution. This becomes even much more interesting when you do the same with stack traces or thread information.</p>
<p>One can argue that the same thing can be achieved with a logging system. The advantage of tracepoints over log messages is that you can easily set and then modify them during the same debugging session. No need to stop the debugging session, insert log messages and then recompile and restart the application.</p>
<p>If you want to fond more about tracepoints check out the MSDN documentation about <a href="http://msdn.microsoft.com/en-us/library/ktf38f66.aspx" target="_blank">Breakpoints and Tracepoints</a>.</p>
<br />Posted in Programming, Visual Studio  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/stefancosma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/stefancosma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/stefancosma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/stefancosma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/stefancosma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/stefancosma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/stefancosma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/stefancosma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/stefancosma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/stefancosma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/stefancosma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/stefancosma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/stefancosma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/stefancosma.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=stefancosma.wordpress.com&amp;blog=3130026&amp;post=22&amp;subd=stefancosma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://stefancosma.wordpress.com/2009/11/15/visual-studio-debugging-tip-tracepoints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7df4d45d6cf6b92b399764532c2207c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">stefanc</media:title>
		</media:content>

		<media:content url="http://stefancosma.files.wordpress.com/2009/11/tracepointwhenbreakpointishit_thumb.png" medium="image">
			<media:title type="html">Configure Tracepoint</media:title>
		</media:content>

		<media:content url="http://stefancosma.files.wordpress.com/2009/11/code_thumb.png" medium="image" />

		<media:content url="http://stefancosma.files.wordpress.com/2009/11/tracepointoutput_thumb.png" medium="image">
			<media:title type="html">tracepoint-output</media:title>
		</media:content>
	</item>
		<item>
		<title>Shorten URL Plugin for Pidgin</title>
		<link>http://stefancosma.wordpress.com/2009/06/24/shorten-url-plugin-for-pidgin/</link>
		<comments>http://stefancosma.wordpress.com/2009/06/24/shorten-url-plugin-for-pidgin/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:32:49 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
				<category><![CDATA[Pidgin]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[C]]></category>

		<guid isPermaLink="false">http://stefancosma.wordpress.com/2009/06/24/shorten-url-plugin-for-pidgin/</guid>
		<description><![CDATA[Pidgin is a great chat client. It allows the user to connect to multiple chat networks simultaneously through an easy to use and very intuitive interface. I use it all the time to stay in touch with my friends / family / coworkers and I’m very happy I don’t have to install a different client [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=stefancosma.wordpress.com&amp;blog=3130026&amp;post=8&amp;subd=stefancosma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Pidgin is a great chat client. It allows the user to connect to multiple chat networks simultaneously through an easy to use and very intuitive interface. I use it all the time to stay in touch with my friends / family / coworkers and I’m very happy I don’t have to install a different client for each chat network I want to connect to.</p>
<p>But since I started using Twitter this has changed. Now I had to install another client just to receive and post <em>tweets</em> and it was very annoying. As <a href="http://tirania.org/blog/" target="_blank">Miguel de Icaza</a> likes to say “<em>Twitter is IRC for young people</em>” so it seems natural to be accessed from the chat client like all other networks.</p>
<p>After a quick search on the Net I found <a href="https://www.tweet.im/" target="_blank">tweet.IM</a>, a free service offered by ProcessOne which enables you to use a micro-blogging platform with a chat client. It basically adds a bot to your contacts list that forwards periodically new updates from your Twitter feed to your messaging account. It also allows you to post updates by forwarding messages to the bot. Using this service made Pidgin a nice Twitter client but it had two problems: it lacked character counting and URL shortening.</p>
<p>For the first issue I found Dossy’s excelent <a href="http://dossy.org/2007/10/character-counting-plugin-for-pidgin/" target="_blank">character counting plugin</a>, but I couldn’t find anything for URL shortening so… I made one <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Shorten URL</strong> is a very simple Pidgin plugin. It adds a new button on the conversation window’s toolbar that pops up a dialog which allows you to shrink an URL using a specialized web service. </p>
<p><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="shorten-url" border="0" alt="shorten-url" src="http://stefancosma.files.wordpress.com/2009/06/shortenurl.png?w=456&#038;h=381" width="456" height="381" /> </p>
<p>By default it uses <a href="http://is.gd/" target="_blank">is.gd</a> because it creates very small URL’s. Initially I wanted to support many services but I could not find an easy way to add a combo box to the dialog. I still plan to add this in the future, when I find some time to dig more in the Pidgin’s API. Right now the only way to modify the service is to change the source and recompile the code.</p>
<p>You can download the plugin as a precompiled Windows DLL that can be copied in you Pidgin’s plugins folder, or you can take the source code and compile it for any platform that Pidgin runs on.</p>
<ul>
<li><a href="http://cid-7508a80c8882a443.skydrive.live.com/self.aspx/Public/Stuff/Pidgin/shorturl.zip" target="_blank">Download shorturl.dll</a></li>
<li><a href="http://cid-7508a80c8882a443.skydrive.live.com/self.aspx/Public/Stuff/Pidgin/shorturl.c" target="_blank">Download shorturl.c</a>&#160;</li>
</ul>
<p>Enjoy!</p>
<br />Posted in Pidgin, Plugins, Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/stefancosma.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/stefancosma.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/stefancosma.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/stefancosma.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/stefancosma.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/stefancosma.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/stefancosma.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/stefancosma.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/stefancosma.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/stefancosma.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/stefancosma.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/stefancosma.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/stefancosma.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/stefancosma.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=stefancosma.wordpress.com&amp;blog=3130026&amp;post=8&amp;subd=stefancosma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://stefancosma.wordpress.com/2009/06/24/shorten-url-plugin-for-pidgin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7df4d45d6cf6b92b399764532c2207c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">stefanc</media:title>
		</media:content>

		<media:content url="http://stefancosma.files.wordpress.com/2009/06/shortenurl.png" medium="image">
			<media:title type="html">shorten-url</media:title>
		</media:content>
	</item>
		<item>
		<title>Global Hotkeys for iTunes</title>
		<link>http://stefancosma.wordpress.com/2009/05/28/global-hotkeys-for-itunes/</link>
		<comments>http://stefancosma.wordpress.com/2009/05/28/global-hotkeys-for-itunes/#comments</comments>
		<pubDate>Wed, 27 May 2009 22:12:45 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
				<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://stefancosma.wordpress.com/2009/05/28/global-hotkeys-for-itunes/</guid>
		<description><![CDATA[I always had a love/hate relationship with iTunes. I started using it a couple of years ago when I received an iPod Nano as a present for my birthday. I was immediately hooked by the library and podcast management features. But iTunes can be very annoying sometimes. With each new version the application speed seems [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=stefancosma.wordpress.com&amp;blog=3130026&amp;post=6&amp;subd=stefancosma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I always had a love/hate relationship with iTunes. I started using it a couple of years ago when I received an iPod Nano as a present for my birthday. I was immediately hooked by the library and podcast management features.</p>
<p>But iTunes can be very annoying sometimes. With each new version the application speed seems to decrease, startup times are bigger and program features seem to randomly disappear and reappear. For example the update from version 7 to 8 removed among others all the podcast management options and the ability to import songs as mp3 files. The latter magically appeared back in version 8.1. Also there is no way to control the player while other programs have focus using some system-wide key combination and there are no notifications when songs change. </p>
<p>In spite all this I still use it is my default music player because it’s the best way to manage my iPod and it’s one of the best podcast managers out there. And a few other cool features like iTunes U and <a href="http://www.audible.com/" target="_blank">Audible.com</a> support.</p>
<p>Although the extensibility model for iTunes is not great, I found a <a href="http://itunesnowplayin.sourceforge.net/" target="_blank">plug-in</a> that “displays a popup notifier window with track information (art cover, song name, artist, album)” each time a new track is played and a few applications that add global hotkeys support. I used for a while Jacob Hickman’s <a href="http://www.jacobhickman.com/hotkeys/" target="_blank">application</a> but this is an external application, not an iTunes plug-in so every time you want to use it you have to remember to open it. What I really wanted was something similar with the iTunes toaster plug-in that added global hotkeys to the player.</p>
<p>And so <a href="http://ighp.berlios.de" target="_blank">iTunes Global Hotkeys Plug-in for Windows</a> (ighp) was born. Ighp enables the user to trigger different actions using predefined shortcuts even if the player is minimized or hidden, just like the external apps do. The advantage is that it is automatically started and stopped with the player. You do not have to worry about anything else.</p>
<p>To achieve this, ighp uses a technique similar with the one used by the toaster plug-in. iTunes supports only visual plug-ins so ighp uses iTunes Visual Plug-ins SDK to make the player think it is a visual plug-in.</p>
<p><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="Global Hotkeys Plugin Visualizer" border="0" alt="Global Hotkeys Plugin Visualizer" src="http://stefancosma.files.wordpress.com/2009/05/ighpvisualizer.png?w=628&#038;h=403" width="628" height="403" /></p>
<p>After the plug-in is loaded, it uses the iTunes COM for Windows SDK to control the player, just like the external applications do. The following actions are supported:</p>
<p>
<table>
<tbody>
<tr>
<th>Action </th>
<th>Description </th>
</tr>
<tr>
<td>PlayPause </td>
<td>toggle play/pause </td>
</tr>
<tr>
<td>NextTrack </td>
<td>advance to the next track in playlist </td>
</tr>
<tr>
<td>PreviousTrack </td>
<td>go back to previous track in playlist </td>
</tr>
<tr>
<td>ToggleRandom </td>
<td>toggle random on/off </td>
</tr>
<tr>
<td>ToggleRepeat </td>
<td>toggle repeat on/off </td>
</tr>
<tr>
<td>SongRatingClear </td>
<td>clear rating for the selected song </td>
</tr>
<tr>
<td>SongRating1 </td>
<td>set rating to one star </td>
</tr>
<tr>
<td>SongRating2 </td>
<td>set rating to two stars </td>
</tr>
<tr>
<td>SongRating3 </td>
<td>set rating to three stars </td>
</tr>
<tr>
<td>SongRating4 </td>
<td>set rating to four stars </td>
</tr>
<tr>
<td>SongRating5 </td>
<td>set rating to five stars </td>
</tr>
<tr>
<td>ShowHide </td>
<td>minimize/restore player window </td>
</tr>
<tr>
<td>VolumeUp </td>
<td>increase volume level </td>
</tr>
<tr>
<td>VolumeDown </td>
<td>decrease volume level </td>
</tr>
<tr>
<td>ToggleMute </td>
<td>toggle mute/unmute </td>
</tr>
<tr>
<td>OpenSettingsFile </td>
<td>Open settings file in notepad </td>
</tr>
<tr>
<td>ReloadHotkeys </td>
<td>Read the configuration file and reload the hotkey bindings </td>
</tr>
</tbody>
</table>
<p>By default, only two actions are configured: OpenSettingsFile (Ctrl+Shift+P) and ReloadHotkeys (Ctrl+Shift+R). You can configure more actions using the <a href="http://ighp.berlios.de/#configuration" target="_blank">instructions</a> on the project’s page and then you can reload the configuration to activate the hotkeys. Here is an example of a typical settings file:</p>
<p><code>&lt;hotkeys&gt;      <br />&#160; &lt;hotkey action=&quot;OpenSettingsFile&quot; key=&quot;P&quot; control=&quot;true&quot; shift=&quot;true&quot; /&gt;       <br />&#160; &lt;hotkey action=&quot;ReloadHotkeys&quot; key=&quot;R&quot; control=&quot;true&quot; shift=&quot;true&quot; /&gt;       <br />&#160; &lt;hotkey action=&quot;PlayPause&quot; key=&quot;Spacebar&quot; alt=&quot;true&quot;/&gt;       <br />&#160; &lt;hotkey action=&quot;NextTrack&quot; key=&quot;.&quot; alt=&quot;true&quot;/&gt;       <br />&#160; &lt;hotkey action=&quot;PreviousTrack&quot; key=&quot;,&quot; alt=&quot;true&quot;/&gt;       <br />&#160; &lt;hotkey action=&quot;ShowHide&quot; key=&quot;q&quot; alt=&quot;true&quot;/&gt;       <br />&#160; &lt;hotkey action=&quot;VolumeUp&quot; key=&quot;a&quot; alt=&quot;true&quot;/&gt;       <br />&#160; &lt;hotkey action=&quot;VolumeDown&quot; key=&quot;z&quot; alt=&quot;true&quot;/&gt;       <br />&lt;/hotkeys&gt;</code></p>
<p>The latest release of the plugin can be found <a href="http://developer.berlios.de/project/showfiles.php?group_id=9978" target="_blank">here</a>. iTunes Global Hotkeys Plugin is released under the MIT/X Consortium License. Feel free to download the source code and if you fix a bug, or add a new feature, just send me a patch.</p>
<br />Posted in iTunes, Plugins  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/stefancosma.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/stefancosma.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/stefancosma.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/stefancosma.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/stefancosma.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/stefancosma.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/stefancosma.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/stefancosma.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/stefancosma.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/stefancosma.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/stefancosma.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/stefancosma.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/stefancosma.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/stefancosma.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=stefancosma.wordpress.com&amp;blog=3130026&amp;post=6&amp;subd=stefancosma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://stefancosma.wordpress.com/2009/05/28/global-hotkeys-for-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7df4d45d6cf6b92b399764532c2207c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">stefanc</media:title>
		</media:content>

		<media:content url="http://stefancosma.files.wordpress.com/2009/05/ighpvisualizer.png" medium="image">
			<media:title type="html">Global Hotkeys Plugin Visualizer</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello blogging</title>
		<link>http://stefancosma.wordpress.com/2009/03/27/hello-blogging/</link>
		<comments>http://stefancosma.wordpress.com/2009/03/27/hello-blogging/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 22:14:16 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stefancosma.wordpress.com/2009/03/27/hello-blogging/</guid>
		<description><![CDATA[I tried microblogging a few months back and it seems to work. Now I want to start a blog where I will post when I have something to say in more than 140 characters. Real content coming soon… Posted in Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=stefancosma.wordpress.com&amp;blog=3130026&amp;post=4&amp;subd=stefancosma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I tried <a href="http://twitter.com/stefancosma" target="_blank">microblogging</a> a few months back and it seems to work. Now I want to start a blog where I will post when I have something to say in more than 140 characters. Real content coming soon…</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/stefancosma.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/stefancosma.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/stefancosma.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/stefancosma.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/stefancosma.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/stefancosma.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/stefancosma.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/stefancosma.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/stefancosma.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/stefancosma.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/stefancosma.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/stefancosma.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/stefancosma.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/stefancosma.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=stefancosma.wordpress.com&amp;blog=3130026&amp;post=4&amp;subd=stefancosma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://stefancosma.wordpress.com/2009/03/27/hello-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7df4d45d6cf6b92b399764532c2207c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">stefanc</media:title>
		</media:content>
	</item>
	</channel>
</rss>
