<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>CAIH.org</title>
	<link>http://caih.org</link>
	<description>Movies, life and python</description>
	<lastBuildDate>Thu, 29 Jul 2010 17:23:55 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>CSS3 the easy way</title>
		<description><![CDATA[I just found out about PIE.htc, a javascript behavior file for IE that enables a lot of CSS3 on IE6+. I though of integrating it with my own css3hacks library to do all the work for ie. So today I just commited the library to google code. It is really simple to use. Just add [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/css3-the-easy-way/</link>
			</item>
	<item>
		<title>Notifiy in the App Store</title>
		<description><![CDATA[If you want to get notifications of changes in google wave in your iPhone, iPad or iPod touch check out the Notifiy app at the App Store. Related posts:Google Wave Notifications in your iPhone Google Wave Google Wave Email Notifications


Related posts:<ol><li><a href='http://caih.org/open-source-software/google-wave-notifications-in-your-iphone/' rel='bookmark' title='Permanent Link: Google Wave Notifications in your iPhone'>Google Wave Notifications in your iPhone</a></li>
<li><a href='http://caih.org/movies/139/' rel='bookmark' title='Permanent Link: Google Wave'>Google Wave</a></li>
<li><a href='http://caih.org/open-source-software/wave-email-notifications/google-wave-email-notifications/' rel='bookmark' title='Permanent Link: Google Wave Email Notifications'>Google Wave Email Notifications</a></li>
</ol>]]></description>
		<link>http://caih.org/open-source-software/notifiy-in-the-app-store/</link>
			</item>
	<item>
		<title>MS Office 2007 on Ubuntu 9.10 using wine</title>
		<description><![CDATA[For those of you that *REALLY* need MS Office and Open Office is not enough, then install wine just run this two commands on a terminal: wget http://www.kegel.com/wine/winetricks sh winetricks msxml3 dotnet20 gdiplus riched20 riched30\ &#160; &#160; &#160; &#160; &#160; &#160; &#160; vcrun2005sp1 allfonts &#160;wsh56js And then install using your installation CD. UPDATE: If you [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/ms-office-2007-on-ubuntu-9-10-using-wine/</link>
			</item>
	<item>
		<title>Is there any way to reliably parse email messages?</title>
		<description><![CDATA[What I&#8217;m talking about is constructing a tree from an email message. Usuallu when you get an email and reply back and forth then you end up with something that looks something like this: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. On 01/01/1970, [...]


Related posts:<ol><li><a href='http://caih.org/open-source-software/wave-email-notifications/google-wave-email-notifications/' rel='bookmark' title='Permanent Link: Google Wave Email Notifications'>Google Wave Email Notifications</a></li>
</ol>]]></description>
		<link>http://caih.org/uncategorized/is-there-any-way-to-reliably-parse-email-messages/</link>
			</item>
	<item>
		<title>Google Wave Notifications in your iPhone</title>
		<description><![CDATA[I have some news about the Notifiy robot (wave-email-notifications@googlewave.com). It can now send notifications to your iPhone when a wave is updated. The application will be available at the App Store very soon. Related posts:Google Wave Email Notifications Google Wave Notifiy in the App Store


Related posts:<ol><li><a href='http://caih.org/open-source-software/wave-email-notifications/google-wave-email-notifications/' rel='bookmark' title='Permanent Link: Google Wave Email Notifications'>Google Wave Email Notifications</a></li>
<li><a href='http://caih.org/movies/139/' rel='bookmark' title='Permanent Link: Google Wave'>Google Wave</a></li>
<li><a href='http://caih.org/open-source-software/notifiy-in-the-app-store/' rel='bookmark' title='Permanent Link: Notifiy in the App Store'>Notifiy in the App Store</a></li>
</ol>]]></description>
		<link>http://caih.org/open-source-software/google-wave-notifications-in-your-iphone/</link>
			</item>
	<item>
		<title>Google Wave Email Notifications</title>
		<description><![CDATA[I just created a google wave robot that sends email notifications when a wave is updated. To try it out just add: wave-email-notifications@appspot.com to the wave and that&#8217;s it. It&#8217;s currently in a beta stage so there are no guarantees. Visit the project home page at: http://wave-email-notifications.googlecode.com/ Related posts:Google Wave Notifications in your iPhone Google [...]


Related posts:<ol><li><a href='http://caih.org/open-source-software/google-wave-notifications-in-your-iphone/' rel='bookmark' title='Permanent Link: Google Wave Notifications in your iPhone'>Google Wave Notifications in your iPhone</a></li>
<li><a href='http://caih.org/movies/139/' rel='bookmark' title='Permanent Link: Google Wave'>Google Wave</a></li>
<li><a href='http://caih.org/uncategorized/is-there-any-way-to-reliably-parse-email-messages/' rel='bookmark' title='Permanent Link: Is there any way to reliably parse email messages?'>Is there any way to reliably parse email messages?</a></li>
</ol>]]></description>
		<link>http://caih.org/open-source-software/wave-email-notifications/google-wave-email-notifications/</link>
			</item>
	<item>
		<title>Tri-state checkbox in JavaScript</title>
		<description><![CDATA[I found myself needing to implement a tri-state checkbox in javascript. A checkbox has initially 2 states: on or off. From the html perspective if the checkbox is checked then the value is submitted, if it is not then the value is not submitted. From the javascript perspective you can use: if &#40;checkbox.checked&#41; &#123; &#160; [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/tri-state-checkbox-in-javascript/</link>
			</item>
	<item>
		<title>Checking for updates in subversion</title>
		<description><![CDATA[If you are constantly running &#8220;svn up&#8221; or &#8220;svn status -u&#8221; or maybe &#8220;svn log -rBASE:HEAD&#8221; then you might find this piece of code useful: #!/bin/sh &#160; &#160; dir=&#34;$1&#34; cd $dir &#160; updated=`svn st -u &#124; grep '*'` if &#91; &#34;$updated&#34; &#93;; then &#160; &#160; notify-send SVN &#34;$updated&#34; fi What id does is check for [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/checking-for-updates-in-subversion/</link>
			</item>
	<item>
		<title>Google Wave</title>
		<description><![CDATA[Google Wave Developer Preview at Google I/O 2009 After watching this video many ideas came to my mind! I&#8217;ve always wanted to have some sort of a system where you could collaboratively construct stories, movie scripts, etc. When I get my hands on an invitation for wave that&#8217;s the first thing I&#8217;m going to do. [...]


Related posts:<ol><li><a href='http://caih.org/open-source-software/wave-email-notifications/google-wave-email-notifications/' rel='bookmark' title='Permanent Link: Google Wave Email Notifications'>Google Wave Email Notifications</a></li>
<li><a href='http://caih.org/open-source-software/google-wave-notifications-in-your-iphone/' rel='bookmark' title='Permanent Link: Google Wave Notifications in your iPhone'>Google Wave Notifications in your iPhone</a></li>
</ol>]]></description>
		<link>http://caih.org/movies/139/</link>
			</item>
	<item>
		<title>B# tree and Array intersection in javascript</title>
		<description><![CDATA[I was in need for a solution to search a very large set of data in a javascript application. I thought of a b+ tree. Looking for a javascript implementation of it, google didn&#8217;t help much. So, I just gave up and decided to implement it myself. This is the result: not really a B+ [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/b-tree-and-array-intersection-in-javascript/</link>
			</item>
</channel>
</rss>
