<?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>Claus Witt &#187; zend</title> <atom:link href="http://www.clauswitt.com/tag/zend/feed/" rel="self" type="application/rss+xml" /><link>http://www.clauswitt.com</link> <description>software and web developer</description> <lastBuildDate>Thu, 24 Jun 2010 20:07:03 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Renaming file extensions with bash script</title><link>http://www.clauswitt.com/renaming-file-extensions-with-bash-script/</link> <comments>http://www.clauswitt.com/renaming-file-extensions-with-bash-script/#comments</comments> <pubDate>Thu, 30 Apr 2009 06:58:04 +0000</pubDate> <dc:creator>Claus Witt</dc:creator> <category><![CDATA[Development]]></category> <category><![CDATA[bash]]></category> <category><![CDATA[renaming file]]></category> <category><![CDATA[script]]></category> <category><![CDATA[short tips]]></category> <category><![CDATA[zend]]></category><guid isPermaLink="false">http://www.clauswitt.com/?p=230</guid> <description><![CDATA[A couple of weeks ago I had to rename the file extension of several view scripts from html (from my own mvc framework) to phtml (zend framework). I found, as always, bash to be my friend.for i in * do ( file $i &#124; grep html ) &#038;&#038; mv $i $(echo $i &#124; sed [...]]]></description> <content:encoded><![CDATA[<p>A couple of weeks ago I had to rename the file extension of several view scripts from html (from my own mvc framework) to phtml (zend framework). I found, as always, bash to be my friend.</p><pre name="code" class="bash">
for i in *
do
  ( file $i | grep html ) &#038;&#038; mv $i $(echo $i | sed s/html$/phtml/)
done
</pre>]]></content:encoded> <wfw:commentRss>http://www.clauswitt.com/renaming-file-extensions-with-bash-script/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Would I Pass the Zend PHP5 Certification Exam?</title><link>http://www.clauswitt.com/would-i-pass-the-zend-php5-certification-exam/</link> <comments>http://www.clauswitt.com/would-i-pass-the-zend-php5-certification-exam/#comments</comments> <pubDate>Thu, 16 Apr 2009 14:17:46 +0000</pubDate> <dc:creator>Claus Witt</dc:creator> <category><![CDATA[Web development]]></category> <category><![CDATA[certification]]></category> <category><![CDATA[zend]]></category><guid isPermaLink="false">http://www.clauswitt.com/?p=222</guid> <description><![CDATA[I have just used 20 minutes on testing my php5 skills before taking the actual certification exam in the future. As expected, by me at least, I lack some skills in arrays, string manipulation and regular expressions. I knew this. I always look up details when I use this. Database access questions are all based [...]]]></description> <content:encoded><![CDATA[<p>I have just used 20 minutes on testing my php5 skills before taking the actual certification exam in the future.<div id="attachment_223" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.clauswitt.com/wp-content/uploads/2009/04/picture2.png"><img src="http://www.clauswitt.com/wp-content/uploads/2009/04/picture2-300x202.png" alt="Exam Result" title="My Zend PHP5 Certification Exam Test" width="300" height="202" class="size-medium wp-image-223" /></a><p class="wp-caption-text">Exam Result</p></div></p><p>As expected, by me at least, I lack some skills in arrays, string manipulation and regular expressions. I knew this. I always look up details when I use this. Database access questions are all based on PDO, which I have never used &#8211; so no surprise there either. What Web Features and Design covers, I do not know? But I am happy that I have an excellent grade in the things I use everyday.</p><p>The overall rating was however that I passed, which I find a bit strange, since 5 out of twelve subjects were failed. Well, I know which subjects I have to study before taking the actual exam.</p> ]]></content:encoded> <wfw:commentRss>http://www.clauswitt.com/would-i-pass-the-zend-php5-certification-exam/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>PHPExcel and Google Docs Together</title><link>http://www.clauswitt.com/phpexcel-and-google-docs-together/</link> <comments>http://www.clauswitt.com/phpexcel-and-google-docs-together/#comments</comments> <pubDate>Sun, 08 Mar 2009 10:00:36 +0000</pubDate> <dc:creator>Claus Witt</dc:creator> <category><![CDATA[Development]]></category> <category><![CDATA[Web development]]></category> <category><![CDATA[api]]></category> <category><![CDATA[excel]]></category> <category><![CDATA[google]]></category> <category><![CDATA[zend]]></category><guid isPermaLink="false">http://www.clauswitt.com/?p=146</guid> <description><![CDATA[With the excellent PHPExcel library it is possible to write Excel data to Google Docs Spreadsheets. Maarten Balliauw has written a post about Saving a PHPExcel spreadsheet to Google Documents a method which uses the ZEND_GData module from Zend Framework. ]]></description> <content:encoded><![CDATA[<p>With the excellent <a href="http://phpexcel.codeplex.com/">PHPExcel library</a> it is possible to write Excel data to <a href="http://code.google.com/intl/da/apis/spreadsheets/docs/2.0/developers_guide_protocol.html">Google Docs Spreadsheets</a>. <a href="http://blog.maartenballiauw.be/">Maarten Balliauw</a> has written a post about Saving a <a href="http://blog.maartenballiauw.be/post/2009/02/03/Saving-a-PHPExcel-spreadsheet-to-Google-Documents.aspx">PHPExcel spreadsheet to Google Documents</a> a method which uses the <a href="http://framework.zend.com/manual/en/zend.gdata.html">ZEND_GData module</a> from <a href="http://framework.zend.com/">Zend Framework</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.clauswitt.com/phpexcel-and-google-docs-together/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached
Page Caching using memcached (user agent is rejected)
Database Caching using memcached

Served from: www.clauswitt.com @ 2010-07-30 04:40:37 -->