<?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>Florent Thoumie &#187; MacOS X</title>
	<atom:link href="http://blog.xbsd.org/category/macos-x/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.xbsd.org</link>
	<description>Geek stuff follows</description>
	<lastBuildDate>Fri, 25 Jun 2010 09:01:01 +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>Hacking youtube videos for iPhun (and profit)</title>
		<link>http://blog.xbsd.org/2009/05/07/hacking-youtube-videos-for-iphun-and-profit</link>
		<comments>http://blog.xbsd.org/2009/05/07/hacking-youtube-videos-for-iphun-and-profit#comments</comments>
		<pubDate>Thu, 07 May 2009 10:24:06 +0000</pubDate>
		<dc:creator>Florent Thoumie</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[ringtones]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://blog.xbsd.org/?p=213</guid>
		<description><![CDATA[If you&#8217;re not an iPhone owner, then you&#8217;re probably not going to be interested by this post. If you don&#8217;t like custom ringtones then you&#8217;re definitely not going to be interested by this post. If you&#8217;re still reading, I&#8217;ll explain you quickly how to convert youtube videos to iphone ringtones. This is basically going to [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[	<p>If you&#8217;re not an iPhone owner, then you&#8217;re probably not going to be interested by this post. If you don&#8217;t like custom ringtones then you&#8217;re definitely not going to be interested by this post. If you&#8217;re still reading, I&#8217;ll explain you quickly how to convert <a href="http://www.youtube.com/">youtube</a> videos to iphone ringtones.</p>

	<p>This is basically going to be a quick walkthrough rather than a long explanation. Basically you need a way to download the youtube video (like <a href="http://bitbucket.org/rg3/youtube-dl/wiki/Home">youtube-dl</a>) and <a href="http://www.ffmpeg.org/">ffmpeg</a> compiled with faac support.</p>

	<p>For FreeBSD users, this is as simple as installing the two ports: net/youtube_dl and multimedia/ffmpeg (make sure to run &#8216;make config&#8217; and check that <span class="caps">FAAC</span> is on). For MacOS X users, the easiest way will be to download youtube-dl to your home directory (and put it in /usr/local/bin if you wish) and install ffmpeg following <a href="http://www.macosxhints.com/article.php?story=20061220082125312">these</a> instructions. Windows users can install <a href="http://www.iringer.net/">iRinger</a> (haven&#8217;t tried it but it looks quite nifty).</p>

	<p>Ok, now for the actual information (this is actually pretty easy).</p>

	<p>First, find a video you like (in my case, <a href="http://www.youtube.com/watch?v=2WNrx2jq184">Bird is the word in Family Guy</a>) and download it.</p>

	<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/2WNrx2jq184&#38;hl=en&#38;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/2WNrx2jq184&#38;hl=en&#38;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>

<pre>
$ youtube-dl 'http://www.youtube.com/watch?v=2WNrx2jq184'
</pre>

	<p>Then drop the video part and convert the <span class="caps">MPEG</span> stream to <span class="caps">AAC</span>.</p>

<pre>
$ ffmpeg -i 2WNrx2jq184.flv -f ipod -vn birdistheword.m4r
</pre>

	<p>Alright, that&#8217;s it! Wait, I want to get rid of the first few seconds and the last few seconds as well. Let&#8217;s just play it in mplayer (or QuickTime, or iTunes) and find the offset (-ss option) then the length (-t option). The -y option is to force overwrite the output file.</p>

<pre>
$ ffmpeg -i 2WNrx2jq184.flv -f ipod -vn -ss 28.6 -t 44.2 -y birdistheword.m4r
</pre>

	<p>Once this is finished, just send the ringtone to the iPhone, either using scp if your iphone is jailbroken (put it in /Library/Ringtones/) or via iTunes (just drag and drop it in Ringtones, then sync the iPhone). Enjoy!</p>
 


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.xbsd.org%2F2009%2F05%2F07%2Fhacking-youtube-videos-for-iphun-and-profit&amp;title=Hacking%20youtube%20videos%20for%20iPhun%20%28and%20profit%29&amp;bodytext=If%20you%27re%20not%20an%20iPhone%20owner%2C%20then%20you%27re%20probably%20not%20going%20to%20be%20interested%20by%20this%20post.%20If%20you%20don%27t%20like%20custom%20ringtones%20then%20you%27re%20definitely%20not%20going%20to%20be%20interested%20by%20this%20post.%20If%20you%27re%20still%20reading%2C%20I%27ll%20explain%20you%20quickly%20how%20to%20c" title="Digg"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.xbsd.org%2F2009%2F05%2F07%2Fhacking-youtube-videos-for-iphun-and-profit&amp;title=Hacking%20youtube%20videos%20for%20iPhun%20%28and%20profit%29&amp;notes=If%20you%27re%20not%20an%20iPhone%20owner%2C%20then%20you%27re%20probably%20not%20going%20to%20be%20interested%20by%20this%20post.%20If%20you%20don%27t%20like%20custom%20ringtones%20then%20you%27re%20definitely%20not%20going%20to%20be%20interested%20by%20this%20post.%20If%20you%27re%20still%20reading%2C%20I%27ll%20explain%20you%20quickly%20how%20to%20c" title="del.icio.us"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.xbsd.org%2F2009%2F05%2F07%2Fhacking-youtube-videos-for-iphun-and-profit&amp;t=Hacking%20youtube%20videos%20for%20iPhun%20%28and%20profit%29" title="Facebook"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.xbsd.org%2F2009%2F05%2F07%2Fhacking-youtube-videos-for-iphun-and-profit&amp;title=Hacking%20youtube%20videos%20for%20iPhun%20%28and%20profit%29&amp;annotation=If%20you%27re%20not%20an%20iPhone%20owner%2C%20then%20you%27re%20probably%20not%20going%20to%20be%20interested%20by%20this%20post.%20If%20you%20don%27t%20like%20custom%20ringtones%20then%20you%27re%20definitely%20not%20going%20to%20be%20interested%20by%20this%20post.%20If%20you%27re%20still%20reading%2C%20I%27ll%20explain%20you%20quickly%20how%20to%20c" title="Google Bookmarks"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Hacking%20youtube%20videos%20for%20iPhun%20%28and%20profit%29%20-%20http%3A%2F%2Fblog.xbsd.org%2F2009%2F05%2F07%2Fhacking-youtube-videos-for-iphun-and-profit" title="Twitter"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.xbsd.org/2009/05/07/hacking-youtube-videos-for-iphun-and-profit/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Desktop experience improvements on FreeBSD</title>
		<link>http://blog.xbsd.org/2006/10/19/desktop-experience-improvements-on-freebsd</link>
		<comments>http://blog.xbsd.org/2006/10/19/desktop-experience-improvements-on-freebsd#comments</comments>
		<pubDate>Thu, 19 Oct 2006 11:42:41 +0000</pubDate>
		<dc:creator>Florent Thoumie</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[X.org]]></category>

		<guid isPermaLink="false">http://blog.xbsd.org/2006/10/19/desktop-experience-improvements-on-freebsd/</guid>
		<description><![CDATA[As you should know if you&#8217;re a FreeBSD on desktop user, Gnome 2.16 has been committed to the FreeBSD Ports Tree few days ago. Being a Gnome user myself, I upgraded from 2.14 to 2.16 as soon as I had a little free time. To say the least, it&#8217;s been quite painful (I&#8217;m not blaming [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[	<p>As you should know if you&#8217;re a FreeBSD on desktop user, Gnome 2.16 has been committed to the FreeBSD Ports Tree few days ago. Being a Gnome user myself, I upgraded from 2.14 to 2.16 as soon as I had a little free time. To say the least, it&#8217;s been quite painful (I&#8217;m not blaming anyone, that&#8217;s just a fact, I don&#8217;t really care if I need to spend 2 hours checking what&#8217;s wrong and how to fix, really). If you haven&#8217;t yet upgraded, you might have problems related to the <span class="caps">PREFIX</span> change (Gnome moved from <span class="caps">X11BASE</span> to <span class="caps">LOCALBASE</span>, which by default are respectively /usr/X11R6 and /usr/local). You can also experience problems with duplicated origins, which means, you&#8217;ll end up with package X-2.14 installed in <span class="caps">X11BASE</span> and X-2.16 in <span class="caps">LOCALBASE</span>. Depending on whether dependant packages check libraries and header files in <span class="caps">X11BASE</span> or in <span class="caps">LOCALBASE</span> first, this might break the build. Anyway it&#8217;s done now and there won&#8217;t be a <span class="caps">PREFIX</span> move again (for Gnome at least).</p>

	<p><strong>Note:</strong> I&#8217;m reinstalling my laptop with FreeBSD 6.1-RELEASE and a fresh Ports Tree. Though it&#8217;s not over yet, I&#8217;m pretty sure it&#8217;ll be ok. If you&#8217;re installing a new machine, set <span class="caps">X11BASE</span> to ${LOCALBASE} in make.conf and symlink /usr/X11R6 to /usr/local. Be aware that you may have some not-yet-discovered <span class="caps">CONFLICTS</span> arising (some X package overwriting files from package Y).</p>

	<p>So what&#8217;s new in 2.16 for FreeBSD. Well, if I had to give only one name, that would be <a href="http://www.freedesktop.org/wiki/Software/hal" title=""><span class="caps">HAL</span></a>. <span class="caps">HAL</span> stands for Hardware Abstraction Layer. Read the freedesktop page, it&#8217;s not wasted time. Now, things just works. When you plug your <span class="caps">USB</span> key, the <span class="caps">HAL</span> daemon will mount it and nautilus will pop-up a browsing window. When you insert an audio CD or a <span class="caps">DVD</span>, totem will start and play the content (well, doesn&#8217;t work here at the moment, but that might be a local problem). That&#8217;s a basic feature, Windows has had it for years now, but that&#8217;s definitely a step in the right direction. What next? <a href="http://www.freedesktop.org/wiki/Software/dbus" title="">D-BUS</a>. Well, it&#8217;s not really new, but more and more applications are using it. D-BUS is a mean for applications to communicate with each other. For example, now Evolution is sending a D-BUS message everytime it receives a new mail (via a plug-in). Then it becomes very easy to write a small app that listens on the bus and uses libnotify to show a pop-up everytime a message is sent (actually, there&#8217;s already a PoC <a href="http://iapart.net/tresc.php?id=17" title="">here</a>).</p>

	<p>Last year I got a PowerBook G4 which I&#8217;m playing with on a regular basis. The killer-apps I found were <a href="http://www.apple.com/macosx/features/expose/" title="">Expose</a>, <a href="http://www.apple.com/macosx/features/spotlight/" title="">Spotlight</a> and the Dock. Expose is Apple&#8217;s software that &#8220;expose&#8221; all your windows at the same time, it&#8217;s a good replacement for Alt-Tab that uses the mouse instead of the keyboard. It&#8217;s only really useful if you combine it with sensitive corners otherwise you have to use both the mouse and the keyboard. Spotlight is an integrated search engine, that finds almost everything indexed related to keywords (like your mails if you&#8217;re using Apple Mail, files, applications, ...).</p>

	<p>Since I try to be on the bleeding-edge when it comes to shiny new <span class="caps">UNIX</span> features (not that I understand everything, far from it), I read about new features/applications in the X domain (XGL, AiGLX, Compiz, Beryl, ...), I saw the Beryl has its own version of Expose (*hint*: search beryl+aiglx on <a href="http://www.youtube.com/" title="">youtube</a>). Yay, problem is, we don&#8217;t have a recent X.org and beryl in ports (may come as an Xmas present <img src='http://blog.xbsd.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ). Ok, I&#8217;ll wait for this one. Next. Some months ago, I read about <a href="http://www.beagle-project.org/" title="">Beagle</a>, a project similar to Spotlight. It indexes your stuff, and you can then make queries. Problem was at that time, beagle depended on a kernel with inotify support (which is completely Linux-centric). Well actually, it doesn&#8217;t depend on it, but that&#8217;s unusable without it. Then some people (jylefort@, <span class="caps">IIRC</span>) wrote a kqueue replacement. And there was much rejoicement. I tested beagle yesterday evening, and besides few crashes and some things I don&#8217;t understand yet (supposed to index Evolution mails but it doesn&#8217;t), it seems to work pretty well. <strong>Grin</strong>, that&#8217;s another win. Then what can we use on Unix, us, Dock-lovers. I need to say that I <strong>hate</strong> Gnome panels, really. At some point, I used a gdesklets plugin, and though it was really nice at that time (2003 <span class="caps">IIRC</span>), it was eating all my <span class="caps">RAM</span>. Meet <a href="http://people.freedesktop.org/~krh/akamaru.git/" title="">akamaru</a>. As you can read, the initial goal wasn&#8217;t to create a dock. This is just <strong>awesome</strong>, and I mean it, have a look at youtube again and search for <a href="http://forum.beryl-project.org/topic-4868-kiba-dock-package" title="">kiba</a>. Agreed, you don&#8217;t need all these effects, but that&#8217;s what makes it awesome. I tried it few weeks ago and the configuration of the dock wasn&#8217;t really straight-forward. I had to edit a shell script that wrote gconf entries I think. It seems kiba-dock is a fork of the demo-dock, I&#8217;m not sure. Anyway, it doesn&#8217;t seem to work if you don&#8217;t have <span class="caps">XGL</span> or <span class="caps">AIGLX</span> with compositing enabled. Anyway, things are really getting better and it&#8217;s not hard to conceive that all those Windows replacements (Ubuntu, Fedora Core, <span class="caps">SLED</span>) will gain a lot of popularity in the next few months/years.</p>
 


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.xbsd.org%2F2006%2F10%2F19%2Fdesktop-experience-improvements-on-freebsd&amp;title=Desktop%20experience%20improvements%20on%20FreeBSD&amp;bodytext=p.%20As%20you%20should%20know%20if%20you%27re%20a%20FreeBSD%20on%20desktop%20user%2C%20Gnome%202.16%20has%20been%20committed%20to%20the%20FreeBSD%20Ports%20Tree%20few%20days%20ago.%20Being%20a%20Gnome%20user%20myself%2C%20I%20upgraded%20from%202.14%20to%202.16%20as%20soon%20as%20I%20had%20a%20little%20free%20time.%20To%20say%20the%20least%2C%20it%27s%20been%20" title="Digg"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.xbsd.org%2F2006%2F10%2F19%2Fdesktop-experience-improvements-on-freebsd&amp;title=Desktop%20experience%20improvements%20on%20FreeBSD&amp;notes=p.%20As%20you%20should%20know%20if%20you%27re%20a%20FreeBSD%20on%20desktop%20user%2C%20Gnome%202.16%20has%20been%20committed%20to%20the%20FreeBSD%20Ports%20Tree%20few%20days%20ago.%20Being%20a%20Gnome%20user%20myself%2C%20I%20upgraded%20from%202.14%20to%202.16%20as%20soon%20as%20I%20had%20a%20little%20free%20time.%20To%20say%20the%20least%2C%20it%27s%20been%20" title="del.icio.us"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.xbsd.org%2F2006%2F10%2F19%2Fdesktop-experience-improvements-on-freebsd&amp;t=Desktop%20experience%20improvements%20on%20FreeBSD" title="Facebook"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.xbsd.org%2F2006%2F10%2F19%2Fdesktop-experience-improvements-on-freebsd&amp;title=Desktop%20experience%20improvements%20on%20FreeBSD&amp;annotation=p.%20As%20you%20should%20know%20if%20you%27re%20a%20FreeBSD%20on%20desktop%20user%2C%20Gnome%202.16%20has%20been%20committed%20to%20the%20FreeBSD%20Ports%20Tree%20few%20days%20ago.%20Being%20a%20Gnome%20user%20myself%2C%20I%20upgraded%20from%202.14%20to%202.16%20as%20soon%20as%20I%20had%20a%20little%20free%20time.%20To%20say%20the%20least%2C%20it%27s%20been%20" title="Google Bookmarks"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Desktop%20experience%20improvements%20on%20FreeBSD%20-%20http%3A%2F%2Fblog.xbsd.org%2F2006%2F10%2F19%2Fdesktop-experience-improvements-on-freebsd" title="Twitter"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.xbsd.org/2006/10/19/desktop-experience-improvements-on-freebsd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim and TextMate</title>
		<link>http://blog.xbsd.org/2005/10/27/vim-and-textmate</link>
		<comments>http://blog.xbsd.org/2005/10/27/vim-and-textmate#comments</comments>
		<pubDate>Thu, 27 Oct 2005 12:59:12 +0000</pubDate>
		<dc:creator>Florent Thoumie</dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://blog.xbsd.org/?p=30</guid>
		<description><![CDATA[Yesterday while cleaning my hard drive, I found the 20MinutesWiki video that presents TurboGears I downloaded some days ago and watched it. It&#8217;s quite impressive but what I seen besides technical stuff was the editor Kevin Dangoor (the presenter) was using : TextMate. It had some completion features that seemed quite nice. So, as a [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[	<p>Yesterday while cleaning my hard drive, I found the <a href="http://www.turbogears.org/docs/wiki20/20MinuteWiki.mov" title="">20MinutesWiki</a> video that presents <a href="http://www.turbogears.org/" title="">TurboGears</a> I downloaded some days ago and watched it. It&#8217;s quite impressive but what I seen besides technical stuff was the editor Kevin Dangoor (the presenter) was using : <a href="http://macromates.com/" title="">TextMate</a>. It had some completion features that seemed quite nice. So, as a vim user, I decided to look if someone already wrote such a plugin and finally found <a href="http://www.vim.org/scripts/script.php?script_id=1318" title="">it</a>!</p>

	<p>As an example, you can add this to your ~/.vim/ftplugin/c.vim (you need to change delimiter to &#8216;?&#8217;) :</p>

<pre><code>
Iabbr inc #include "?file?.h"^M??
</code></pre>

	<p>There are some issues though, the most important being it breaks the indentation (well, you can still use Ctrl-F).</p>
 


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.xbsd.org%2F2005%2F10%2F27%2Fvim-and-textmate&amp;title=Vim%20and%20TextMate&amp;bodytext=p.%20Yesterday%20while%20cleaning%20my%20hard%20drive%2C%20I%20found%20the%20%2220MinutesWiki%22%3Ahttp%3A%2F%2Fwww.turbogears.org%2Fdocs%2Fwiki20%2F20MinuteWiki.mov%20video%20that%20presents%20%22TurboGears%22%3Ahttp%3A%2F%2Fwww.turbogears.org%2F%20I%20downloaded%20some%20days%20ago%20and%20watched%20it.%20It%27s%20quite%20impressive" title="Digg"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.xbsd.org%2F2005%2F10%2F27%2Fvim-and-textmate&amp;title=Vim%20and%20TextMate&amp;notes=p.%20Yesterday%20while%20cleaning%20my%20hard%20drive%2C%20I%20found%20the%20%2220MinutesWiki%22%3Ahttp%3A%2F%2Fwww.turbogears.org%2Fdocs%2Fwiki20%2F20MinuteWiki.mov%20video%20that%20presents%20%22TurboGears%22%3Ahttp%3A%2F%2Fwww.turbogears.org%2F%20I%20downloaded%20some%20days%20ago%20and%20watched%20it.%20It%27s%20quite%20impressive" title="del.icio.us"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.xbsd.org%2F2005%2F10%2F27%2Fvim-and-textmate&amp;t=Vim%20and%20TextMate" title="Facebook"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.xbsd.org%2F2005%2F10%2F27%2Fvim-and-textmate&amp;title=Vim%20and%20TextMate&amp;annotation=p.%20Yesterday%20while%20cleaning%20my%20hard%20drive%2C%20I%20found%20the%20%2220MinutesWiki%22%3Ahttp%3A%2F%2Fwww.turbogears.org%2Fdocs%2Fwiki20%2F20MinuteWiki.mov%20video%20that%20presents%20%22TurboGears%22%3Ahttp%3A%2F%2Fwww.turbogears.org%2F%20I%20downloaded%20some%20days%20ago%20and%20watched%20it.%20It%27s%20quite%20impressive" title="Google Bookmarks"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Vim%20and%20TextMate%20-%20http%3A%2F%2Fblog.xbsd.org%2F2005%2F10%2F27%2Fvim-and-textmate" title="Twitter"><img src="http://blog.xbsd.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.xbsd.org/2005/10/27/vim-and-textmate/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
