

<?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>Tony Bibbs</title>
	<atom:link href="http://www.tonybibbs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tonybibbs.com</link>
	<description>Family, Outdoors and Technology</description>
	<lastBuildDate>Thu, 11 Feb 2010 20:48:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Comparing Propel and Doctrine</title>
		<link>http://www.tonybibbs.com/2010/02/comparing-propel-and-doctrine/</link>
		<comments>http://www.tonybibbs.com/2010/02/comparing-propel-and-doctrine/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 20:40:18 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[ORM]]></category>
		<category><![CDATA[Propel]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/?p=329</guid>
		<description><![CDATA[I&#8217;ve recently decided to make the switch to Doctrine as the ORM of choice for any new PHP projects we work on.  I didn&#8217;t make this decision lightly as, until now, I have been a long time user and advocate of Propel having given talks on it at PHP conferences and even a webinar [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently decided to make the switch to <a href="http://www.doctrine-project.org">Doctrine</a> as the ORM of choice for any new PHP projects we work on.  I didn&#8217;t make this decision lightly as, until now, I have been a long time user and advocate of <a href="http://propel.phpdb.org">Propel</a> having given talks on it at PHP conferences and even a webinar or two.  So why the change?  That&#8217;s really not significant, what is significant is I think I can give a very quick punchlist of things about each that other PHP&#8217;er might find useful when evaluating them for themselves.</p>
<p><b>Propel</b></p>
<p><b>Pros</b> &#8211; First, let&#8217;s be clear I&#8217;m not talking about the pros of using an ORM. I&#8217;m talking about the good things that this ORM implementation brings to the table. Those are:</p>
<ul>
<li>Hydration Speed &#8211; You can argue you should never retrieve hydrated PHP objects from query if you don&#8217;t plan on taking some sort of save or delete action on it.  Yes, that&#8217;s true from a performance standpoint, however, if you are building a site where performance simply isn&#8217;t a concern then you&#8217;ll be pleased to know Propel can hydrate a set of objects quickly enough to be used in building a view (i.e. a data grid of some sort).</li>
<li>Classic Getters/Setters &#8211; You get these methods stubbed out in the base classes that Propel generates and you can override them easily.  I should note Doctrine can do similar sorts of things but not in a conventional way.</li>
<li>Support &#8211; The Propel mailing lists and IRC channel on freenode are pretty active, thought, not near as active as Doctrine&#8217;s.</li>
</ul>
<p><b>Cons</b></p>
<ul>
<li>Dependency hell &#8211; Propel has improved this but it&#8217;s still not perfect.  Back in the early days, before PDO, you needed Propel&#8217;s generator, <a href="http://phing.info">Phing</a> and <a href="http://creole.phpdb.org">Creole</a>.  Now you just need the generator and Phing. Phing is very much like Java&#8217;s Ant build tool.  While I understand and get why they use Phing, it adds a layer of complexity that makes it a barrier to new users.  Propel&#8217;s generator isn&#8217;t as bad as it is just a set of Phing targets to do Propel&#8217;s bidding.  If you come from .NET or Java using Phing won&#8217;t be a big deal but if you aren&#8217;t familiar with Ant or nAnt then Phing will come with a learning curve.</li>
<li>Criteria &#8211; Propel&#8217;s way to help ensure portable queries are built is via their Criteria object.  While I get the need for it, not having a explicit way to run native SQL short of getting a PDO connection and doing all the work that way is a short coming.  In fact, I despise Criteria so much I never use it, mainly because it doesn&#8217;t take too much work to hit a situation that Criteria either can&#8217;t handle well or make the code so complicated it&#8217;s not worth it.</li>
<li>No 5.3 namespace support &#8211; Let&#8217;s face it, we are all tired of Really_Long_Class_Names ala PEAR, Zend Framework, et. al.</li>
<li>Community &#8211; This is probably hard to blame on any one person but for a long time no work was done on Propel.  There was a change in project leads which took a long time and the development efforts took a while to get going.  I&#8217;m happy to say the team is active again, but a lot of ground was lost during the downtime.</li>
</ul>
<p><b>Doctrine</b></p>
<p><b>Pros</b></p>
<ul>
<li>No other dependencies.  Doing builds is easy as creating a simple PHP command line file and running it.  No Phing, no other external property files.</li>
<li>Magic finders &#8211; I love this.  Say you have a user table with a user_name field that has a unique index on it.  Retrieving this is as simple as
<pre>Doctrine::getTable('User')->findOneByUserName('janedoe');</pre>
<p>. Propel would require a few more lines setting up a Criteria object and running it.</li>
<li>Named Queries &#8211; This is something I pitched to the Propel development team quite a long time ago that always got a luke warm reception from the community.  I ended up implementing my own named query implementation which worked well enough that I never used Criteria.  With Doctrine you just get it out of the box:
<pre>
$this->addNamedQuery(
    'someQueryName',
    \Doctrine_Query::create()
        ->select('*')
        ->from('User u')
        ->where(user_name = ? AND 'password = ?')
);
</pre>
<p>Now I&#8217;m not totally in love with that syntax, it&#8217;s not much better than Criteria, honestly, however I go through that pain once and then I can just say:</p>
<pre>
$user = \Doctrine::getTable('User')->find('someQueryName', array('janedoe',SHA1($password)));
</pre>
<p>It&#8217;s also worth noting you can also use named queries to issue raw SQL, though, it will only return the raw recordset. Some of you are probably asking WTF? Named Queries?  Read up on them, decide for yourself if they are for you&#8230;all I can say is after having used an implementation for years I&#8217;m sold on it (maybe that can be a future blog post).
</li>
<li>
Documentation &#8211; Their documentation is top-notch.  Only improvement that is needed is comment support to the manuals.
</li>
<li>
Community &#8211; Let&#8217;s face it. Doctrine has gained some traction and all you need to do is follow the mailing lists, IRC and other community resources to see they simply get it.  Their partnership with Zend Framework is a shining example of good strides in this area.</li>
</ul>
<p><b>Cons</b></p>
<ul>
<li>Hydration Override &#8211; This one had me scratching my head the first time I noticed it.  By default, if you fetch an object by the same primary key twice you don&#8217;t get two different copies, you get a pointer to the most recent version.  On the surface that makes sense but there are a number of reasons I don&#8217;t like this as the default setting.  Luckily you can turn this off through a configuration setting when you initialize Doctrine.</li>
<li>Hydration Speed &#8211; This is my biggest complaints with Doctrine.  If you run a query that pulls a parent/child relationship (i.e. a customer and their orders) this take a lot of time with Doctrine&#8217;s hydration method.  The complexity is the circular references you can get.  I don&#8217;t know why Propel handles this so much better but the impact is you can&#8217;t use Doctrine&#8217;s hydrated objects in you views.  The way around this, I&#8217;ll call the Doctrine Way, is to have them hydrated as arrays.  You still get the parent&#8217;s children, you just aren&#8217;t working with a native PHP object.  When you think about it, it make sense, though I still prefer having a choice. The performance hit you take, even on simple queries, makes the array hydration mandatory if you are pulling more than one or two records from the database.</li>
<li>No 5.3 namespace support &#8211; It too doesn&#8217;t support namespaces yet.</li>
</ul>
<p>This isn&#8217;t meant to be a comprehensive review of either system, rather, a punchlist of noteable things.  I don&#8217;t feel this blog post is near comprehensive enough to base your decision on, rather, it can be used in addition to your findings.  I&#8217;d love to hear the other pros and cons from either camps.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2010/02/comparing-propel-and-doctrine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Arenas Effect (and Gun Control)</title>
		<link>http://www.tonybibbs.com/2010/01/the-arenas-effect-and-gun-control/</link>
		<comments>http://www.tonybibbs.com/2010/01/the-arenas-effect-and-gun-control/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 02:40:39 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Firearms]]></category>
		<category><![CDATA[Gun Rights]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/?p=312</guid>
		<description><![CDATA[
Gilbert Arenas has made a complete ass of himself, the Wizards and the NBA by knowingly taking guns to &#8220;work&#8221; as a &#8220;joke&#8221;.  The fact he made an ass of himself doesn&#8217;t bother me.  People do it all the time, but when their dumb decisions have an impact on me that&#8217;s where I [...]]]></description>
			<content:encoded><![CDATA[<p>
Gilbert Arenas has made a complete ass of himself, the Wizards and the NBA by knowingly taking guns to &#8220;work&#8221; as a &#8220;joke&#8221;.  The fact he made an ass of himself doesn&#8217;t bother me.  People do it all the time, but when their dumb decisions have an impact on me that&#8217;s where I draw the line.  How did Gilbert&#8217;s poor judgement impact me?  In two ways: 1) it digs up the gun control issue out of context and 2) perpetuates the notion that blacks, through the misguided judgements of professional athletes, idealize the thuggish lifestyle.
</p>
<p>
The gun control issue is the one that burns me the most.  Gun control advocates are already a motivated group and they will no doubt take Gilbert&#8217;s actions, in one of the most anti-gun cities in America, out of context and use this as further motivation to ban guns.  This is my &#8220;Turn them into Monsters&#8221; reference on my post earlier on <a href="http://www.tonybibbs.com/2010/01/how-to-stop-the-hunting-tradition/">How to Stop the Hunting Tradition</a>.  Arenas will be turned into a monster that represents the hunting culture, though, I can say with virtual certainty that Gilbert knows nothing of the lifestyle. Don&#8217;t believe me? With public support for tougher gun control <a href="http://www.washingtonexaminer.com/opinion/blogs/beltway-confidential/New-poll-Support-for-tougher-gun-laws-at-lowest-point-in-decades-63920207.html?c=y">at an all time low</a>, anti-gun rights groups will try to seize the moment. You only need to see some of the comments pouring in already (<a href="http://www.sacbee.com/sports/story/2440890.html">here</a> and <a href="http://www.huffingtonpost.com/2010/01/04/gilbert-arenas-guns-were-_n_411086.html?show_comment_id=37510678#comment_37510678">here</a>).
</p>
<p>
The sad part is Arenas isn&#8217;t alone.  You have Plaxico, P. Diddy and a host of black entertainers turning up with firearms in situations that impact not only gun control but the hunting lifestyle I hold so dear.  It is important that anyone reading this still objective on the gun control issue, understand that people like Arenas do not represent gun owner (generally) and hunters (specifically).
</p>
<p>
The second impact this Arenas situation has on me is the fact he is black.  Stereotypes are already ripe and, trust me, living in Iowa with hobbies that take me into rural settings I know what they are.  It is on this issue I find myself <a href="http://msn.foxsports.com/nba/story/Stephen-A-Smith-Arenas-analysis-010310">agreeing with Stephen A Smith</a>.  I say throw the book on him.  No, not with just unpaid leave for the rest of the season&#8230;what will that do?  The guy has a $100 million contact so if you sit him out now when he&#8217;s already made roughly $7 million, he&#8217;ll only lose around $9 million dollars, or 10% of his contract. Me, if I tote heat to work &#8211; joking or not &#8211; they put me under the jail.  Furthermore, my real rage comes from the parent in me.  Children, including black kids, look up to professional athletes. Sure, bring out your Charles Barkley &#8220;I am not a role model&#8221; mantra.  But even Sir Charles didn&#8217;t mean it in this bad of a context. Apparently I&#8217;m not the only person of color taking this stance. Reverand Al would just assume <a href="http://www.washingtonpost.com/wp-dyn/content/article/2010/01/05/AR2010010503550.html">throw the book at Areans, too</a>.
</p>
<p>
To many I am probably just an anomoly&#8230;a black, legal gun-toting American living in Iowa with a thirst for the outdoors and the lifestyle it affords me.  Maybe so, but being responsible regardless of context is something I expect of my family, friends and of all Americans across gender, political and racial lines.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2010/01/the-arenas-effect-and-gun-control/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Street Smarts for the Woods</title>
		<link>http://www.tonybibbs.com/2010/01/street-smarts-for-the-woods/</link>
		<comments>http://www.tonybibbs.com/2010/01/street-smarts-for-the-woods/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 03:21:08 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Hunting]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/?p=303</guid>
		<description><![CDATA[
For the beginner, hunting can be an overwhelming experience.  Nevermind that one may not know much about firearms, understand the gear needed or how to use the right call.  By removing all that you are left with a more fundamental set of skills which can be described by a solitary, single word: Woodsmanship. [...]]]></description>
			<content:encoded><![CDATA[<p>
For the beginner, hunting can be an overwhelming experience.  Nevermind that one may not know much about firearms, understand the gear needed or how to use the right call.  By removing all that you are left with a more fundamental set of skills which can be described by a solitary, single word: Woodsmanship.  Nevermind the traditional sex roles that term might conjur up, Woodsmanship cares not about gender, race or wealth.  Woodsmanship is being able to decipher what feels like sensory overload to the novice.  The sounds, tracks, expansive terrain, shifting weather and seasonal changes in your quarry.  Woodsmanship is knowing when to call and when to shut-up. Knowing when to move and when to set still. Knowing when to pass up on a bad shot and when to wait on a decent shot for a better one. It&#8217;s knowing how the land shapes the pattern of nature&#8217;s creatures, how the need for food, water and cover effects their habits and how their desire to breed can toss all of that out the window.  Indeed, Woodsmanship is street smarts for the woods.  So how do you get it?
</p>
<p>
While some of what is Woodsmanship can come natural, such as the ability to see the flick of a buck&#8217;s tail through dense, winter timber to the ability to navigate unfamiliar terrain without getting lost.  However, much of Woodsmanship comes from a single source.  Experience.  Luckily for those of us young in our lifetime outdoors, experience doesn&#8217;t have to be the kind experienced first hand, it can be experiences others have accrued through the years.  In fact, your first course &#8211; Woodsmanship 101 &#8211; should take advantage of as many outdoors veterans as you can.  Working in your favor, many of the best outdoorsmen I know have a unique combination of arrogance and unselfishness that makes it easy to draw knowledge out of them.  They can&#8217;t wait to tell you what they have learned while hunting and how good they are at doing it!
</p>
<p>
Your 200 level Woodsmanship course moves you to published works.  <a href="http://en.wikipedia.org">Wikipedia</a>, outdoors magazines, outdoors television shows and publications by outdoors organizations such as the <a href="http://www.nra.org">National Rifle Association (NRA)</a> and <a href="http://www.ducks.org">Ducks Unlimited (DU)</a> and outdoor TV shows will be a good place to start and has the added benefits of serving you well when life keeps you indoors. My suggestion is to skip Barnes and Noble and head to your closest half-price book store where there will no doubt be a number of hunting books on the cheap.  Better, in my opinion, are the regional online communities such as <a href="http://www.iowasportsman.com">Iowa Sportsman</a>.  Not only do such communities have a lot of members with tons of experience, they can also lead to friendships with people willing to show a novice the ropes.
</p>
<p>
After that, your studies take you into woods where Mother Nature leads the class.  Entering the woods shouldn&#8217;t make you feel you are encroaching so much as you joining your rightful place in nature.  Woodsmanship is much to do with reestablishing your ties with nature that our society, full of distraction has tried hard to tear down. Once there Mother Nature will likely not lay quarry in your lap, rather, give you the chance to listen and watch your quarry allowing you to apply this knowledge on future hunts.  In fact, Mother Nature will often give you as much advice on how to turkeys while you are on that deer hunt as she is about deer.  Woodsmanship is being open to the experience, appreciating that killing is a small part of hunting, the blending in with nature to watch creatures do what they due is the truest reward of any hunt.
</p>
<p>
Finally, it&#8217;s important that if you learn nothing else from all this, that Woodsmanship isn&#8217;t so much an attainable goal, rather, a ladder that much be climbed one step at a time but that can, with the help of others, be scaled quicker.  It&#8217;s a path that is best shared and when shared with a seasoned veteran of the wood, Woodsmanship is knowing they only do so with the implicit expectation that you will do the same for others.
</p>
<p>
<b><i>NOTE:</i></b> Many thanks to the <a href="http://www.iowasportsman.com">Iowa Sportsman Community</a> (formerly Iowa Outdoors). Their member continue to teach me about Woodsmanship and the true meaning of happiness.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2010/01/street-smarts-for-the-woods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Stop the Hunting Tradition</title>
		<link>http://www.tonybibbs.com/2010/01/how-to-stop-the-hunting-tradition/</link>
		<comments>http://www.tonybibbs.com/2010/01/how-to-stop-the-hunting-tradition/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 03:37:03 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Gun Rights]]></category>
		<category><![CDATA[Hunting]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/?p=267</guid>
		<description><![CDATA[
Hunting is an archaic activity that does nothing other than give its participants an excuse to bear arms and hurt nature&#8217;s creatures.  Stopping these senseless traditions is as easy as exposing these people as the brutal, animal hating, gun toting rednecks they are.  How do we do this?


Start Small &#8211; Before trying to [...]]]></description>
			<content:encoded><![CDATA[<p>
Hunting is an archaic activity that does nothing other than give its participants an excuse to bear arms and hurt nature&#8217;s creatures.  Stopping these senseless traditions is as easy as exposing these people as the brutal, animal hating, gun toting rednecks they are.  How do we do this?
</p>
<ol>
<li><b>Start Small</b> &#8211; Before trying to destroy hunting in a large country like the United States which is deep with outdoor traditions, start with a smaller country such as the United Kingdom.  Using the Scientific Method, establish it as your control and try out a number of ideas you feel can lead to outlawing the barbaric outdoor lifestyle.  Start by seeking the outran ban of a very specific species of animal that people are sympathetic to.  In the case of the UK, for example, you can use the medieval class system and how it ties to oppression as a great reason to ban fox hunting.  If that doesn&#8217;t work, throw in the fact the foxes will die in a brutal manner because of the use of dogs since, as we all know, mother nature is the most humane of all killers&#8230;not people nor pets.</li>
<li><b>Divide and Conquer</b> &#8211; This concept is nothing new. Take a large group such as outdoors enthusiasts and divide them into increasingly smaller groups.  Start by dividing them into hunting and trapping camps.  Then move on to dividing hunting into deer hunters, turkey hunters and the like.  Then do your best to turn those groups against one another by suggesting whitetail deer are much more of a challenge to hunt than turkey.  Encourage the proliferation of region and species specific online communities.  In this manner, mis-information they give about us so-called &#8220;antis&#8221; will be limited to those communities.  Be sure to perpetuate the stereotype that hunting is an activity for only the manliest of white, anglo-saxon protestants.  The last thing we need is the additional contention that women, blacks and Mexicans could bring to the table.</li>
<li><b>Turn Them into Monsters</b> &#8211; It&#8217;ll be much easier to outlaw outdoor activities if the participants are looked upon negatively by the general public.  The best part of this is you can often profit off of this activity by making things like stickers of the Confederate Flag, bullet holes or of phrases like &#8220;if it&#8217;s brown it&#8217;s down&#8221;.  Then make sure others take note during hunting season as these hillbillies sport the elk or deer they shoot uncovered in the back of their pick-up or trailer.  After that, find a few sensational idiots in the outdoor community such as felons and poachers and create as much publicity around their situations as possible.  When that doesn&#8217;t work, hit the public with obscure facts or outright fabrications of so-called &#8220;scientific evidence&#8221; that clearly show that hunting does nothing to curb wildlife populations and even exposes those populations to hard hitting diseases that could decimate their already &#8220;managed&#8221; populations. </li>
<li><b>Find Sympathetic Businesses and Organizations</b> &#8211; When the above doesn&#8217;t work, get a few so-called &#8220;non-profits&#8221; who can fight these barbarians using public donations. If you can, do some clever things like get companies that provide common, everyday products like dog food to donate part of their revenues to those same non-profits.  Outdoorsmen are pretty dumb and won&#8217;t dig deep enough to find out that the product they just bought is actually working against them.  These non-profits also bring the added benefit of having Washington D.C. lobbyists at their disposal.  These groups are great at working the political circuit and the art of the amendment. That&#8217;s right, our lobbyist friends have found crafty ways to attach anti-hunting legislation to bills that have nothing to do with hunting or the outdoors! While all that is going on, we need to point out at every chance we get that our non-profit partners and leaders in business are responsible for the massive turn around in game populations throughout the country.  Hunters will lie and suggest the government &#8211; through hunting and fishing licenses &#8211; are responsible which, of course, is a lie.</li>
<li><b>Hit Hollywood Hard</b> &#8211; Let&#8217;s face it, there is no denying the influence that Hollywood and celebrity actors have on the general public.  Many of these same celebrity actors tote around their pets and even dress them up like real people.  Find the biggest names in Hollywood you can to take up our cause and publicly humiliate these neanderthals.  Don&#8217;t forget, these same celebrities have deep pockets and relationships with influential people such as judges and politicians.  If Hollywood can get Obama elected, damn it, they can help us outlaw hunting!</li>
<li><b>Outlaw Their Tools</b> &#8211; Fact is these bozo&#8217;s can&#8217;t kill or harm an animal if we take away the very tools they depend on.  First try hitting them where it hurts most by taking away their guns.  If you can&#8217;t ban firearms outright, first try to outlaw automatic weapons. Turn it into an issue of public safety deflecting the issue of hunting.  Be sure to point to the escalating crime in your area as a reason to get rid of these radical firearms.  Once you get automatic guns outlawed, just start climbing the ladder to handguns, shotguns and rifles.  While you work on the firearms bans be creative and consider trying to obtain the outright ban of ammunition.  Maybe even sue a firearms or ammunition manufacturer for the death of some pour soul in some big city&#8230;it doesn&#8217;t matter that hunting wasn&#8217;t involved.</li>
<li><b>Give Them Something Else To Do</b> &#8211; If all of the above fails, one thing we have in our hip pocket is that hunting is on the decline.  We need to continue pushing distractions such as mobile phones, the Internet and gaming devices like the Wii and Playstation 3.  Fact is, kids would rather text, update their Facebook status, or play computer games against each other.  This is our Plan B.  These hunting fools are too stupid to realize how drastic the decline in hunting licenses are and the positive effect it will have for us moving forward.</li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2010/01/how-to-stop-the-hunting-tradition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Moving On</title>
		<link>http://www.tonybibbs.com/2009/12/moving-on/</link>
		<comments>http://www.tonybibbs.com/2009/12/moving-on/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 14:38:10 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Geeklog]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/?p=285</guid>
		<description><![CDATA[<p>My guess is this will largely go un-noticed but I felt a formal blog post was in order for announcing my decision to stop contributing to AptitudeCMS and Geeklog.]]></description>
			<content:encoded><![CDATA[<p>My guess is this will largely go un-noticed but I felt a formal blog post was in order for announcing my decision to stop contributing to AptitudeCMS and Geeklog.</p>
<p>
I owe quite a bit to <a href="http://www.geeklog.net">Geeklog</a>&#8230;after installing Linux and PHP for the first time over 12 years ago I ran across Geeklog, learned a thing or two about open source development and started <a href="http://www.iowaoutdoors.org">Iowa Outdoors</a> (which I&#8217;ve since sold).  Not long after that I was fortunate enough to serve as the project lead for Geeklog before handing it off to the current lead, Dirk Haun.  Back then, there weren&#8217;t many viable options in the now overcrowded PHP CMS market.  Sadly, I&#8217;ve watched Geeklog&#8217;s popularity slowly decline to its current state.  That said, I have a few constructive things to say to the Geeklog community and the PHP community at large.</p>
<p>
First to the Geeklog community.  You&#8217;ve run into rough times.  WordPress, Joomla, Drupal and company really are the champions in this space.  Without doing more digging than I care to, I know Geeklog is far behind in any of the hard metrics that really matter (code commits, # of active developers, etc).  Just a hint of proof is had by comparing <a href="http://www.ohloh.net/p/geeklog">Geeklog&#8217;s Ohloh stats</a> with <a href="http://www.ohloh.net/p/wordpress">this</a>, <a href="http://www.ohloh.net/p/joomla">this</a> and <a href="http://www.ohloh.net/p/drupal">this</a>.  Then there those things you can&#8217;t quite quantify, the passion of the community and the level of innovation happening.  Right now I feel the Geeklog community is pretty stagnant.  Some of this is likely to be blamed on the <a href="http://www.glfusion.org/">fork of Geeklog</a> (whose <a href="http://www.ohloh.net/p/glfusion">Ohloh stats</a> don&#8217;t speak well either).  Fact is if you combine both glFusion and Geeklog&#8217;s numbers together it still paints a pretty bad picture.  You could argue they don&#8217;t need to aspire to be like WordPress, Joomla and Drupal which is fine but what I think has gotten lost in all of this nobody has consciously said if that&#8217;s the game they want to play and, if not, what differentiates Geeklog from the rest?  In the meantime, the set of features added over the past year or two suggest, in fact, they are playing catch-up to some of the features found in those other systems.  That&#8217;s not bad, but my point is Geeklog seems to lack a tangible goal. I guess that is part of the nature of open source&#8230;the perpetual, organic, itching of scratches but I still feel open source projects need to have long term visions far beyond the next commit, next point release and even next major release. With that said here&#8217;s some suggestions for Geeklog&#8217;s community in no particular order:</p>
<ul>
<li>Change your name &#8211; I attempted to address this with <a href="http://www.aptitudecms.org">AptitudeCMS</a> and failed but something has to be done.  I&#8217;m not sure if there is a precedent for a name change in a well established open source project but it has to happen for Geeklog.  To me it is branding 101.  For anybody outside of a blogger or hobbyist, it&#8217;s hard to take the Geeklog brand seriously.  Pointy haired managers scoff at such a name (I&#8217;ve seen it). Sure you risk confusing or alienating people but I feel Geeklog, as a brand, is hard to sell.  That said, even without a name change the remaining points are crucial.</li>
<li>Change your image &#8211; The Geeklog homepage screams mid-1990&#8217;s era design.  It&#8217;s the first impression we give users.  Even if you don&#8217;t want to compete directly with the bigger kids on the block, you can&#8217;t argue that <a href="http://www.joomla.org/">Joomla</a>, <a href="http://wordpress.org/">WordPress</a> and even the <a href="http://www.glfusion.org/">Geeklog fork</a> looks better.  It&#8217;s the first impression a user gets.  I think improving the Geeklog homepage will lead to more interest.  Once captivated, I have now doubt the codebase speaks for itself but, for now, the Geeklog homepage is forgettable for new users.</li>
<li>Get social &#8211; Geeklog is no where to be found on Twitter, Facebook, etc.  The missed opportunities here are, frankly, staggering.  The PHP community (as well as Drupal, Joomla, etc) all have a strong presence in these areas and I have no doubt the Geeklog community could benefit by joining the conversation.</li>
<li>Blog &#8211; Let&#8217;s face it, there isn&#8217;t much in the way of active Geeklog developers.  The ones there really need to blog about what&#8217;s going on behind the scenes.  What are you working on?  What&#8217;s a challenge you are facing? Any good commits lately?  This in part gets back to the goal setting discussion but it is more todo with giving the community a glimpse of what is going on.</li>
<li>Find a partner &#8211; Ok, this is probably one of the more controversial points and one that is often dodged in open source discussions but behind nearly all successful open source projects is an organization.  Sometimes it is not-for-profits but many times it is a private company or two.  Right now there isn&#8217;t a single Geeklog developer paid to work full time or even half-time on the core of the system.  Geeklog&#8217;s current codebase, in my opinion, has to be worth that investment.  I think part of the problem here has to do with the name, image and branding issues I brought up. That said, I know of a lot of organizations making selfish use of Geeklog without giving anything back.  No bugs, no code, no testing, no translations nada.  Zilch.  Now before the hardcore OSS supporters flame me, I&#8217;m not suggesting the project be effectively run by a company or an organization, rather, there should be enough of a community still where they can contribute developer hours to the project.  I believe strongly the project itself needs to remain organic able to change with the needs of those who lead&#8230;but that some investment by industry is needed.  Who will stand up?</li>
</ul>
<p>
Now to the PHP community at large.  As I look at AptitudeCMS, I see a body of work that started before there were any other PHP frameworks around.  I started with an MVC implementation.  I incorporated a simple template engine.  Later added an ORM.  Much of this happened over many employers and well before anybody uttered Zend Framework for the first time.  AptitudeCMS as a project is a failure in large part because it was never really released as a &#8220;formal&#8221; project until well after current PHP framework space became cluttered.  Fine, it is what it is.  However, to see this stuff rot and be used only when I have a new project come up seems silly.  I&#8217;m pleading, for my own sanity, don&#8217;t let this code go to waste.  Feel free to dissect it, borrow anything you find useful and laugh at any bad code you dig up.  Some areas of focus:</p>
<ul>
<li>MVCnPHP &#8211; It&#8217;s a viable alternative to Zend Framework&#8217;s MVC implementation.  It&#8217;s small, configureless and doesn&#8217;t present file contention issues common with ZF controllers.  I&#8217;m sure a Zender can point out ways around this but most ZF projects I&#8217;ve seen have all the logic in the controller which seems really wrong to me and is a bit painful when you have multiple developers working in the same controller.  Sure SVN, etc can handle the merge but you end up with a lot of merges.  MVCnPHP is much more atomic, view logic goes in a simple, small view class.  Command logic goes in a similar command class.  The controller is only responsible for routing requests between views and commands.  An upside to this is MVCnPHP also has basic support for tainted variables.  For the unaware, it&#8217;s a simple feature that notifies developers with exceptions when an unsanitized GET or POST variable is used.</li>
<li>Filtering &#8211; I built a filter class on top of Zend Framework that can easily be added to MVCnPHP views and commands.  Without much work it could also be incorporated into Zend Framework MVC implementations.  Look first <a href="http://www.aptitudecms.org/wiki/page/ACMSFIEO/">here</a> then see the &#8220;cool code&#8221; in the <a href="http://www.aptitudecms.org/trac/browser/AptitudeCMS/trunk/plugins/kernel/system/Filter.php">Filter class</a> which is nothing more than a class that passes calls thru to Zend&#8217;s library and then the <a href="http://www.aptitudecms.org/trac/browser/AptitudeCMS/trunk/plugins/kernel/system/views/ViewAbstract.php#L1010">abstract view that uses it</a>. I doubt the code will tickle you as is but I think conceptually it has merit for someone out there.</li>
<li>ORM->Form and Form->ORM &#8211; Because we use Propel we were able to dream up a way where we could hand a view an object and have it pre-fill from that object without us having to explicitly set the form field values.  Similarly, in our commands we found a handy way of creating the same ORM objects from the submitted form without having to explicitly map and set the ORM object&#8217;s values.  This was a huge time saver.  I think with a little work this code could be modified for Doctrine. Here&#8217;s how we map <a href="http://www.aptitudecms.org/trac/browser/AptitudeCMS/trunk/plugins/kernel/system/commands/CommandAbstract.php#L303">a form submission to a set of object(s)</a> and here is <a href="http://www.aptitudecms.org/trac/browser/AptitudeCMS/trunk/plugins/kernel/system/pear/apteno/mvcnphp/ViewFlexyAbstract.php#L738">mapping a object to the form</a></li>
</ul>
<p>
One thing I want to warn the community at large about is I&#8217;m seeing what feels to me like a trend in PHP to conform.  You could argue that this very blog post is me, in a way admitting defeat and conforming, but I want to state the obvious that you always have a choice.  It seems like many people are choosing to use part of a framework they have already installed instead of challenging whether or not it is the best tool for the job.  Just because a filter class is included in Zend Framework doesn&#8217;t mean you have to use it.  Just because ezComponents has a workflow component doesn&#8217;t mean you must employ it. Fact is AptitudeCMS includes Zend Framework, has some PEAR libraries and even some things like MVCnPHP.  You can argue bloat, file sizes, which is valid but I&#8217;m confident you can still cherry pick the best parts of a framework to give you something you can work with long term.  I&#8217;ve used Flexy instead of Smarty, MVCnPHP instead of Zend Framework and Propel instead of Doctrine.  Some could see those as one bad decision after another but it&#8217;s simply the result of a cherry picking exercise I did long ago.  Today I&#8217;d likely make different decisions but I can tell you I wouldn&#8217;t put all my eggs in one basket.  Nor should you.</p>
<p>
This blog entry, a self admission to failure, hopefully didn&#8217;t upset anybody along the way.  To be clear I&#8217;m the only one who failed here.  Maybe &#8220;fail&#8221; is too harsh a word as I&#8217;m quite happy to make this transition but I want to be clear to Dirk Haun, the Geeklog Project and those of you whom I&#8217;ve brushed IDE&#8217;s with are all people I very much respect.  I hate &#8220;losing&#8221; and this feels like a loss and will always feel that way.  If anybody makes use of any of these suggestions please pass that along in an email to me.  It will take a bit of the sting off.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/12/moving-on/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DNR Safe Hunting Commercial</title>
		<link>http://www.tonybibbs.com/2009/11/dnr-safehuntingcommercial/</link>
		<comments>http://www.tonybibbs.com/2009/11/dnr-safehuntingcommercial/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 10:03:02 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Hunting]]></category>
		<category><![CDATA[Kids]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/11/DNR-SafeHuntingCommercial/</guid>
		<description><![CDATA[Here's the second commercials featuring yours truly.  

<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/jiUkYn0k7lI&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jiUkYn0k7lI&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the second commercials featuring yours truly.  </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/jiUkYn0k7lI&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jiUkYn0k7lI&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/11/dnr-safehuntingcommercial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bibbs Family Featured in Iowa DNR Commercial</title>
		<link>http://www.tonybibbs.com/2009/10/bibbs-family-dnr-commercial/</link>
		<comments>http://www.tonybibbs.com/2009/10/bibbs-family-dnr-commercial/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 15:14:04 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Hunting]]></category>
		<category><![CDATA[Kids]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/10/bibbs-family-dnr-commercial/</guid>
		<description><![CDATA[This is Maia, Lauryn and myself in a DNR video featuring safety as the Iowa Pheasant season gets started:

<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nAUxjaAOSZc&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nAUxjaAOSZc&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>]]></description>
			<content:encoded><![CDATA[<p>This is Maia, Lauryn and myself in a DNR video featuring safety as the Iowa Pheasant season gets started:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nAUxjaAOSZc&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nAUxjaAOSZc&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/10/bibbs-family-dnr-commercial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boat for Sale</title>
		<link>http://www.tonybibbs.com/2009/07/boat-for-sale/</link>
		<comments>http://www.tonybibbs.com/2009/07/boat-for-sale/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 08:30:14 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Fishing]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/07/Boat-For-Sale/</guid>
		<description><![CDATA[Well, I'm finally getting around to upgrading my boat.  I'm pretty excited but this also means I need to sell mine.  I'm asking &#36;3,750 or best offer for a great boat with these features:
<ul>
<li>1997 Spectrum Boat</li>
<li>2006 30hp Mercury 4-stroke with less than 35 hours</li>
<li>3 swivel seats with backs all in good condition.  1 pedestal seat used for bass fishing</li>
<li>12 gallon gas tank, two storage compartments and livewell.</li>
<li>Lights, bilge and aerator all work and are in good condition</li>
<li>Galvanized trailer with full spare that's in fantastic shape.  Tires on trailer are brand new.</li>
<li>Optional: Minnkota Trolling motor.  It's an auto-pilot that is compatible with the co-pilot remote (not includeded)</li>
<li>Interested parties should contact me at tony [at] tonybibbs [dot] com or call 515.554.8046</li>
</ul>
<p>
<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5501298&#38;server=vimeo.com&#38;show_title=1&#38;show_byline=1&#38;show_portrait=0&#38;color=&#38;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5501298&#38;server=vimeo.com&#38;show_title=1&#38;show_byline=1&#38;show_portrait=0&#38;color=&#38;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><p><a href="http://vimeo.com/5501298">Fishing Boat for Sale</a> from <a href="http://vimeo.com/user1942966">Tony BIbbs</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
</p>]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;m finally getting around to upgrading my boat.  I&#8217;m pretty excited but this also means I need to sell mine.  I&#8217;m asking &#36;3,750 or best offer for a great boat with these features:</p>
<ul>
<li>1997 Spectrum Boat</li>
<li>2006 30hp Mercury 4-stroke with less than 35 hours</li>
<li>3 swivel seats with backs all in good condition.  1 pedestal seat used for bass fishing</li>
<li>12 gallon gas tank, two storage compartments and livewell.</li>
<li>Lights, bilge and aerator all work and are in good condition</li>
<li>Galvanized trailer with full spare that&#8217;s in fantastic shape.  Tires on trailer are brand new.</li>
<li>Optional: Minnkota Trolling motor.  It&#8217;s an auto-pilot that is compatible with the co-pilot remote (not includeded)</li>
<li>Interested parties should contact me at tony [at] tonybibbs [dot] com or call 515.554.8046</li>
</ul>
<p>
<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5501298&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5501298&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/5501298">Fishing Boat for Sale</a> from <a href="http://vimeo.com/user1942966">Tony BIbbs</a> on <a href="http://vimeo.com">Vimeo</a>.</p></p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/07/boat-for-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preparing to Wade Iowa&#8217;s Interior Streams</title>
		<link>http://www.tonybibbs.com/2009/06/wading-iowas-interior-streams/</link>
		<comments>http://www.tonybibbs.com/2009/06/wading-iowas-interior-streams/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 05:54:22 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Fishing]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/06/Wading-Iowas-Interior-Streams/</guid>
		<description><![CDATA[My first try at a short podcast.  Basically a video with zilch in the way of editing.  That's next:
<p>
<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5283617&#38;server=vimeo.com&#38;show_title=1&#38;show_byline=1&#38;show_portrait=0&#38;color=&#38;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5283617&#38;server=vimeo.com&#38;show_title=1&#38;show_byline=1&#38;show_portrait=0&#38;color=&#38;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></p>
<p><a href="http://vimeo.com/5283617">Preparing to Fish Iowa's Interior Streams</a> from <a href="http://vimeo.com/user1942966">Tony BIbbs</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>My first try at a short podcast.  Basically a video with zilch in the way of editing.  That&#8217;s next:</p>
<p>
<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5283617&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5283617&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></p>
<p><a href="http://vimeo.com/5283617">Preparing to Fish Iowa&#8217;s Interior Streams</a> from <a href="http://vimeo.com/user1942966">Tony BIbbs</a> on <a href="http://vimeo.com">Vimeo</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/06/wading-iowas-interior-streams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Follow Friday Insanity</title>
		<link>http://www.tonybibbs.com/2009/05/Stop-Follow-Friday-Insanity/</link>
		<comments>http://www.tonybibbs.com/2009/05/Stop-Follow-Friday-Insanity/#comments</comments>
		<pubDate>Fri, 29 May 2009 06:00:25 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/05/Stop-Follow-Friday-Insanity/</guid>
		<description><![CDATA[I hate this phenomenon on <a href="http://twitter.com">Twitter</a> called Follow Friday (referred to via the #ff and #followfriday hashtags).  Get ready for a big dose of hater-ade because I've endured this crap for the past few Friday's, filling up my Twitter stream and it's gone beyond the point of ridiculous.  So why am I hatin'?<p>Conceptually Follow Friday is cool.  It's a day to try and expand your Twitter network by taking recommendations from your followers on other people worth following.  Simple enough.  But the whole damn thing is missing the target.  That said, here's my Follow Friday *censormode*-list:</p><p><ul><li>My first gripe with Follow Friday is some people will recommend far too many people.  Some people even have multiple tweets giving a half dozen or more suggestions. Seriously, you can't give this whole thing a bit more thought and recommend just a few worthwhile suggestions?  </li><li>All you get in a Follow Friday tweet is the Twitter username.  Follow Friday tweets don't bother telling me why someone is being suggested.  That is sort of pointless because now I have to dig into their Twitter timeline and fine out if they are truly follow-worthy which is an exercise in futility especially if you are guilty of the first bullet.</li><li>Why Friday?  Sure, Follow Friday sounds cute but aren't people follow-worthy the other six days fo the week?</li><li>Oh, and my biggest *censormode* about the whole Follow Friday phenomenon is the follow-up tweet where the person being recommended in a Follow Friday tweet thanks the person who suggested them.  No, the thought is fine but make it a direct message and don't further clog my Friday timeline even more Follow Friday crap</li></ul></p><p><br/>Ok, so I've got that off my chest.  Now let's go a step further and turn this into constructive criticism by suggesting better ways you can implement Follow Friday:<ul><li>Limit the number of suggestions you make.  Give that limited number of suggestions some thought.</li><li>Give a reason your followers should follow the person you are recommending someone.  Consider going a step further by writing up a short blog entry why someone should be followed.  This has added benefits of not being lost on <a href="http://search.twitter.com">search.twitter.com</a> after a few weeks) and it acts as a place your followers can go to get more recommendations by you.</li><li>Try making recommendations on days other than Friday.  Sure, then you can't call it Follow Friday anymore but I think your followers will appreciate getting one recommendation a few days per week than a dozen all at once all without a stated reason</li></ul><p>Ok, I know all this probably came off negative and I know there are a lot of Friday Follow lovers out there.  Keep doing what you do, but please, consider taking some of this advice to make it more meaningful to all your followers.]]></description>
			<content:encoded><![CDATA[<p>I hate this phenomenon on <a href="http://twitter.com">Twitter</a> called Follow Friday (referred to via the #ff and #followfriday hashtags).  Get ready for a big dose of hater-ade because I&#8217;ve endured this crap for the past few Friday&#8217;s, filling up my Twitter stream and it&#8217;s gone beyond the point of ridiculous.  So why am I hatin&#8217;?
<p>
Conceptually Follow Friday is cool.  It&#8217;s a day to try and expand your Twitter network by taking recommendations from your followers on other people worth following.  Simple enough.  But the whole damn thing is missing the target.  That said, here&#8217;s my Follow Friday *censormode*-list:
</p>
<p>
<ul>
<li>
My first gripe with Follow Friday is some people will recommend far too many people.  Some people even have multiple tweets giving a half dozen or more suggestions. Seriously, you can&#8217;t give this whole thing a bit more thought and recommend just a few worthwhile suggestions?
</li>
<li>
All you get in a Follow Friday tweet is the Twitter username.  Follow Friday tweets don&#8217;t bother telling me why someone is being suggested.  That is sort of pointless because now I have to dig into their Twitter timeline and fine out if they are truly follow-worthy which is an exercise in futility especially if you are guilty of the first bullet.
</li>
<li>
Why Friday?  Sure, Follow Friday sounds cute but aren&#8217;t people follow-worthy the other six days fo the week?
</li>
<li>
Oh, and my biggest *censormode* about the whole Follow Friday phenomenon is the follow-up tweet where the person being recommended in a Follow Friday tweet thanks the person who suggested them.  No, the thought is fine but make it a direct message and don&#8217;t further clog my Friday timeline even more Follow Friday crap
</li>
</ul>
<p>
<br/>Ok, so I&#8217;ve got that off my chest.  Now let&#8217;s go a step further and turn this into constructive criticism by suggesting better ways you can implement Follow Friday:
<ul>
<li>Limit the number of suggestions you make.  Give that limited number of suggestions some thought.</li>
<li>Give a reason your followers should follow the person you are recommending someone.  Consider going a step further by writing up a short blog entry why someone should be followed.  This has added benefits of not being lost on <a href="http://search.twitter.com">search.twitter.com</a> after a few weeks) and it acts as a place your followers can go to get more recommendations by you.</li>
<li>
Try making recommendations on days other than Friday.  Sure, then you can&#8217;t call it Follow Friday anymore but I think your followers will appreciate getting one recommendation a few days per week than a dozen all at once all without a stated reason
</li>
</ul>
<p>
Ok, I know all this probably came off negative and I know there are a lot of Friday Follow lovers out there.  Keep doing what you do, but please, consider taking some of this advice to make it more meaningful to all your followers.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/05/Stop-Follow-Friday-Insanity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MVCnPHP v0.3.0 Released</title>
		<link>http://www.tonybibbs.com/2009/04/MVCnPHP-v0.3.0-Released/</link>
		<comments>http://www.tonybibbs.com/2009/04/MVCnPHP-v0.3.0-Released/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 14:09:04 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/04/MVCnPHP-v0.3.0-Released/</guid>
		<description><![CDATA[<p>Two weeks ago <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPProject">MVCnPHP</a> v0.3.0 was released into the wild.  This update really addresses only two things:</p><ol>    <li>CSRF Protection - If your views use the built in support for Flexy (via the class BaseViewFlexy) then your forms will automatically have a Cross Site Request Forgery token added to the form as a hidden field along with having two cookies set to check the validity of that CSRF token.  The CSRF support is enabled by default which means all MVCnPHP commands that extend BaseCommand will automatically check the token for you.</li>    <li>We've added the use of the __DIR__ magic PHP variable in the requirement statements.  Opcode caches, particularly <a href="http://www.php.net/apc">APC</a> optimize better when require's are used with absolute paths.</li></ol><p>As always we encourage you to <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPInstallation">download and install MVCnPHP</a>.  For faster notification on MVCnPHP news and releases be sure to follow <a href="http://www.twitter.com/aptenolc">AptenoLC</a> on <a href="http://www.twitter.com">Twitter</a></p>]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPProject">MVCnPHP</a> v0.3.0 was released into the wild.  This update really addresses only two things:</p>
<ol>
<li>CSRF Protection &#8211; If your views use the built in support for Flexy (via the class BaseViewFlexy) then your forms will automatically have a Cross Site Request Forgery token added to the form as a hidden field along with having two cookies set to check the validity of that CSRF token.  The CSRF support is enabled by default which means all MVCnPHP commands that extend BaseCommand will automatically check the token for you.</li>
<li>We&#8217;ve added the use of the __DIR__ magic PHP variable in the requirement statements.  Opcode caches, particularly <a href="http://www.php.net/apc">APC</a> optimize better when require&#8217;s are used with absolute paths.</li>
</ol>
<p>As always we encourage you to <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPInstallation">download and install MVCnPHP</a>.  For faster notification on MVCnPHP news and releases be sure to follow <a href="http://www.twitter.com/aptenolc">AptenoLC</a> on <a href="http://www.twitter.com">Twitter</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/04/MVCnPHP-v0.3.0-Released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webinar on Propel sponsored by php&#124;architect</title>
		<link>http://www.tonybibbs.com/2009/03/Propel-Webinar/</link>
		<comments>http://www.tonybibbs.com/2009/03/Propel-Webinar/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 07:33:35 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/03/Propel-Webinar/</guid>
		<description><![CDATA[This is just a friendly reminder that this Friday, March 27th from 12pm-1pm CST I will be giving a webinar on using <a href="http://propel.phpdb.org">Propel</a>, an <a href="http://en.wikipedia.org/wiki/Object-relational_mapping">object relational mapper (ORM)</a>.  This webinar is just <a href="http://tek.mtacon.com/c/s/free-webcast-series">one of a series</a> being sponsored by <a href="http://phparch.com">php&#124;architect</a>.  The webinar will focus on the basics of installing and using Propel as well as one or two more advanced topics.  If you are interested why not <a href="https://www2.gotomeeting.com/register/986890053">register now</a>!]]></description>
			<content:encoded><![CDATA[<p>This is just a friendly reminder that this Friday, March 27th from 12pm-1pm CST I will be giving a webinar on using <a href="http://propel.phpdb.org">Propel</a>, an <a href="http://en.wikipedia.org/wiki/Object-relational_mapping">object relational mapper (ORM)</a>.  This webinar is just <a href="http://tek.mtacon.com/c/s/free-webcast-series">one of a series</a> being sponsored by <a href="http://phparch.com">php|architect</a>.  The webinar will focus on the basics of installing and using Propel as well as one or two more advanced topics.  If you are interested why not <a href="https://www2.gotomeeting.com/register/986890053">register now</a>!</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/03/Propel-Webinar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MVCnPHP</title>
		<link>http://www.tonybibbs.com/2009/03/MVCnPHP-Announcement/</link>
		<comments>http://www.tonybibbs.com/2009/03/MVCnPHP-Announcement/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 06:19:51 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/03/MVCnPHP-Announcement/</guid>
		<description><![CDATA[I will start this blog entry by saying I like <a href="http://framework.zend.com">Zend Framework</a>.  I really do.  However, the part of ZF I don't use is the MVC implementation.  No, it's not bad.  Actually it's a good implementation that is the product of a lot of hard work by Zenders and non-Zenders alike.  I use bits and pieces of ZF in my PHP projects and, admittedly, Zend's MVC implementation never made the cut.  Why? <p>I started using my first MVC implementation, Phrame,  back around 2002 long before ZF. I was quickly turned off by Phrame's Stuts-ish familiarity (no, I don't hate on Struts either).  The crux of my problem was the need to edit a bunch of files just to implement one page in my web application.  So started <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPProject">MVCnPHP</a>. That need to itch a scratch produced an MVC implementation that made it's way into my 9-to-5.  Over the next 7 years or so I did attempt to release MVCnPHP into the wild but never really polished it off.  Today I'm happy to announce that has changed.<p>Before I get into MVCnPHP let me circle back around to ZF.  Why didn't I adopt it's MVC implementation when it was released?  I considered it but the issue simply came down to my biased view of the design differences.  In fact, I was motivated to release MVCnPHP because of a project I recently inherited that uses the Zend MVC implementation.  The biggest difference between the ZF MVC implementation and MVCnPHP is MVCnPHP is meant to allow you to isolate views and commands into their own files and simply drop them into a directory then having your controller immediately aware of them.  I admit this quality of MVCnPHP isn't unique in the world of MVC implementations but this whole experience motivated me to really start working on polishing the code and documenting how to use it.  Today I'm happy to announce my first release of those efforts.<p>So to cut the fluff, here's a few things to get you started on MVCnPHP:<ol><li>I know learning a new MVC implementation may appear time so to help you evaluate it you can see it in action with <a href="http://mvcnphp-demo.apteno.net/">this sample application</a> that not only excersizes most the features of MVCnPHP, it gives you quick access to the code behind the scenes.</li><li>After that why not <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPInstallation">download MVCnPHP</a>.  We have versions that support PHP 5.2.x and well as a release that support PHP 5.3 namespaces.</li><li>Once installed all you need to do use read the <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPGuide">MVCnPHP User Guide</a>. The guide is still a work in progress but it does cover most of what you need to get started.</li></ol><p>I can barely contain my personal excitement for getting this out. MVCnPHP represents a library that brings the benefits of a model-view-controller implementation in a package that is small, yet packed full of features with no limits for being extended. I hope you all agree.]]></description>
			<content:encoded><![CDATA[<p>I will start this blog entry by saying I like <a href="http://framework.zend.com">Zend Framework</a>.  I really do.  However, the part of ZF I don&#8217;t use is the MVC implementation.  No, it&#8217;s not bad.  Actually it&#8217;s a good implementation that is the product of a lot of hard work by Zenders and non-Zenders alike.  I use bits and pieces of ZF in my PHP projects and, admittedly, Zend&#8217;s MVC implementation never made the cut.  Why?
<p>
I started using my first MVC implementation, Phrame,  back around 2002 long before ZF. I was quickly turned off by Phrame&#8217;s Stuts-ish familiarity (no, I don&#8217;t hate on Struts either).  The crux of my problem was the need to edit a bunch of files just to implement one page in my web application.  So started <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPProject">MVCnPHP</a>. That need to itch a scratch produced an MVC implementation that made it&#8217;s way into my 9-to-5.  Over the next 7 years or so I did attempt to release MVCnPHP into the wild but never really polished it off.  Today I&#8217;m happy to announce that has changed.
<p>
Before I get into MVCnPHP let me circle back around to ZF.  Why didn&#8217;t I adopt it&#8217;s MVC implementation when it was released?  I considered it but the issue simply came down to my biased view of the design differences.  In fact, I was motivated to release MVCnPHP because of a project I recently inherited that uses the Zend MVC implementation.  The biggest difference between the ZF MVC implementation and MVCnPHP is MVCnPHP is meant to allow you to isolate views and commands into their own files and simply drop them into a directory then having your controller immediately aware of them.  I admit this quality of MVCnPHP isn&#8217;t unique in the world of MVC implementations but this whole experience motivated me to really start working on polishing the code and documenting how to use it.  Today I&#8217;m happy to announce my first release of those efforts.
<p>
So to cut the fluff, here&#8217;s a few things to get you started on MVCnPHP:
<ol>
<li>I know learning a new MVC implementation may appear time so to help you evaluate it you can see it in action with <a href="http://mvcnphp-demo.apteno.net/">this sample application</a> that not only excersizes most the features of MVCnPHP, it gives you quick access to the code behind the scenes.</li>
<li>After that why not <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPInstallation">download MVCnPHP</a>.  We have versions that support PHP 5.2.x and well as a release that support PHP 5.3 namespaces.</li>
<li>Once installed all you need to do use read the <a href="http://www.apteno.net/AptitudeCMS/trac/wiki/MVCnPHPGuide">MVCnPHP User Guide</a>. The guide is still a work in progress but it does cover most of what you need to get started.</li>
</ol>
<p>
I can barely contain my personal excitement for getting this out. MVCnPHP represents a library that brings the benefits of a model-view-controller implementation in a package that is small, yet packed full of features with no limits for being extended. I hope you all agree.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/03/MVCnPHP-Announcement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Pragmatic Side of Twitter</title>
		<link>http://www.tonybibbs.com/2009/02/The-Pragmatic-Side-of-Twitter/</link>
		<comments>http://www.tonybibbs.com/2009/02/The-Pragmatic-Side-of-Twitter/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 10:33:19 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/02/The-Pragmatic-Side-of-Twitter/</guid>
		<description><![CDATA[It never fails.  Once in a while (today being one of them) I get questions from friends about Twitter an why they should use it.  I use to point them to <a href="http://www.tonybibbs.com/article.php/TwitterAttempt">one of my blog posts on the subject</a>.  That might be enough to get people to sign up but many still don't get it.  Truth be told, Twitter is ironically hard to describe in just 140 characters so maybe instead of trying to focus so much on the social aspects of the site I should simply give clear examples of good things that have happened since I joined Twitter.<p>Most recently a reciprocal follower <a href="http://twitter.com/sweatje">@sweatje</a> posted this: "Have some part time telecomuting PHP/Data Modeling work for a client I am unable to take on. Message me if you are interested."  A few weeks later I was tabbed to take on this part time work for the client he mentioned.  Now over a month into it I can add that not only is the opportunity fun, but the client is great to work with.</p><p>A customer of mine informed me her husband was laid off from Principal Financial Group (http://www.principal.com).  I suggested that he join Twitter as I knew there were a few local recruiters on the site.  Just over a month ago I learned that that same person got a job through <a href="http://twitter.com/sfedd">@sfedd's</a> company via an introduction I made to them both on Twitter.</p><p><a href="http://twitter.com/calevans">@CalEvans</a> announced he was leaving <a href="http://www.zend.com">Zend</a> as the Editor of <a href="http://devzone.zend.com">DevZone</a> and community evangelist.  Over a series of months I was offered the job to replace him.  It didn't pan out but without Twitter the opportunity would have never found me, a software guy tucked away in Urbandale, Iowa.  In a bit of a twist, <a href="http://www.tonybibbs.com/article.php/Big-Career-Decision">I blogged about the events</a> then posted it to Twitter and eventually this all made it's way to <a href="http://twitter.com/eliw">@EliW</a> who is now working hard at that post for Zend.</p><p>I love my family and my job.  However they are competing influences.  I've met great people like <a href="http://twitter.com/markwarnke">@markwarnke</a> who emphasis the need for balance (I haven't taken his ONO thing hook-line-and-sinker but the guy is a must-follow) and not too long ago my wife, <a href="http://twitter.com/kbibbs">@kbibbs</a>, joined Twitter along with my dad, <a href="http://twitter.com/mdbibbs">@mdbibbs</a> and his love interest <a href="http://twitter.com/teresabrent">@TeresaBrent</a>.  For me that means I get regular updates on my kids, what my wife is doing, how my retired father is enjoying himself and what he and @TeresaBrent are up to.  I get all that as it happens...not by waiting to make long overdue phone calls to my dad or getting middle of the day phone calls from my wife.</p><p>Now toss in the typical uses of Twitter, meeting new people, sharing thoughts with people with like interests, answering questions from people in need and then you really begin to see the power of it as a medium.  I'd love to hear how others have used Twitter to make a difference in their own lives and the lives of others.</p>]]></description>
			<content:encoded><![CDATA[<p>It never fails.  Once in a while (today being one of them) I get questions from friends about Twitter an why they should use it.  I use to point them to <a href="http://www.tonybibbs.com/article.php/TwitterAttempt">one of my blog posts on the subject</a>.  That might be enough to get people to sign up but many still don&#8217;t get it.  Truth be told, Twitter is ironically hard to describe in just 140 characters so maybe instead of trying to focus so much on the social aspects of the site I should simply give clear examples of good things that have happened since I joined Twitter.
<p>
Most recently a reciprocal follower <a href="http://twitter.com/sweatje">@sweatje</a> posted this: &#8220;Have some part time telecomuting PHP/Data Modeling work for a client I am unable to take on. Message me if you are interested.&#8221;  A few weeks later I was tabbed to take on this part time work for the client he mentioned.  Now over a month into it I can add that not only is the opportunity fun, but the client is great to work with.
</p>
<p>
A customer of mine informed me her husband was laid off from Principal Financial Group (<a href="http://www.principal.com" rel="nofollow">http://www.principal.com</a>).  I suggested that he join Twitter as I knew there were a few local recruiters on the site.  Just over a month ago I learned that that same person got a job through <a href="http://twitter.com/sfedd">@sfedd&#8217;s</a> company via an introduction I made to them both on Twitter.
</p>
<p>
<a href="http://twitter.com/calevans">@CalEvans</a> announced he was leaving <a href="http://www.zend.com">Zend</a> as the Editor of <a href="http://devzone.zend.com">DevZone</a> and community evangelist.  Over a series of months I was offered the job to replace him.  It didn&#8217;t pan out but without Twitter the opportunity would have never found me, a software guy tucked away in Urbandale, Iowa.  In a bit of a twist, <a href="http://www.tonybibbs.com/article.php/Big-Career-Decision">I blogged about the events</a> then posted it to Twitter and eventually this all made it&#8217;s way to <a href="http://twitter.com/eliw">@EliW</a> who is now working hard at that post for Zend.
</p>
<p>
I love my family and my job.  However they are competing influences.  I&#8217;ve met great people like <a href="http://twitter.com/markwarnke">@markwarnke</a> who emphasis the need for balance (I haven&#8217;t taken his ONO thing hook-line-and-sinker but the guy is a must-follow) and not too long ago my wife, <a href="http://twitter.com/kbibbs">@kbibbs</a>, joined Twitter along with my dad, <a href="http://twitter.com/mdbibbs">@mdbibbs</a> and his love interest <a href="http://twitter.com/teresabrent">@TeresaBrent</a>.  For me that means I get regular updates on my kids, what my wife is doing, how my retired father is enjoying himself and what he and @TeresaBrent are up to.  I get all that as it happens&#8230;not by waiting to make long overdue phone calls to my dad or getting middle of the day phone calls from my wife.
</p>
<p>
Now toss in the typical uses of Twitter, meeting new people, sharing thoughts with people with like interests, answering questions from people in need and then you really begin to see the power of it as a medium.  I&#8217;d love to hear how others have used Twitter to make a difference in their own lives and the lives of others.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/02/The-Pragmatic-Side-of-Twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.2, Mac OS X Leopard and Oracle</title>
		<link>http://www.tonybibbs.com/2009/01/php-oracle-leopard/</link>
		<comments>http://www.tonybibbs.com/2009/01/php-oracle-leopard/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 10:30:58 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tonybibbs.com/2009/01/php-oracle-leopard/</guid>
		<description><![CDATA[I wanted to give a heads-up to all the PHP, Mac and Oracle fans that I just had <a href="http://www.oracle.com/technology/pub/articles/bibbs-php-leopard.html">an article published on the Oracle Technology Network (OTN)</a>.  It's been in the works for months but has only just recently been published.  I have to give Christopher Jones a lot of credit for being patient wtih me.  The end result was an article that was fairly easy to write but was a bit of a pain. What you see in the final version is how to setup PHP, Apache and the Oracle Instant Client on a Macbook running Leopard.  The most unfortunate part of all this is I was unable to get all the moving parts working on stock version of Apache.  Instead I had to roll with a version of Apache I compiled from source.  For those of you interested in using Oracle the article walks you through the installation process pretty well.  It should also be noted I did confirm the same instructions worked flawlessly using the last PHP 5.3 alpha release.   To the skilled people in the PHP Community, if someone does figure out how to get this working with the stock version of Apache I would love to hear how you did it because that'd be ideal for most of us Mac users.  Comments aren't possible on the OTN version so feel free to add comments here.]]></description>
			<content:encoded><![CDATA[<p>I wanted to give a heads-up to all the PHP, Mac and Oracle fans that I just had <a href="http://www.oracle.com/technology/pub/articles/bibbs-php-leopard.html">an article published on the Oracle Technology Network (OTN)</a>.  It&#8217;s been in the works for months but has only just recently been published.  I have to give Christopher Jones a lot of credit for being patient wtih me.  The end result was an article that was fairly easy to write but was a bit of a pain. What you see in the final version is how to setup PHP, Apache and the Oracle Instant Client on a Macbook running Leopard.  The most unfortunate part of all this is I was unable to get all the moving parts working on stock version of Apache.  Instead I had to roll with a version of Apache I compiled from source.  For those of you interested in using Oracle the article walks you through the installation process pretty well.  It should also be noted I did confirm the same instructions worked flawlessly using the last PHP 5.3 alpha release.   To the skilled people in the PHP Community, if someone does figure out how to get this working with the stock version of Apache I would love to hear how you did it because that&#8217;d be ideal for most of us Mac users.  Comments aren&#8217;t possible on the OTN version so feel free to add comments here.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tonybibbs.com/2009/01/php-oracle-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
