<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Sat, 25 May 2013 00:39:46 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Marco Tabini: Duck blinds]]></title>
      <guid>http://www.phpdeveloper.org/news/18253</guid>
      <link>http://www.phpdeveloper.org/news/18253</link>
      <description><![CDATA[<p>
In <a href="http://vore.cc/post/27622728732/duck-blinds">this new post</a> <i>Marco Tabini</i> gives his take on "language haters" and how it's less about the language and more about what you do with it.
</p>
<blockquote>
The reason why I'm here is that, on occasion, a person decides that it's time write Yet Another PHP Bashing Post. Typically, this is followed by a bunch of Posts Defending PHP. [...] Saying that PHP is horrible or great is no more useful than saying that a hammer is horrible or great (regardless of the number of claws it comes with). [...] The real question is whether PHP - or any other technology - is good for you.
</blockquote>
<p>
He goes on to mention current successful projects that use PHP, but focuses on the people and the ideas that made them happen, not the language "behind the scenes". He also comments on what he thinks makes a good programmer (and one that has matured past the "X language is the best!" stance):
</p>
<blockquote>
And this brings me to the crux of the matter: The trick to being a great programmer is to learn as much as you can about as many programming languages and techniques as you can. Eventually, you'll learn that any language is excellent at some things, good at others, and a poor choice for many others. It's all about the context, and finding the right tool for the job.
</blockquote>]]></description>
      <pubDate>Fri, 20 Jul 2012 09:03:14 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Tony Lukasavage's Blog: PHP Debugging on IntelliJ IDEA 10 with Xdebug]]></title>
      <guid>http://www.phpdeveloper.org/news/15696</guid>
      <link>http://www.phpdeveloper.org/news/15696</link>
      <description><![CDATA[<p>
<i>Tony Lukasavage</i> has a new post to his blog about <a href="http://savagelook.com/blog/portfolio/php-debugging-on-intellij-idea-10-with-xdebug">debugging your PHP applications with IntelliJ and XDebug</a> on a WAMP install.
</p>
<blockquote>
If you are a serious PHP developer and have not given debugging a fair chance, or a chance at all, you are killing yourself. So let's do this thing from the ground up. WAMP, XDebug, IntelliJ, and magic. Follow these steps (for Windows) to reach my recent state of elightenment and PHP debugging bliss.
</blockquote>
<p>
It's a sixteen step process, but don't let that scare you off - it's made up of lots of little steps like "make a phpinfo() page" and "download IntelliJ IDEA". The rest is actually setting up a new PHP project, dropping in a breakpoint and mapping the scripts to run on your local machine's WAMP install.
</p>]]></description>
      <pubDate>Thu, 06 Jan 2011 14:24:30 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Simas Toleikis's Blog: Idea for a PHP Validator]]></title>
      <guid>http://www.phpdeveloper.org/news/15254</guid>
      <link>http://www.phpdeveloper.org/news/15254</link>
      <description><![CDATA[<p>
<i>Simas Toleikis</i> has posted <a href="http://simas.posterous.com/idea-for-a-php-validator">an interesting idea for a validator</a> that would look at the incoming source of an application/script and determine what the requirements for it might be.
</p>
<blockquote>
How about creating a PHP code validator? Got this idea by looking at <a href="http://php.net/tokenizer">tokenizer</a> and <a href="http://php.net/reflection">reflection</a> extensions. I doubt I will find the time to work on this myself but then someone else might be interested to pick it up. From user's point of view there will be a form made of a large textarea box and a single file upload input. One could paste code snippet on that textarea or upload a ZIP'ed source code archive (or a single .php file) for validation.
</blockquote>
<p>
His proposed result would show a list of "Required Extensions", PHP versions, E_STRICT compatibility and possibly total lines of code in the project. He points out a few issues that might pop up in writing such a tool such as the requirement for it to be able to use the tokenizer extension itself (a sort of catch-22 since it's not always installed).
</p>]]></description>
      <pubDate>Fri, 08 Oct 2010 13:48:26 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Michael Kimsal's Blog: Ecommerce system ideas]]></title>
      <guid>http://www.phpdeveloper.org/news/9355</guid>
      <link>http://www.phpdeveloper.org/news/9355</link>
      <description><![CDATA[<p>
<i>Michael Kimsal</i> (and his bother <i>Mark</i>) were <a href="http://fosterburgess.com/kimsal/?p=398">talking about</a> the state of ecommerce applications, specifically about the latest "hot topic" software - <a href="http://www.magentocommerce.com/">Magento</a>.
</p>
<blockquote>
My brother Mark has been doing a long term project based on Magento doing a lot of custom work on top of it, and has told me many points, both good and bad, about it. 
</blockquote>
<p>
According to <i>Michael</i> and <i>Mark</i>, speed of the application is a big hindrance. They also mention two points that could help make an ecommerce system so much easier to integrate into the "blogosphere" - publishing a blog feed of some of the user feedback about orders/products/etc and accept trackbacks from an external blog post reviewing the products.
</p>]]></description>
      <pubDate>Fri, 04 Jan 2008 09:32:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[The Bakery: Some ideas to organize your CSS files and autoload them in CakePHP]]></title>
      <guid>http://www.phpdeveloper.org/news/7099</guid>
      <link>http://www.phpdeveloper.org/news/7099</link>
      <description><![CDATA[<p>
On The Bakery (Everything CakePHP) blog today <i>Tulio Faria</i> shares <a href="http://bakery.cakephp.org/articles/view/215">some ways</a> to organize your CSS files to where they can be autoloaded through your CakePHP application.
</p>
<p>
There's five different ideas that he presents:
<ul>
<li>CSS files named without any link with controller names
<li>CSS with the same controller name
<li>CSS file with the same name of controller, but only if CSS file exists
<li>one CSS file for each method of controller
<li>a CSS file for each method of controller, a little bit more organized
</ul>
each with their own code and explanation. <i>Tulio</i> also <a href="http://bakery.cakephp.org/articles/view/215">notes quickly</a> that he prefers the last one, keeping things a bit cleaner and more organized.
</p>]]></description>
      <pubDate>Tue, 16 Jan 2007 09:14:00 -0600</pubDate>
    </item>
  </channel>
</rss>
