<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>CAIH.org</title>
	<link>http://caih.org</link>
	<description>Movies, life and python</description>
	<lastBuildDate>Mon, 14 Dec 2009 00:31:52 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<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
Checking for updates in subversion



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/checking-for-updates-in-subversion/' rel='bookmark' title='Permanent Link: Checking for updates in subversion'>Checking for updates in subversion</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 Wave



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>
</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; &#160; alert&#40;&#34;This [...]


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 updates in subversion and if it finds [...]


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. Would [...]


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>
	<item>
		<title>Loading javascript: execScript and testing</title>
		<description><![CDATA[After a lot of time of searching what is the best way to synchronously load javascript from javascript I finally found a way to do it that works in almost any browser. The hardest part of it all is not loading and eval&#8217;ing the script, but allowing the script to set new variables in the [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/loading-javascript-execscript-and-testing/</link>
			</item>
	<item>
		<title>Giving the control back to filesystem</title>
		<description><![CDATA[A long time ago computers started to be able to store &#8220;things&#8221; in memory. Even though there&#8217;s no doubt that today we mostly store &#8220;files&#8221; in computers, that doesn&#8217;t mean that&#8217;s the only thing we can store. There&#8217;s a real world analogy from some terms we use to store data in our computers. Quoting from [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/dejumble/giving-the-control-back-to-filesystem/</link>
			</item>
	<item>
		<title>Fixing Inkscape in Mac OS X</title>
		<description><![CDATA[I had this error for a very long time when trying to use extensions in Inkscape 0.46 for Mac OS X:
&#8220;The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension&#8221;
After many hours of trying to find a solution I got it to work. This is what I did:
sudo easy_install lxml
cd /Applications/Inkscape.app/Contents/Resources/lib
mv [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/fixing-inkscape-in-mac-os-x/</link>
			</item>
	<item>
		<title>A small patch for ProjectPier language support</title>
		<description><![CDATA[When using ProjectPier in a different language than English you may come to see a bug when browsing through the dashboard. Some translations include html code in their strings (because of a migration from activeCollab?). ProjectPier escapes this strings and the code leaks to the user interface.
For example there is this Spanish translation:
'log add projectmessages' [...]


No related posts.]]></description>
		<link>http://caih.org/open-source-software/a-small-patch-for-projectpier-language-support/</link>
			</item>
</channel>
</rss>
