<?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"
	>

<channel>
	<title>marcus welz</title>
	<atom:link href="http://marcuswelz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://marcuswelz.com</link>
	<description>web 2.0 : social media : virtual worlds</description>
	<pubDate>Sat, 27 Sep 2008 15:39:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Dirty Rows and Audit Trails with Zend_Db_Table</title>
		<link>http://marcuswelz.com/2008/09/27/dirty-rows-and-audit-trails-with-zend_db_table/</link>
		<comments>http://marcuswelz.com/2008/09/27/dirty-rows-and-audit-trails-with-zend_db_table/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 15:39:27 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Zend Framework]]></category>

		<category><![CDATA[audit]]></category>

		<category><![CDATA[columns]]></category>

		<category><![CDATA[db]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[rows]]></category>

		<category><![CDATA[tables]]></category>

		<category><![CDATA[trail]]></category>

		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=222</guid>
		<description><![CDATA[There are various ways to update rows in a database table using the Zend_Db_Table components. You can use use Zend_Db_Table::update(), like so:

$table = My_Table();
$table-&#62;update(array('age' => 22), 'id = 1');

or retrieve the row, and update it:

$table = My_Table();
$row = $table-&#62;find(1)-&#62;current();
$row-&#62;age = 22;
$row-&#62;save();

The big difference between the two approaches is that by first retrieving the row, and [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/09/27/dirty-rows-and-audit-trails-with-zend_db_table/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zend_Db: Setting MySQL's timezone per connection</title>
		<link>http://marcuswelz.com/2008/09/16/zend_db-setting-mysqls-timezone-per-connection/</link>
		<comments>http://marcuswelz.com/2008/09/16/zend_db-setting-mysqls-timezone-per-connection/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 03:03:41 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Zend Framework]]></category>

		<category><![CDATA[date]]></category>

		<category><![CDATA[dates]]></category>

		<category><![CDATA[db]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[timezone]]></category>

		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=230</guid>
		<description><![CDATA[I have a Linux server with a system timezone of ET (US/Eastern). But I also have a web application that needs to run in a timezone of PT (US/Pacific). Of course that's not a problem at all. I just set the timezone in my web application's bootstrap:

date_default_timezone_set('America/Los_Angeles'); // Pacific timezone

Now I have another problem; the [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/09/16/zend_db-setting-mysqls-timezone-per-connection/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The WSDL Blower: The state of SOAP in Zend Framework 1.6</title>
		<link>http://marcuswelz.com/2008/09/13/the-wsdl-blower-the-state-of-soap-in-zend-framework-16/</link>
		<comments>http://marcuswelz.com/2008/09/13/the-wsdl-blower-the-state-of-soap-in-zend-framework-16/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 18:07:40 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Zend Framework]]></category>

		<category><![CDATA[bug]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[soap]]></category>

		<category><![CDATA[web service]]></category>

		<category><![CDATA[wsdl]]></category>

		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=191</guid>
		<description><![CDATA[There are all kinds of ways to expose APIs as web services. SOAP, XML-RPC, REST, JSON-RPC. Out of all of these, SOAP is arguably the most complex, but also one of the oldest ways to expose an API (I remember preliminary SOAP and WSDL support in Delphi 6, circa 2001).
Exposing an API as a web [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/09/13/the-wsdl-blower-the-state-of-soap-in-zend-framework-16/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zend Framework 1.6 RC2 and FirePHP</title>
		<link>http://marcuswelz.com/2008/08/25/zend-framework-16-rc2-and-firephp/</link>
		<comments>http://marcuswelz.com/2008/08/25/zend-framework-16-rc2-and-firephp/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 00:06:33 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Zend Framework]]></category>

		<category><![CDATA[firebug]]></category>

		<category><![CDATA[firephp]]></category>

		<category><![CDATA[wildfire]]></category>

		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=171</guid>
		<description><![CDATA[After I had upgraded from Firebug 1.2.0b7 to 1.2.0b15, my web apps were no longer throwing any kind of logs into the Firebug console. I'm using the Zend_Log_Writer_Firebug class for that.
Luckily, just earlier today I noticed a new release of Firebug 1.2.0. And with that, FirePHP 0.1.1.2. But now there was a new problem:
["There was [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/08/25/zend-framework-16-rc2-and-firephp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spokeo is kind of Scaryo</title>
		<link>http://marcuswelz.com/2008/08/05/spokeo-is-kind-of-scaryo/</link>
		<comments>http://marcuswelz.com/2008/08/05/spokeo-is-kind-of-scaryo/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 00:55:43 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Social Web]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[aggregator]]></category>

		<category><![CDATA[background check]]></category>

		<category><![CDATA[hr]]></category>

		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=142</guid>
		<description><![CDATA[Evidently 2008 is the year of the aggregators. They're everywhere. Socialthing, ping.fm, and what have you. But here's one with an immedialy obvious business model. Introducing Spokeo. An aggregator that asks you to provide your AOL, Gmail, Hotmail or Yahoo email credentials (which, in my opinion isn't the safest way to share contacts and I [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/08/05/spokeo-is-kind-of-scaryo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I bought a new Headset</title>
		<link>http://marcuswelz.com/2008/08/04/i-bought-a-new-headset/</link>
		<comments>http://marcuswelz.com/2008/08/04/i-bought-a-new-headset/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 01:53:19 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Entertainment]]></category>

		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[adapter]]></category>

		<category><![CDATA[audio]]></category>

		<category><![CDATA[headset]]></category>

		<category><![CDATA[plantronics]]></category>

		<category><![CDATA[sound]]></category>

		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=140</guid>
		<description><![CDATA[For the longest time I've used the Plantronics .Audio 70 "Behind-the-headset". It's lightweight, has clear sound, and has an almost 10 foot long cord. And perhaps that's part of the problem. I keep rolling over it with my chair every so often, and eventually, after 6 months of use or so, the chord will short [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/08/04/i-bought-a-new-headset/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zend Framework and File Locking Pitfalls</title>
		<link>http://marcuswelz.com/2008/08/03/zend-framework-and-file-locking-pitfalls/</link>
		<comments>http://marcuswelz.com/2008/08/03/zend-framework-and-file-locking-pitfalls/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 18:49:46 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Software &amp; Tools]]></category>

		<category><![CDATA[Zend Framework]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[flock]]></category>

		<category><![CDATA[zend framework]]></category>

		<category><![CDATA[zf]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=138</guid>
		<description><![CDATA[Earlier today while reading through the Zend Framework 1.6 RC1 release notes I've come across an interesting bug that has been fixed: [ZF-3382] Zend_Cache_Backend_File problems under very high load.
There are a lot of things to say about this issue. The obvious ones first:
1. Under typical operation such as opening, locking, reading/writing, and then closing a [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/08/03/zend-framework-and-file-locking-pitfalls/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bugs in Phing on Windows</title>
		<link>http://marcuswelz.com/2008/07/31/bugs-in-phing-on-windows/</link>
		<comments>http://marcuswelz.com/2008/07/31/bugs-in-phing-on-windows/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 01:45:57 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Software &amp; Tools]]></category>

		<category><![CDATA[archive]]></category>

		<category><![CDATA[bug]]></category>

		<category><![CDATA[phing]]></category>

		<category><![CDATA[task]]></category>

		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=136</guid>
		<description><![CDATA[I use Phing to deploy my projects, and as they become more complex I expand on my use of Phing tasks. For instance, I have a ZIP archive of zip codes that Phing extracts and then imports into a database when deploying the application.
I maintain two development environments. One on a Linux server, and one [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/07/31/bugs-in-phing-on-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Comcast reads blogs, provides customer service through Twitter</title>
		<link>http://marcuswelz.com/2008/07/26/comcast-reads-blogs-provides-customer-service-through-twitter/</link>
		<comments>http://marcuswelz.com/2008/07/26/comcast-reads-blogs-provides-customer-service-through-twitter/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 15:28:46 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Social Web]]></category>

		<category><![CDATA[comcast]]></category>

		<category><![CDATA[social media]]></category>

		<category><![CDATA[suddenoutbreakofcommonsense]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=122</guid>
		<description><![CDATA[More and more companies are starting to embrace the social web. Comcast discovered that communicating and following up with unsatisfied customers through third party web sites (personal blogs, Twitter, etc) can have a positive effect.
Of course, that's a Good Thing&#8482;, because as a (due to lack of alternatives, sometimes forced) customer it often seems that [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/07/26/comcast-reads-blogs-provides-customer-service-through-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zend_DB_Select Woes</title>
		<link>http://marcuswelz.com/2008/07/25/zend_db_select-woes/</link>
		<comments>http://marcuswelz.com/2008/07/25/zend_db_select-woes/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 02:48:09 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Zend Framework]]></category>

		<category><![CDATA[mixin]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[select]]></category>

		<category><![CDATA[sql]]></category>

		<category><![CDATA[sqlite]]></category>

		<category><![CDATA[tables]]></category>

		<category><![CDATA[zend framework]]></category>

		<category><![CDATA[zf]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=134</guid>
		<description><![CDATA[It's no secret, I'm a fan of the Zend Framework, which I've been using since version 0.15. A lot of components have been added since then, and many of the initial components have been refactored and enhanced, and have matured. And that includes the Zend_Db_Select component, which has been evolving quite nicely, and even Zend_Db_Table_Abstract [...]]]></description>
		<wfw:commentRss>http://marcuswelz.com/2008/07/25/zend_db_select-woes/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
