<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">
 
 <title>Lebowtech.com</title>
 
 <link href="http://lebowtech.com/" />
 <updated>2012-01-25T03:00:35-08:00</updated>
 <id>http://lebowtech.com/</id>
 <author>
   <name>Lebow</name>
   <email>lebowtech.com</email>
 </author>

 
 <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/Lebowtechcom" /><feedburner:info uri="lebowtechcom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry>
   <title>Count Words In Html Files</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/7P4ebWBIfSY/Count-words-in-html-files.html" />
   <updated>2012-01-25T00:00:00-08:00</updated>
   <id>http://lebowtech.com/2012/01/25/Count-words-in-html-files</id>
   <content type="html">&lt;p&gt;We created a new translation system for a project where we are using
html files that will be then sent off for translation. This allows us
to make changes to the layout if needed to fit a specific language.&lt;/p&gt;

&lt;p&gt;The translation company needs to know the word count to give us a
price quote, and we don't want then to take into account the tags.&lt;/p&gt;

&lt;p&gt;Here is a one-liner in &lt;a href="http://lmgtfy.com/?q=fish+shell&amp;amp;l=1"&gt;fish
shell&lt;/a&gt; that should get the word
count for all the .phtml files.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;cat (find . -iname "*.phtml"  ) | w3m -dump -T text/html  | wc -w
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;In bash you would probably replace the parens with backticks.&lt;/p&gt;

&lt;p&gt;Also we are using &lt;a href="http://lmgtfy.com/?q=po+files&amp;amp;l=1"&gt;PO&lt;/a&gt; files for
short text throught the site. The translator we are using doesn't know
how to work with po files. So we used po2csv to create them files that
they can open in a spreadsheet, although it makes me wonder what type
of translation company can't use po files.&lt;/p&gt;

&lt;p&gt;Here is som fish shell code to make the csv files and bundle them into a zip and send them off:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;# for each lang directory make a csv dir and put the new csv's in there
for lang in ??
    ehco $lang
    mkdir $lang.csvs
    po2csv $lang $lang.csvs
end

# zip up our csv and po files
find -name "??_messages.*" | sort | zip csvsAndPos -@

# mail it off
mutt -a csvsAndPos.zip 
&lt;/code&gt;&lt;/pre&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2012/01/25/Count-words-in-html-files.html</feedburner:origLink></entry>
 
 <entry>
   <title>Hacked</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/shv6yCJ_x-A/HACKED.html" />
   <updated>2011-12-12T00:00:00-08:00</updated>
   <id>http://lebowtech.com/2011/12/12/HACKED</id>
   <content type="html">&lt;h1&gt;I've been hacked!!&lt;/h1&gt;

&lt;p&gt;So my joomla site was hacked. No real damage done except that I was marked as malware on google.&lt;/p&gt;

&lt;p&gt;So here is my replacement for now.&lt;/p&gt;

&lt;p&gt;Enjoy!&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2011/12/12/HACKED.html</feedburner:origLink></entry>
 
 <entry>
   <title>Headup Safari Extension</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/K1ye-I6B0gY/HeadUp-Safari-Extension.html" />
   <updated>2010-08-04T00:00:00-07:00</updated>
   <id>http://lebowtech.com/2010/08/04/HeadUp-Safari-Extension</id>
   <content type="html">&lt;p&gt;
&lt;a href="http://www.headup.com/widget.php"&gt;HeadUp&lt;/a&gt; adds tool tip type info to key words.
&lt;/p&gt;

&lt;p&gt;
This extension will add the headup script to every site that you visit. 
&lt;/p&gt;

&lt;p&gt;
Note: You wont see the links the first time you visit a site, try reloading the page after a few min.
&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;Download:&lt;/strong&gt;&lt;a href="http://lebowtech.com/media/headsUp.safariextz"&gt;headsUp.safariextz&lt;/a&gt;
&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2010/08/04/HeadUp-Safari-Extension.html</feedburner:origLink></entry>
 
 <entry>
   <title>Problems after upgrading to 10.6</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/TEAUMGM5NDo/snowProblems.html" />
   <updated>2010-06-07T00:00:00-07:00</updated>
   <id>http://lebowtech.com/2010/06/07/snowProblems</id>
   <content type="html">&lt;p&gt;Date:           8th of Cheshvan, 5770&lt;/p&gt;

&lt;p&gt;Keywords:       OSX SnowLeopard Upgrade&lt;/p&gt;

&lt;h1&gt;ZSH&lt;/h1&gt;

&lt;p&gt;I was using the &lt;a href="http://code.google.com/p/zsh-templates-osx/"&gt;Zsh Osx templates&lt;/a&gt; and after the update nothing seemed to work, and it didn't even seem to be reading my .zshrc file either.&lt;/p&gt;

&lt;p&gt;I tried installing the SVN version from the google site, but that didn't work.&lt;/p&gt;

&lt;p&gt;What did work was that I moved my .zsh dir and .zshrc file to a backup location and reinstalled from the tarball. Then I was presented with the nice config dialogs.&lt;/p&gt;

&lt;p&gt;Then I moved my old stuff back into place&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;~&amp;gt; cp old/.zshrc .zshrc 
~&amp;gt; source .zshrc 
~&amp;gt; cp old/.zsh/zshprompt .zsh/zshprompt 
&lt;/code&gt;&lt;/pre&gt;

&lt;h1&gt;Text Mate&lt;/h1&gt;

&lt;p&gt;The &lt;code&gt;mate&lt;/code&gt; command stopped working for me , but after fixing zsh , it works again.&lt;/p&gt;

&lt;h1&gt;PHP&lt;/h1&gt;

&lt;p&gt;So PHP 5.3 comes with OSX 10.6 ! That would be excelent except that nothing works !!&lt;/p&gt;

&lt;h2&gt;Time zones&lt;/h2&gt;

&lt;h2&gt;Joomla!&lt;/h2&gt;

&lt;p&gt;had to reinstall 5.2.10 using my instructions ...&lt;/p&gt;

&lt;p&gt;but add
&lt;code&gt;
EXTRA_CFLAGS="-lresolv" make -j2
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;http://www.firewing1.com/node/31&lt;/p&gt;

&lt;p&gt;And it looks like I have a problem with GD , so needs to be built with out gd&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;CFLAGS='-arch x86_64' ./configure  \
            --without-iconv  \
            --with-apxs2  \
            --enable-pdo  \
            --with-zlib=/usr \ 
            --with-curl  \
            --with-mcrypt \
            --with-pdo_mysql=/usr/local/mysql/bin/mysql_config  \
            --with-mysqli=/usr/local/mysql/bin/mysql_config  \
            --with-mysql=/usr/local/mysql   \
            --prefix=/usr  \
            --without-mcrypt -mandir=/usr/share/man  \
            --infodir=/usr/share/info  \
            --with-apxs2=/usr/sbin/apxs  \
            --with-config-file-path=/private/etc  \
            --sysconfdir=/private/etc  \
            --enable-cli  \
            --enable-ftp  \
            --enable-mbstring  \
            --enable-mbregex  \
            --enable-sockets  \
            --with-ldap=/usr    \
            --with-mime-magic=/etc/apache2/magic  \
            --with-zlib-dir=/usr \
            --with-openssl=/usr
&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;GD&lt;/h2&gt;

&lt;p&gt;after recompiling JPEG libs I recopiled php adding the following options.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;--with-gd --with-jpeg-dir=/usr/local --with-png-dir=/usr/X11R6
&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;ICONV&lt;/h2&gt;

&lt;p&gt;look here for &lt;a href="http://opensource.apple.com/source/apache_mod_php/apache_mod_php-53/patches/iconv.patch"&gt;apple's patch&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://fabien.potencier.org/article/37/php-5-3-0-on-mac-os-10-6-snow-leopard"&gt;PHP 5.3.0 on Mac OS 10.6 (Snow Leopard)&lt;/a&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;diff -Naur php-5.3.0/ext/iconv/iconv.c php/ext/iconv/iconv.c
--- php-5.3.0/ext/iconv/iconv.c        2009-03-16 22:31:04.000000000 -0700
+++ php/ext/iconv/iconv.c          2009-07-15 14:40:09.000000000 -0700
@@ -51,9 +51,6 @@
 #include &amp;lt;gnu/libc-version.h&amp;gt;
 #endif

-#ifdef HAVE_LIBICONV
-#undef iconv 
-#endif

 #include "ext/standard/php_smart_str.h"
 #include "ext/standard/base64.h"
@@ -182,9 +179,6 @@



-#ifdef HAVE_LIBICONV
-#define iconv libiconv
-#endif
&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;Still missing TTF&lt;/h3&gt;

&lt;h1&gt;Mail&lt;/h1&gt;

&lt;h1&gt;Hebrew dates.&lt;/h1&gt;

&lt;p&gt;I use hebrew dates on my OS and it worked fine , but now mails in my exchage box are getting wired dates. This is only happening in the message listing pane, but in the message view pane that date is fine.&lt;/p&gt;

&lt;p&gt;Turns out it isn't a problem with hebrew dates, I have the same issue with gregorian dates :(.&lt;/p&gt;

&lt;p&gt;I moved my ~/Library/Mail folder and let Mail rebuild it , and that didn't work ...&lt;/p&gt;

&lt;p&gt;I switched to using my old IMAP setup for this exchange account and it seems to work now .&lt;/p&gt;

&lt;h1&gt;Make not found..&lt;/h1&gt;

&lt;p&gt;Trying to install Xcode ...&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2010/06/07/snowProblems.html</feedburner:origLink></entry>
 
 <entry>
   <title>Run Ie6 ( And Windows Xp ) For Free On Osx</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/F2fzA5A-JQc/Run-IE6-%28-and-windows-XP-%29-for-free-on-OSX.html" />
   <updated>2009-09-15T00:00:00-07:00</updated>
   <id>http://lebowtech.com/2009/09/15/Run-IE6-(-and-windows-XP-)-for-free-on-OSX</id>
   <content type="html">&lt;p&gt;This will let you use IE6 ( and XP ) on OSX for free!!&lt;/p&gt;

&lt;p&gt;It uses Suns VirtualBox emulator.&lt;/p&gt;

&lt;p&gt; I set back the clock  so it won't expire and it seems to work fine...&lt;/p&gt;

&lt;p&gt;This will only work on an intel mac , and it is tested on 10.5 ( as well as on XP )&lt;/p&gt;

&lt;p&gt;&lt;a href="http://lebowtech.com/media/XP_SP2_with_IE6.dmg.torrent"&gt;XP_SP2_with_IE6.dmg&lt;/a&gt; (&lt;em&gt;755MB&lt;/em&gt;)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.entropy.ch/software/macosx/#checksum"&gt;md5sum&lt;/a&gt;&lt;/strong&gt; : d9e80d9bf8d03a146d35ef56ebef5f2c&lt;/p&gt;

&lt;p&gt;More info to come , and check back here for updates.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Update&lt;/strong&gt; 20th of Elul, 5769&lt;/p&gt;

&lt;p&gt;I've updated the torrent file to use a &lt;a href="http://getright.com/seedtorrent.html"&gt;http seed&lt;/a&gt; so you can keep downloading even when there are no available peers, or you have NAT/Firewall problems. As long as this doesn't kill my bandwidth usage I'll keep it going.&lt;/p&gt;

&lt;p&gt;Please let me know if things are working or if you have any issues.&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2009/09/15/Run-IE6-%28-and-windows-XP-%29-for-free-on-OSX.html</feedburner:origLink></entry>
 
 <entry>
   <title>Osx Security Update 2009 005 Breaks Php</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/htWB8aJJ1qc/OSX-Security-Update-2009-005-Breaks-PHP.html" />
   <updated>2009-09-15T00:00:00-07:00</updated>
   <id>http://lebowtech.com/2009/09/15/OSX-Security-Update-2009-005-Breaks-PHP</id>
   <content type="html">&lt;p&gt;OSX Security Update 2009-005 Upgrades to PHP 5.2.10 and wrecks havoc on a custom compile..&lt;/p&gt;

&lt;p&gt;This morning when trying to work I started getting strange empty pages, I broke my head on this problem before and solved it by  &lt;a href="http://lebowtech.com/index.php?option=com_search&amp;amp;Itemid=5&amp;amp;searchword=Compling%20PHP%20on%20Leopard%20%28OSX%29%20in%20Intel%20C2Duo&amp;amp;submit=Search&amp;amp;searchphrase=exact&amp;amp;ordering=newest"&gt;recompling PHP&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;It turns out that Apple&lt;a href="http://support.apple.com/kb/HT3865"&gt; Security Update 2009-005&lt;/a&gt; also upgrades to &lt;a href="http://www.php.net/releases/5_2_10.php"&gt;php 5.2.10&lt;/a&gt;, this would be a good thing for most normal users, but since I had a custom compile of PHP it killed my sites.&lt;/p&gt;

&lt;p&gt;From Apple's site:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt; CVE-ID: CVE-2009-1271, CVE-2009-1272, CVE-2009-0590, CVE-2009-0591, CVE-2009-0789, CVE-2008-5498&lt;/p&gt;

&lt;p&gt; Available for: Mac OS X v10.5, Mac OS X Server v10.5.8&lt;/p&gt;

&lt;p&gt; Impact: Multiple vulnerabilities in PHP 5.2.8&lt;/p&gt;

&lt;p&gt; Description: PHP is updated to version 5.2.10 to address multiple vulnerabilities, the most serious of which may lead to arbitrary code execution. Further information is available via the PHP website at http://www.php.net/ These issues do not affect Mac OS X v10.6 systems.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;The solution is to recompile php again with my custom configuration, lucky for me my old comple was still sitting in my downloads folder , so I just had to do a:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sudo make install 
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;now everything seems to be back to normal.&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2009/09/15/OSX-Security-Update-2009-005-Breaks-PHP.html</feedburner:origLink></entry>
 
 <entry>
   <title>Compling Php On Leopard (osx) In Intel C2duo</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/EgSMKLjGkLI/Compling-PHP-on-Leopard-%28OSX%29-in-Intel-C2Duo.html" />
   <updated>2009-09-01T00:00:00-07:00</updated>
   <id>http://lebowtech.com/2009/09/01/Compling-PHP-on-Leopard-(OSX)-in-Intel-C2Duo</id>
   <content type="html">&lt;p&gt;I recently updated my Powerbook G4 to a MacBook C2Duo, and I wanted to get working quickly so I cloned the hard drive from the PowerBook to the MacBook, and I was able to pick up working right where I left off, that is until I one of my Joomla projects stopped working.&lt;/p&gt;

&lt;p&gt;One of my &lt;a href="http://www.joomla.org/" title="Joomla!"&gt;joomla&lt;/a&gt; projects was just returning me a blank page, no error message and nothing in the logs.. everything worked fine on the live sever, after about 6 hrs of banging my head on the keyboard, I had a genius  idea. I powered up the old powerbook , and the project still worked there! I quickly realized the problem. I had done a custom compile of PHP on the powerbook, and  it probably wasn't working so well on the Intel MacBook.&lt;/p&gt;

&lt;p&gt;The obvious solution was to recompile PHP, so I downloaded &lt;a href="http://www.php.net/releases/5_3_0.php" title="PHP: PHP 5.3.0 Release Announcement"&gt;PHP 5.3&lt;/a&gt;, excited about the built in Mysql driver. Configure went fine, make went fine, and then I try to restart apache :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; org.apache.httpd[79275] httpd: Syntax error on line 114 of /private/etc/apache2/httpd.conf: Cannot load /usr/libexec/apache2/libphp5.so into server: dlopen(/usr/libexec/apache2/libphp5.so, 10): no suitable image found.  Did find:\n\t/usr/libexec/apache2/libphp5.so: mach-o, but wrong architecture 
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;OY!&lt;/p&gt;

&lt;p&gt;So I found a solution , recompile Apache, and I wasn't really in the mood for that, so I figured I'd try an older version of php.&lt;/p&gt;

&lt;p&gt;I tried &lt;a href="http://www.php.net/releases/5_2_10.php" title="PHP: PHP 5.2.10 Release Announcement"&gt;PHP 5.2.10&lt;/a&gt; , and after some twiddling with config options and reinstalling MySql, configure, make, make install, and now my project is working again.&lt;/p&gt;

&lt;p&gt;here is the configure command I used&lt;/p&gt;

&lt;p&gt;&lt;code&gt;
CFLAGS='-arch x86_64' ./configure --without-iconv --with-apxs2 --enable-pdo --with-zlib=/usr --with-curl --with-mcrypt --with-pdo_mysql=/usr/local/mysql-5.1.37-osx10.5-x86_64/bin/mysql_config --with-mysqli=/usr/local/mysql-5.1.37-osx10.5-x86_64/bin/mysql_config --with-mysql=/usr/local/mysql-5.1.37-osx10.5-x86_64 --disable-dependency-tracking --prefix=/usr --without-mcrypt -mandir=/usr/share/man --infodir=/usr/share/info --with-apxs2=/usr/sbin/apxs --with-config-file-path=/private/etc --sysconfdir=/private/etc --enable-cli --with-curl=/opt/local --enable-ftp --enable-mbstring --enable-mbregex --enable-sockets --with-ldap=/usr --with-ldap-sasl --with-kerberos=/usr --with-mime-magic=/etc/apache2/magic --with-zlib-dir=/usr --with-gd --with-png-dir=/usr/X11R6 --with-xpm-dir=/usr/X11R6 --without-jpeg-dir --enable-exif
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UPDATE&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you want or need &lt;strong&gt;&lt;a href="http://www.ijg.org/" title="Independent JPEG Group"&gt;libjpeg&lt;/a&gt;&lt;/strong&gt; or &lt;strong&gt;&lt;a href="http://en.wikipedia.org/wiki/TrueType" title="TrueType - Wikipedia, the free encyclopedia"&gt;true type&lt;/a&gt;&lt;/strong&gt; support for things like &lt;a href="http://php.net/imagettfbbox"&gt;imagettfbbox&lt;/a&gt; or &lt;a href="http://php.net/imagejpeg"&gt;imagejpeg&lt;/a&gt;. The needed libraries comple simply with a , configure, make, make install.&lt;/p&gt;

&lt;p&gt;You can get them from here&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.ijg.org/files/"&gt;http://www.ijg.org/files/jpegsrc.v7.tar.gz&lt;/a&gt;
&lt;a href="http://ftp.cc.uoc.gr/mirrors/nongnu.org/freetype/"&gt;http://ftp.cc.uoc.gr/mirrors/nongnu.org/freetype/ &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Setting the appropriate environment variables also might help , but I'm not sure if this is required.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;
MACOSX_DEPLOYMENT_TARGET=10.5
CFLAGS="-arch x86_64 -g -Os -pipe -no-cpp-precomp"
CCFLAGS="-arch x86_64 -g -Os -pipe"
CXXFLAGS="-arch x86_64 -g -Os -pipe"
LDFLAGS="-arch x86_64 -bind_at_load"
export CFLAGS CXXFLAGS LDFLAGS CCFLAGS MACOSX_DEPLOYMENT_TARGET
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;be sure you get the newest version of freetype as some of the older versions won't compile the shared libraries in 64 bit.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;
CFLAGS='-arch x86_64' ./configure --without-iconv --with-apxs2 --enable-pdo --with-zlib=/usr --with-curl --with-mcrypt --with-pdo_mysql=/usr/local/mysql/bin/mysql_config --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql=/usr/local/mysql --disable-dependency-tracking --prefix=/usr --without-mcrypt -mandir=/usr/share/man --infodir=/usr/share/info --with-apxs2=/usr/sbin/apxs --with-config-file-path=/private/etc --sysconfdir=/private/etc --enable-cli --with-curl=/opt/local --enable-ftp --enable-mbstring --enable-mbregex --enable-sockets --with-ldap=/usr --with-ldap-sasl --with-kerberos=/usr --with-mime-magic=/etc/apache2/magic --with-zlib-dir=/usr --with-gd --with-png-dir=/usr/X11R6 --with-xpm-dir=/usr/X11R6 --with-jpeg-dir=/usr/local --with-freetype-dir=/usr/local --enable-exif
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;One other thing I'd like to mention: If you use &lt;a href="http://www.zsh.org/"&gt;zsh&lt;/a&gt; you can do tab completion on php configure options, this has to be one of the awesomest things I've seen in a while.&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2009/09/01/Compling-PHP-on-Leopard-%28OSX%29-in-Intel-C2Duo.html</feedburner:origLink></entry>
 
 <entry>
   <title>Treo 600 Vs 650 Vs Nokia E61</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/py-1ESrbzQs/Treo-600-vs-650-vs-Nokia-e61.html" />
   <updated>2009-05-12T00:00:00-07:00</updated>
   <id>http://lebowtech.com/2009/05/12/Treo-600-vs-650-vs-Nokia-e61</id>
   <content type="html">&lt;p&gt;
My treo 600 was dying and I was in the market for a new phone/pda. I had very specific requirements, so I wrote my own comparison chart, hopefully this will help others out there. 
&lt;/p&gt;
&lt;p&gt;
In the end I got a treo 680 and have been very happy.
&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE:&lt;/strong&gt; I recently upgraded to OSX 10.5 Leopard and sync stopped working!! Now I'm forced to using The Missing Sync*&lt;/p&gt;
&lt;p&gt;
    &lt;strong&gt;UPDATE:6th of Nisan, 5769 &lt;/strong&gt; I'm now starting to hate my t680, it doesn't sync any more, and the battery only lasts 1/2 a day (If I'm lucky), and sometimes it can't connect to the network for hours ( not a problem with the network, I tested on other phones, and switched sim cards)
&lt;/p&gt;

&lt;p&gt;
  &lt;strong&gt;UPDATE:4th of Iyyar, 5769:&lt;/strong&gt; Looking into getting a &lt;a href="http://europe.nokia.com/A41146122" title="Nokia Europe - Nokia E71 - Products"&gt;Nokia E71&lt;/a&gt; now.
&lt;/p&gt;

&lt;table border='1px' &gt;
&lt;colgroup align="right" span="1" style="color:red"&gt;&lt;/colgroup&gt;
&lt;thead&gt;
  &lt;tr&gt;
    &lt;th&gt;feature&lt;/th&gt;&lt;th&gt;my 600&lt;/th&gt;&lt;/th&gt;&lt;th&gt;treo 650&lt;/th&gt;&lt;th&gt;my treo 680&lt;/th&gt;&lt;th&gt;nokia e61&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;

  &lt;tr&gt;

    &lt;th&gt;price&lt;/th&gt;&lt;td&gt;??&lt;/td&gt;&lt;td&gt;&gt;$250&lt;/td&gt;&lt;td&gt;$300&lt;/td&gt;&lt;td&gt;&gt;$419&lt;/td&gt;
    &lt;/tr&gt;
  &lt;tr&gt;
    &lt;Th&gt;phone&lt;/Th&gt;&lt;td&gt;broken&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;Sometimes doesn't work&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;
    &lt;/tr&gt;

  &lt;tr&gt;
    &lt;th&gt;bluetooth&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;td&gt;0.5&lt;/td&gt;&lt;td&gt;sometimes has connection problems&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;
    &lt;/tr&gt;
  &lt;tr&gt;
    &lt;th&gt;talktime&lt;/th&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;6hr&lt;/td&gt;&lt;td&gt;&amp;#8804;6hr&lt;/td&gt;&lt;td&gt;7hr&lt;/td&gt;

    &lt;/tr&gt;
  &lt;tr&gt;
    &lt;th&gt;camera&lt;/th&gt;&lt;td&gt;vga&lt;/td&gt;&lt;td colspan='2'&gt;vga&lt;/td&gt;&lt;td&gt;X&lt;/td&gt;
    &lt;/tr&gt;
  &lt;tr&gt;
    &lt;th&gt;dimensions&lt;/th&gt;&lt;td colspan="2"&gt;58.42mm x 111.76mm x 22.86mm&lt;/td&gt;&lt;td&gt;?&lt;/td&gt;&lt;td&gt; 117mm x 69.7mm x 14mm&lt;/td&gt;

    &lt;/tr&gt;
  &lt;tr&gt;
    &lt;th&gt;sound switch&lt;/th&gt;&lt;td colspan="3"&gt;yes&lt;/td&gt;&lt;td&gt;?&lt;/td&gt;
    &lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;wifi&lt;/th&gt;&lt;td&gt;no&lt;/td&gt;&lt;td colspan='2'&gt;no&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;/tr&gt;

  &lt;tr&gt;&lt;th&gt;&lt;a href='http://gizmoproject.com'&gt;gizmo project&lt;/a&gt;&lt;/th&gt;&lt;td&gt;no&lt;/td&gt;&lt;td colspan='2'&gt;yes IM only&lt;/td&gt;&lt;td&gt;yes VOIP&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;IM&lt;/th&gt;&lt;td colspan="3"&gt;yes  AIM toccer free and &lt;a href='gizmoproject.com'&gt;GizmoProject&lt;/a&gt; also free(MSN and AIM).&lt;/td&gt;&lt;td&gt;yes &lt;a href="http://www.agilemobile.com/nokia.html"&gt;3rd prty software&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;SSH&lt;/th&gt;&lt;td colspan='3'&gt;yes&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;hebrew&lt;/th&gt;&lt;td colspan="2"&gt;yes have piloc&lt;sup&gt;&lt;a href="#**"&gt;**&lt;/a&gt;&lt;/sup&gt;&lt;/td&gt;&lt;td&gt;bought new piloc&lt;/td&gt;&lt;td&gt;?&lt;/td&gt;&lt;/tr&gt;

  &lt;tr&gt;&lt;th&gt;IMAP&lt;/th&gt;&lt;td&gt;need chatter $50&lt;/td&gt;&lt;td&gt;yes versa mail&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;push mail&lt;/th&gt;&lt;td&gt;need chatter $50&lt;/td&gt;&lt;td&gt;maybe with versa mail&lt;/td&gt;&lt;td&gt;Exchange only&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;native osx sync&lt;/th&gt;&lt;td colspan="3"&gt;yes pre 10.5/ No after 10.5 unless you use the missing sync*&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;/tr&gt;

  &lt;tr&gt;&lt;th&gt;address book photo sync&lt;/th&gt;&lt;td&gt;no&lt;/td&gt;&lt;td colspan='2'&gt;requires missing sync, missing sync&lt;sup&gt;&lt;a href="#*"&gt;*&lt;/a&gt;&lt;/sup&gt; $40&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;speaker phone&lt;/th&gt;&lt;td colspan="3"&gt;yes&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;stupid antena&lt;/th&gt;&lt;td&gt;missing screw&lt;/td&gt;&lt;td&gt;Yes, can be replaced&lt;/td&gt;&lt;td&gt;internal&lt;/td&gt;&lt;td&gt;internal&lt;/td&gt;&lt;/tr&gt;

  &lt;tr&gt;&lt;th&gt;removable battery&lt;/th&gt;&lt;td&gt;no&lt;/td&gt;&lt;td colspan='2'&gt;yes&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;touchscreen&lt;/th&gt;&lt;td&gt;yes&lt;/td&gt;&lt;td colspan='2'&gt;yes&lt;/td&gt;&lt;td&gt;no&lt;/td&gt;&lt;/tr&gt;
  &lt;tr&gt;&lt;th&gt;works with SDcards that I have&lt;/th&gt;&lt;td&gt;yes&lt;/td&gt;&lt;td colspan='2'&gt;yes&lt;/td&gt;&lt;td&gt;no, minisd&lt;/td&gt;&lt;/tr&gt;

  &lt;tr&gt;&lt;th&gt;works with cabels that I have&lt;/th&gt;&lt;td&gt;yes&lt;/td&gt;&lt;td&gt;no&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;td&gt;no&lt;/td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;works with the &lt;a href='http://udrive.co.il'&gt;gps software&lt;/a&gt;&lt;sup&gt;&lt;a href="#***"&gt;***&lt;/a&gt;&lt;/sup&gt;&lt;/th&gt;&lt;td&gt;yes&lt;/td&gt;&lt;td colspan='2'&gt;yes&lt;/td&gt;&lt;td&gt;no&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;resolution&lt;/th&gt;&lt;td&gt;160x160&lt;/td&gt;&lt;td&gt;320x320&lt;/td&gt;&lt;td&gt;?&lt;/td&gt;&lt;td&gt;320x240&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt;&lt;th&gt;Works with &lt;a href="http://www.salling.com/Clicker/mac/devices.php"&gt;Salling clicker&lt;/a&gt;&lt;/th&gt;&lt;td&gt;no&lt;/td&gt;&lt;td colspan='2'&gt;yes but no phone events&lt;/td&gt;&lt;td&gt;every thing&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;internal memory&lt;/th&gt;&lt;td&gt;32mb&lt;/td&gt;&lt;td&gt;23mb&lt;/td&gt;&lt;td&gt;?&lt;/td&gt;&lt;td&gt;64mb&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;voice dialing&lt;/th&gt;&lt;td colspan="3"&gt;with 3rd party software&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;
&lt;a name="*"&gt;*&lt;/a&gt;I would not recommend the missing sync, it is not a finished product and it is way over priced. There is really nothing that you can't do with out it. 
&lt;/p&gt;
&lt;p&gt;
&lt;a name="**"&gt;**&lt;/a&gt;The same PiLoc hebrew works for the 600 and 650, but you need a new version for the 680
&lt;/p&gt;
&lt;p&gt;
  &lt;a name="***"&gt;
    *** OY! It looks like UDrive is no longer with us. Another strike against the Treo!
    &lt;/a&gt;
&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2009/05/12/Treo-600-vs-650-vs-Nokia-e61.html</feedburner:origLink></entry>
 
 <entry>
   <title>Time to replace treo 680 ( treo 680 vs nokia e63 and e71)</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/sAEU5PcQW1o/treo-680-vs-nokia-e63-and-e71.html" />
   <updated>2009-05-11T00:00:00-07:00</updated>
   <id>http://lebowtech.com/2009/05/11/treo-680-vs-nokia-e63-and-e71</id>
   <content type="html">&lt;p&gt;So it looks like my &lt;strong&gt;treo&lt;/strong&gt; is finally dead, It doesn't get any signal any more.&lt;/p&gt;

&lt;p&gt;I'm looking into either a &lt;a href="http://www.cellcom.co.il/shop/phones/nokia/e71/Pages/default.aspx"&gt;Nokia E71&lt;/a&gt; or &lt;a href="http://www.cellcom.co.il/shop/phones/nokia/e63/Pages/default.aspx"&gt;Nokia E63&lt;/a&gt;&lt;/p&gt;



&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;feature                        &lt;/th&gt;
&lt;th&gt; my treo 680                                                  &lt;/th&gt;
&lt;th&gt; nokia E63              &lt;/th&gt;
&lt;th&gt; nokia E71                                               &lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;price                          &lt;/td&gt;
&lt;td&gt; $300                                                         &lt;/td&gt;
&lt;td&gt; 30 NIS x 36 mo          &lt;/td&gt;
&lt;td&gt; 90 NIS * 24 mo                                          &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;phone                          &lt;/td&gt;
&lt;td&gt; Sometimes doesn't work                                       &lt;/td&gt;
&lt;td&gt;                        &lt;/td&gt;
&lt;td&gt;                                              &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;bluetooth                      &lt;/td&gt;
&lt;td&gt; sometimes has connection problems                            &lt;/td&gt;
&lt;td&gt; yes                    &lt;/td&gt;
&lt;td&gt; yes                                          &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;talktime                       &lt;/td&gt;
&lt;td&gt; &amp;lt; 6hr                                                        &lt;/td&gt;
&lt;td&gt; 11hr                   &lt;/td&gt;
&lt;td&gt; 11hr                                         &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;camera                         &lt;/td&gt;
&lt;td&gt; VGA                                                          &lt;/td&gt;
&lt;td&gt; 2MP                    &lt;/td&gt;
&lt;td&gt; 3MP Auto focus                               &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;dimensions                     &lt;/td&gt;
&lt;td&gt; 117mm x 69.7mm x 14mm                                        &lt;/td&gt;
&lt;td&gt;                        &lt;/td&gt;
&lt;td&gt;                                              &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;sound switch                   &lt;/td&gt;
&lt;td&gt; yes                                                          &lt;/td&gt;
&lt;td&gt; no  &lt;em&gt;-50NIS&lt;/em&gt;           &lt;/td&gt;
&lt;td&gt; volume (?)                                   &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;wifi                           &lt;/td&gt;
&lt;td&gt; no                                                           &lt;/td&gt;
&lt;td&gt; yes                    &lt;/td&gt;
&lt;td&gt; yes                                          &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;gizmo project                  &lt;/td&gt;
&lt;td&gt; yes VOIP                                                     &lt;/td&gt;
&lt;td&gt; yes                    &lt;/td&gt;
&lt;td&gt; yes                                          &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IM                             &lt;/td&gt;
&lt;td&gt; yes AIM toccer free and GizmoProject also free(MSN and AIM). &lt;/td&gt;
&lt;td&gt;                        &lt;/td&gt;
&lt;td&gt;                                              &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SSH                            &lt;/td&gt;
&lt;td&gt; yes                                                          &lt;/td&gt;
&lt;td&gt; Putty                  &lt;/td&gt;
&lt;td&gt; Putty                                        &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;hebrew                         &lt;/td&gt;
&lt;td&gt; Yes (bought language) not on keys                            &lt;/td&gt;
&lt;td&gt; Yes                    &lt;/td&gt;
&lt;td&gt; Yes                                          &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IMAP                           &lt;/td&gt;
&lt;td&gt; yes                                                          &lt;/td&gt;
&lt;td&gt; Yes                    &lt;/td&gt;
&lt;td&gt; Yes                                             &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;push mail                      &lt;/td&gt;
&lt;td&gt; Exchange only, Seven for imap                                &lt;/td&gt;
&lt;td&gt; Yes                    &lt;/td&gt;
&lt;td&gt; &lt;strong&gt;Yes&lt;/strong&gt;                                            &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;native osx sync&lt;a href="You"&gt;^1&lt;/a&gt;            &lt;/td&gt;
&lt;td&gt; no                                                           &lt;/td&gt;
&lt;td&gt; &lt;strong&gt;Yes.&lt;/strong&gt;               &lt;/td&gt;
&lt;td&gt; &lt;strong&gt;Yes.&lt;/strong&gt;                                     &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;address book photo sync        &lt;/td&gt;
&lt;td&gt; no                                                           &lt;/td&gt;
&lt;td&gt; Yes                    &lt;/td&gt;
&lt;td&gt; Yes                                          &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;speaker phone                  &lt;/td&gt;
&lt;td&gt; yes                                                          &lt;/td&gt;
&lt;td&gt; Yes                    &lt;/td&gt;
&lt;td&gt; Yes                                             &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;touchscreen                    &lt;/td&gt;
&lt;td&gt; &lt;strong&gt;yes&lt;/strong&gt;                                                      &lt;/td&gt;
&lt;td&gt; no                     &lt;/td&gt;
&lt;td&gt; no                                              &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;works with SDcards that I have &lt;/td&gt;
&lt;td&gt; yes                                                          &lt;/td&gt;
&lt;td&gt; no, micoSd             &lt;/td&gt;
&lt;td&gt;  no, micoSd                                              &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;works with cabels that I have  &lt;/td&gt;
&lt;td&gt; yes                                                          &lt;/td&gt;
&lt;td&gt; no                     &lt;/td&gt;
&lt;td&gt;  no&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Includes USB cable             &lt;/td&gt;
&lt;td&gt; yes                                                          &lt;/td&gt;
&lt;td&gt; no &lt;em&gt;-20nis&lt;/em&gt;            &lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;works with &lt;a href="http://u-drive.co.il"&gt;udrive&lt;/a&gt; gps      &lt;/td&gt;
&lt;td&gt; yes                                                          &lt;/td&gt;
&lt;td&gt; no                     &lt;/td&gt;
&lt;td&gt; no                                             &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;resolution                     &lt;/td&gt;
&lt;td&gt; 320x320px                                                    &lt;/td&gt;
&lt;td&gt; 320x240px              &lt;/td&gt;
&lt;td&gt; 320x240px                                                                 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Works with Salling clicker     &lt;/td&gt;
&lt;td&gt; remote only                                                  &lt;/td&gt;
&lt;td&gt; every thing?           &lt;/td&gt;
&lt;td&gt; Every thing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;internal memory                &lt;/td&gt;
&lt;td&gt; 32MB                                                         &lt;/td&gt;
&lt;td&gt; 110MB                  &lt;/td&gt;
&lt;td&gt; 110MB                                                        &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;included memory card           &lt;/td&gt;
&lt;td&gt; 1GB (Not really included, I bought it)                       &lt;/td&gt;
&lt;td&gt; None  &lt;em&gt;-50NIS&lt;/em&gt;         &lt;/td&gt;
&lt;td&gt; &lt;a href="http://zap.co.il/search.aspx?keyword=microsd%202gb"&gt;2GB microSD&lt;/a&gt;                                                       &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;voice dialing                  &lt;/td&gt;
&lt;td&gt; no (maybe with 3rd prty software)                            &lt;/td&gt;
&lt;td&gt;                        &lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPS (hardware)                 &lt;/td&gt;
&lt;td&gt; mouse ( cable is a bit broke)                                &lt;/td&gt;
&lt;td&gt; Bluetooth external &lt;em&gt;-450NIS&lt;/em&gt;&lt;a href="You"&gt;^GPS&lt;/a&gt;   &lt;/td&gt;
&lt;td&gt; internal &lt;a href="http://en.wikipedia.org/wiki/GPS_Phone"&gt;A-GPS&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPS (Sofware)&lt;a href="both"&gt;^google-map&lt;/a&gt;                  &lt;/td&gt;
&lt;td&gt; Udrive                                          &lt;/td&gt;
&lt;td&gt; Cellcom Nav 23NIS/mo   &lt;/td&gt;
&lt;td&gt; Cellcom Navigator Free?                                 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Flash light                    &lt;/td&gt;
&lt;td&gt; no                                                           &lt;/td&gt;
&lt;td&gt; yes                    &lt;/td&gt;
&lt;td&gt; no &lt;em&gt;-20 NIS&lt;/em&gt;                                                    &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Audio Port(head phones)        &lt;/td&gt;
&lt;td&gt; 2.5                                                          &lt;/td&gt;
&lt;td&gt; 3.5 (standard)         &lt;/td&gt;
&lt;td&gt; 2.5 &lt;em&gt;-20 NIS&lt;/em&gt;                                                  |                                                              | 1650 + 828 for 36mo GPS |  2160&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;p&gt;Total Penalty&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2009/05/11/treo-680-vs-nokia-e63-and-e71.html</feedburner:origLink></entry>
 
 <entry>
   <title>Itimecard</title>
   <link href="http://feedproxy.google.com/~r/Lebowtechcom/~3/KlRnxV5tzcA/iTimeCard.html" />
   <updated>2007-12-16T00:00:00-08:00</updated>
   <id>http://lebowtech.com/2007/12/16/iTimeCard</id>
   <content type="html">&lt;p&gt;
iTime Card  utilizes iCal to record how much time I've spent working on a particular project.  It is very simple, allowing you to Punch in, Punch out, and generate &lt;i&gt;Invoices&lt;/i&gt;.  It relies on iCal for managing projects and tasks, calendars are projects and todo's are tasks.
&lt;/p&gt;



&lt;p&gt;
Right now I'm working on how to release this, so that others might benefit. Please contact me if your interested
&lt;/p&gt;
</content>
 <feedburner:origLink>http://lebowtech.com/2007/12/16/iTimeCard.html</feedburner:origLink></entry>
 
 
</feed>

