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 [...]
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.
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\ vcrun2005sp1 allfonts wsh56js And then install using your installation CD. UPDATE: If you [...]
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.
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’s it. It’s currently in a beta stage so there are no guarantees. Visit the project home page at: http://wave-email-notifications.googlecode.com/
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 (checkbox.checked) { [...]
If you are constantly running “svn up” or “svn status -u” or maybe “svn log -rBASE:HEAD” then you might find this piece of code useful: #!/bin/sh dir="$1" cd $dir updated=`svn st -u | grep ‘*’` if [ "$updated" ]; then notify-send SVN "$updated" fi What id does is check for [...]
Google Wave Developer Preview at Google I/O 2009 After watching this video many ideas came to my mind! I’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’s the first thing I’m going to do. [...]
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’t help much. So, I just gave up and decided to implement it myself. This is the result: not really a B+ [...]
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’ing the script, but allowing the script to set new variables in the [...]
