<?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>ShishhoOshh...</title>
	<atom:link href="http://filipelima.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://filipelima.com</link>
	<description>Rich Media and so much more...</description>
	<lastBuildDate>Fri, 13 Aug 2010 10:18:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Flex 4.0 UndoManager</title>
		<link>http://filipelima.com/?p=106</link>
		<comments>http://filipelima.com/?p=106#comments</comments>
		<pubDate>Fri, 13 Aug 2010 10:18:14 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[flex]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[undomanager]]></category>

		<guid isPermaLink="false">http://filipelima.com/?p=106</guid>
		<description><![CDATA[While doing some research googling I just came across a great post about one of the many new Flex functionalities in the 4.0 SDK. The UndoManager class as the author explains &#8220;is a part of the brand new shiny TextLayout framework, but, because it follows a basic Command design pattern, it’s very easy to adopt <a href="http://filipelima.com/?p=106" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>While doing some research googling I just came across a great post about one of the many new Flex functionalities in the 4.0 SDK.</p>
<p>The UndoManager class as the author explains <em>&#8220;is a part of the brand new shiny TextLayout framework,  but, because it follows a basic Command design pattern, it’s very easy  to adopt it to other aspects of your applications and allow  functionality that users expect/demand.&#8221;</em>.</p>
<p>Anyway&#8230; Ill leave you with the article and the great example&#8230; Im sure to play with this goody very soon <img src='http://filipelima.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://blog.onebyonedesign.com/actionscript/playing-around-with-the-new-undomanager/" target="_blank">http://blog.onebyonedesign.com/actionscript/playing-around-with-the-new-undomanager/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=106</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Red5&#8230;</title>
		<link>http://filipelima.com/?p=86</link>
		<comments>http://filipelima.com/?p=86#comments</comments>
		<pubDate>Wed, 23 Jun 2010 17:31:53 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://filipelima.com/?p=86</guid>
		<description><![CDATA[Recently working on a videochat application I wanted to use my own VPS server for some real world testing. Version 0.9 RC2 is the current available for Red5&#8230; and after fiddling trying to get things going, I found this cool tutorial which worked like a charm. Credits of course to the original poster: http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/ My <a href="http://filipelima.com/?p=86" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Recently working on a videochat application I wanted to use my own VPS server for some real world testing.</p>
<p>Version 0.9 RC2 is the current available for Red5&#8230; and after fiddling trying to get things going, I found this cool tutorial which worked like a charm.</p>
<p>Credits of course to the original poster:<br />
<a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/">http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/</a></p>
<p>My VPS is currently running on Ubuntu &#8220;Lucid&#8221; 10.04.</p>
<blockquote><p>First installed required packages one by one:<br />
<strong>apt-get install subversion<br />
apt-get install java-package<br />
apt-get install sun-java6-jdk<br />
apt-get install ant</strong></p>
<p>Used arrows to browse to the Ok and confirm on jdk installation  dialogs.</p>
<p>Verified installed java version:<strong><br />
java -version </strong></p>
<p>Downloaded latest Red5:<strong><br />
mkdir -p ~/svn/red5<br />
cd ~/svn/red5<br />
svn co http://red5.googlecode.com/svn/java/server/trunk red5</strong></p>
<p>Build Red5 with Ant:<br />
<strong>export JAVA_HOME=/usr/lib/jvm/java-6-sun/</strong><br />
<strong>export ANT_HOME=/usr/share/ant/</strong><br />
<strong>cd ~/svn/red5/red5<br />
/usr/share/ant/bin/ant</strong></p>
<p>Installed Red5:<strong><br />
mkdir /usr/share/red5<br />
cp -R dist/* /usr/share/red5/</strong><br />
<strong>cd /usr/share/red5<br />
chmod 755 red5.sh<br />
chmod 755 red5-shutdown.sh</strong></p>
<p>Started Red5:<br />
<strong>./red5.sh &gt; start.log &amp;</strong></p>
<p>Verified opened ports:<br />
<strong>netstat -ant</strong></p></blockquote>
<p>&#8230;and thats it.</p>
<p>Afterwards you just need to remember to direct your connections to rtmp:// on the default port 1935, and have a correspondent web app on your Red5 &#8220;webapps&#8221; folder&#8230; or just like I did, reuse a demo app ( I used the &#8216;live&#8217; one ), that best fits what you want to do. <img src='http://filipelima.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=86</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IntelliJ Idea9 AS3/Flex Workflow by Jesse Freeman</title>
		<link>http://filipelima.com/?p=83</link>
		<comments>http://filipelima.com/?p=83#comments</comments>
		<pubDate>Mon, 22 Mar 2010 10:20:12 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[intellij]]></category>

		<guid isPermaLink="false">http://quo.filipelima.com/blog/wordpress/?p=83</guid>
		<description><![CDATA[Recently Jesse Freeman at InsideRIA has been up to making some nice tutorials on using IntelliJ IDEA 9 for Flash/Flex development. Having turned myself into a IntelliJ 9 addict it was a no brainer to read what the nice man had to write. Definitely recommended folks! here you go: Part 1: http://www.insideria.com/2010/02/intellij-idea9-actionscript-3f.html Part 2: http://www.insideria.com/2010/03/intellij-idea9-actionscript-3f-1.html]]></description>
			<content:encoded><![CDATA[<p>Recently <a href="http://flashartofwar.com/" target="_blank">Jesse Freeman</a> at <a href="http://www.insideria.com" target="_blank">InsideRIA </a>has been up to making some nice tutorials on using IntelliJ IDEA 9 for Flash/Flex development.</p>
<p>Having turned myself into a IntelliJ 9 addict it was a no brainer to read what the nice man had to write.</p>
<p>Definitely recommended folks!</p>
<p>here you go:</p>
<p>Part 1: <a href="http://www.insideria.com/2010/02/intellij-idea9-actionscript-3f.html" target="_blank">http://www.insideria.com/2010/02/intellij-idea9-actionscript-3f.html</a></p>
<p>Part 2: <a href="http://www.insideria.com/2010/03/intellij-idea9-actionscript-3f-1.html" target="_blank">http://www.insideria.com/2010/03/intellij-idea9-actionscript-3f-1.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=83</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IntelliJ Idea 9 for Flash development</title>
		<link>http://filipelima.com/?p=64</link>
		<comments>http://filipelima.com/?p=64#comments</comments>
		<pubDate>Tue, 26 Jan 2010 01:13:38 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[intellij]]></category>

		<guid isPermaLink="false">http://quo.filipelima.com/blog/wordpress/?p=64</guid>
		<description><![CDATA[After quite some time talking about how great IntelliJ feels for Flash development, I just read a really great article on InsideRIA that correctly describes my love and hate&#8230; erm&#8230; well more like not-so-much-love about IntelliJ. Here you go folks: http://www.insideria.com/2010/01/intellij-idea-9-for-flash-dev.html]]></description>
			<content:encoded><![CDATA[<p>After quite some time talking about how great IntelliJ feels for Flash development, I just read a really great article on <a href="http://www.insideria.com">InsideRIA</a> that correctly describes my love and hate&#8230; erm&#8230; well more like not-so-much-love about IntelliJ.</p>
<p>Here you go folks:<br />
<a href="http://www.insideria.com/2010/01/intellij-idea-9-for-flash-dev.html">http://www.insideria.com/2010/01/intellij-idea-9-for-flash-dev.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=64</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LBi Xmas mobile tree</title>
		<link>http://filipelima.com/?p=57</link>
		<comments>http://filipelima.com/?p=57#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:34:01 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[ria]]></category>
		<category><![CDATA[lbi]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://quo.filipelima.com/blog/wordpress/?p=57</guid>
		<description><![CDATA[I can finally announce my final work while at LBi, and what a work it was! 4 weeks of intense out-of-work-hours coding and planning, but the results are great! Ill leave you to play&#8230; http://xmas.lbi.co.uk ( unfortunately it seems it only lasted christmas ) &#8230;and read&#8230; http://www.lbi.co.uk/our-work/a-christmas-collaboration/ http://upcycle.ning.com/ Find more photos like this on The <a href="http://filipelima.com/?p=57" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>I can finally announce my final work while at LBi, and what a work it was!<br />
4 weeks of intense out-of-work-hours coding and planning, but the results are great!</p>
<p><img class="alignnone" title="LBi Xmas Tree" src="http://www.lbi.co.uk/assets/xmas_reception_0-300x199.jpg" alt="" width="300" height="199" /></p>
<p><span style="text-decoration: line-through;">Ill leave you to play&#8230;<a href="http://xmas.lbi.co.uk"> http://xmas.lbi.co.uk</a></span><br />
<span style="color: #ff0000;"><strong>( unfortunately it seems it only lasted christmas )</strong></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/8wg6bL3vfgE&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/8wg6bL3vfgE&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>&#8230;and read&#8230;<a href="http://www.lbi.co.uk/our-work/a-christmas-collaboration/"></p>
<p>http://www.lbi.co.uk/our-work/a-christmas-collaboration/</a></p>
<p><a href="http://upcycle.ning.com/">http://upcycle.ning.com/</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="394" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="bgcolor" value="#" /><param name="flashvars" value="feed_url=http%3A%2F%2Fupcycle.ning.com%2Fphoto%2Fphoto%2FslideshowFeed%3Fxn_auth%3Dno%26mtime%3D1259850564%26x%3D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu%26x%3D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu&amp;autoplay=1&amp;config_url=http%3A%2F%2Fupcycle.ning.com%2Fphoto%2Fphoto%2FshowPlayerConfig%3Fx%3D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu%26xn_auth%3Dno%26feed_url%3Dhttp%253A%252F%252Fupcycle.ning.com%252Fphoto%252Fphoto%252FslideshowFeed%253Fxn_auth%253Dno%2526mtime%253D1259850564%2526x%253D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu%2526x%253D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu%26version%3DDEP-3287%253A4ea081c_24_24_10&amp;slideshow_title=&amp;fullsize_url=http%3A%2F%2Fupcycle.ning.com%2Fphoto%2Fphoto%2Fslideshow%3Ffeed_url%3Dhttp%253A%252F%252Fupcycle.ning.com%252Fphoto%252Fphoto%252FslideshowFeed%253Fxn_auth%253Dno%2526mtime%253D1259850564%2526x%253D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu" /><param name="src" value="http://static.ning.com/socialnetworkmain/widgets/photo/slideshowplayer/slideshowplayer.swf?v=200912101700" /><param name="wmode" value="opaque" /><param name="allowfullscreen" value="true" /><param name="quality" value="high" /><embed type="application/x-shockwave-flash" width="500" height="394" src="http://static.ning.com/socialnetworkmain/widgets/photo/slideshowplayer/slideshowplayer.swf?v=200912101700" quality="high" allowfullscreen="true" wmode="opaque" flashvars="feed_url=http%3A%2F%2Fupcycle.ning.com%2Fphoto%2Fphoto%2FslideshowFeed%3Fxn_auth%3Dno%26mtime%3D1259850564%26x%3D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu%26x%3D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu&amp;autoplay=1&amp;config_url=http%3A%2F%2Fupcycle.ning.com%2Fphoto%2Fphoto%2FshowPlayerConfig%3Fx%3D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu%26xn_auth%3Dno%26feed_url%3Dhttp%253A%252F%252Fupcycle.ning.com%252Fphoto%252Fphoto%252FslideshowFeed%253Fxn_auth%253Dno%2526mtime%253D1259850564%2526x%253D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu%2526x%253D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu%26version%3DDEP-3287%253A4ea081c_24_24_10&amp;slideshow_title=&amp;fullsize_url=http%3A%2F%2Fupcycle.ning.com%2Fphoto%2Fphoto%2Fslideshow%3Ffeed_url%3Dhttp%253A%252F%252Fupcycle.ning.com%252Fphoto%252Fphoto%252FslideshowFeed%253Fxn_auth%253Dno%2526mtime%253D1259850564%2526x%253D02HiKWVLCtbzK0c9M8RzC4ZXlNH3xWbu" bgcolor="#"></embed></object><br />
<small><a href="http://upcycle.ning.com/photo/photo">Find more photos like this on <em>The LBi Upcycle Xmas Grotto</em></a></small></p>
<h2><span style="color: #ff0000;"><strong><br />
&#8230;UPDATE:</strong></span></h2>
<p>Just saw a cool post you Youtube of the making of! Thanks guys!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/GKpXr0ILzlU&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/GKpXr0ILzlU&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=57</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LBi London RaVE!</title>
		<link>http://filipelima.com/?p=55</link>
		<comments>http://filipelima.com/?p=55#comments</comments>
		<pubDate>Mon, 30 Nov 2009 11:03:56 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[...]]></category>
		<category><![CDATA[lbi]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[rave]]></category>

		<guid isPermaLink="false">http://quo.filipelima.com/blog/wordpress/?p=55</guid>
		<description><![CDATA[Last thursday the agency I work for &#8211; LBi London &#8211; organised the biggest digital industry rave party in London. Around 700 people from loads of different digital agencies in London came to join the fun. Here&#8217;s some pics from the night: http://www.flickr.com/photos/emmaandlorenzo/sets/72157622760985539/ &#8230;needless to say I had a sick leave the next day]]></description>
			<content:encoded><![CDATA[<p>Last thursday the agency I work for &#8211; LBi London &#8211; organised the biggest digital industry rave party in London.<br />
Around 700 people from loads of different digital agencies in London came to join the fun.</p>
<p>Here&#8217;s some pics from the night:<br />
<a href="http://www.flickr.com/photos/emmaandlorenzo/sets/72157622760985539/">http://www.flickr.com/photos/emmaandlorenzo/sets/72157622760985539/</a></p>
<p>&#8230;needless to say I had a sick leave the next day <img src='http://filipelima.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=55</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RegExr: Online Regular Expression Testing Tool!</title>
		<link>http://filipelima.com/?p=53</link>
		<comments>http://filipelima.com/?p=53#comments</comments>
		<pubDate>Thu, 26 Nov 2009 11:05:21 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">http://quo.filipelima.com/blog/wordpress/?p=53</guid>
		<description><![CDATA[Uhhh&#8230; there&#8217;s a couple of words that always make my blood freeze and dodge for cover&#8230;. &#8220;regex&#8221; is definitely one of them. But it seems I need to fear no more&#8230; just recently discovered &#8220;RegExr&#8221;! which has been a great helping hand at solving most of my anyday regex needs. Its also comunity open, so <a href="http://filipelima.com/?p=53" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Uhhh&#8230; there&#8217;s a couple of words that always make my blood freeze and dodge for cover&#8230;. &#8220;regex&#8221; is definitely one of them.</p>
<p>But it seems I need to fear no more&#8230; just recently discovered &#8220;RegExr&#8221;! which has been a great helping hand at solving most of my anyday regex needs.</p>
<p>Its also comunity open, so you can see already alot of user input with new regex solutions for most everyday needs.</p>
<p>Check it out! <a href="http://gskinner.com/RegExr/">http://gskinner.com/RegExr/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=53</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Vs PC&#8230; extract .dfont to .ttf</title>
		<link>http://filipelima.com/?p=46</link>
		<comments>http://filipelima.com/?p=46#comments</comments>
		<pubDate>Tue, 24 Nov 2009 17:44:12 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[fondu]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://quo.filipelima.com/blog/wordpress/?p=46</guid>
		<description><![CDATA[How many&#8230; oh how many times you crash into the same subject again and again, you are given Mac fonts but hey&#8230; dont work in Windows :s &#8230; and most importantly&#8230; no Embedding in Flash as its only either TrueType or OpenType. Well atleast now a blog post came as a nice surprise to me&#8230; <a href="http://filipelima.com/?p=46" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>How many&#8230; oh how many times you crash into the same subject again and again, you are given Mac fonts but hey&#8230; dont work in Windows :s &#8230; and most importantly&#8230; no Embedding in Flash as its only either TrueType or OpenType.</p>
<p>Well atleast now a blog post came as a nice surprise to me&#8230; a little opensource terminal app called &#8220;fondu&#8221;</p>
<p>just install via MacPorts or apt-get and go&#8230;</p>
<p>&#8221; fondu myFont.dfont &#8221;</p>
<p>and the app will extract all your TrueType goodness into the same folder <img src='http://filipelima.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  neat!</p>
<p>many thanks to&#8230;</p>
<p><a href="http://fosswire.com/post/2008/5/extract-mac-font-files-dfont-into-ttf-files/">http://fosswire.com/post/2008/5/extract-mac-font-files-dfont-into-ttf-files/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=46</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git hooks &#8211; post-update</title>
		<link>http://filipelima.com/?p=45</link>
		<comments>http://filipelima.com/?p=45#comments</comments>
		<pubDate>Fri, 20 Nov 2009 17:13:14 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[gitosis]]></category>
		<category><![CDATA[mercurial]]></category>

		<guid isPermaLink="false">http://quo.filipelima.com/blog/wordpress/?p=45</guid>
		<description><![CDATA[For a while now I have been using Mercurial for my own personal version control system, been very happy and never really got dissapointed so far, hg-serve works really easy for serving your repository publicaly with its own menus and stuff&#8230; not visually engaging but does the job well. Ive been trying and little by <a href="http://filipelima.com/?p=45" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>For a while now I have been using Mercurial for my own personal version control system, been very happy and never really got dissapointed so far, hg-serve works really easy for serving your repository publicaly with its own menus and stuff&#8230; not visually engaging but does the job well.</p>
<p>Ive been trying and little by little I guess moving the git way&#8230; mostly to be honest because the world around me seems to use it, and because I really cant be bothered to try and master to version control systems at once, so Mercurial seems great and maybe even better&#8230; but ill focus most of my time now on git.</p>
<p>Which leads me to my experience so far, so its pretty much the same syntax to be honest and leaves me quite happy.<br />
But my problems have been on trying to serve my reps publicly, I wont even go on about configuring gitosis because that one has been giving me a bit of a headache to the honest.</p>
<p>But on a recent project I have been working on with a friend I wanted to do things right and have him be able to have pull rights to see the updates on the project as I go along. Well&#8230;. after many tries on using the git daemon and running into all sorts of nonsense errors, I decided to simply make a symlink to a protected directory on my www and have him clone/pull through http://</p>
<p>Well that worked well for the cloning, but then as I did my updates, on his end he kept seing &#8220;Already-up-to-date&#8221; which didnt quite seem right.</p>
<p>And all this post just to write a little tip if you are trying to do something similar&#8230;</p>
<p>Git has kind of like an event system called &#8220;hooks&#8221; (.git/hooks) which get triggered upon certain functions getting executed. So for my case I activated the hook &#8216;post-update&#8217; which gets triggered when a push gets completed to the server and calls git to &#8220;update-server-info&#8221;, updating the needed information for pull&#8217;s to work as they should.</p>
<p>Ok so this was way of a bigger post then I expected&#8230; but I guess it makes for all the times I think about writting and then dont&#8230; duhhh! <img src='http://filipelima.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
In</p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=45</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New EU President&#8230;</title>
		<link>http://filipelima.com/?p=42</link>
		<comments>http://filipelima.com/?p=42#comments</comments>
		<pubDate>Fri, 20 Nov 2009 13:38:25 +0000</pubDate>
		<dc:creator>Filipe Prata de Lima</dc:creator>
				<category><![CDATA[...]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://quo.filipelima.com/blog/wordpress/?p=42</guid>
		<description><![CDATA[The funny speaks for itself really&#8230; hehe&#8230;]]></description>
			<content:encoded><![CDATA[<p>The funny speaks for itself really&#8230; hehe&#8230;</p>
<p><img class="alignnone size-full wp-image-41" title="eu_president_metro_co_uk" src="http://quo.filipelima.com/blog/wordpress/wp-content/uploads/2009/11/eu_president_metro_co_uk.png" alt="eu_president_metro_co_uk" width="646" height="466" /></p>
]]></content:encoded>
			<wfw:commentRss>http://filipelima.com/?feed=rss2&amp;p=42</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
