<?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>Guyub - Konsultan F/OSS &#187; php</title>
	<atom:link href="http://guyub.co.id/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://guyub.co.id</link>
	<description>GNU/Linux - Java, PHP, Ruby - MySQL, PostgreSQL</description>
	<lastBuildDate>Thu, 29 Jul 2010 10:11:46 +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>PHP for Android, PHP 6 canceled, APC in PHP 5.4</title>
		<link>http://guyub.co.id/php-for-android-php-6-canceled-apc-in-php-5-4-lately-in-php-podcast-episode-3-php-classes/</link>
		<comments>http://guyub.co.id/php-for-android-php-6-canceled-apc-in-php-5-4-lately-in-php-podcast-episode-3-php-classes/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 18:39:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://guyub.co.id/php-for-android-php-6-canceled-apc-in-php-5-4-lately-in-php-podcast-episode-3-php-classes/</guid>
		<description><![CDATA[

PHP for Android, PHP 6 canceled, APC in PHP 5.4 &#8211; Lately in PHP podcast episode 3
By Manuel Lemos
On this episode of the Lately in PHP podcast, Manuel Lemos and Ernani Joppert comment on the launch of the PHP for Android project and the consequences for the PHP market.
They also talk about the cancellation of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.phpclasses.org/blog/post/126-PHP-for-Android-PHP-6-canceled-APC-in-PHP-54--Lately-in-PHP-podcast-episode-3.html">
<div style="clear: both">
<div style="margin-top: 1ex"><a href="http://www.phpclasses.org/blog/post/126-PHP-for-Android-PHP-6-canceled-APC-in-PHP-54--Lately-in-PHP-podcast-episode-3.html">PHP for Android, PHP 6 canceled, APC in PHP 5.4 &#8211; Lately in PHP podcast episode 3</a></div>
<div style="margin-top: 1ex">By Manuel Lemos</a></div>
<div style="margin-top: 1ex">On this episode of the Lately in PHP podcast, Manuel Lemos and Ernani Joppert comment on the launch of the PHP for Android project and the consequences for the PHP market.</p>
<p>They also talk about the cancellation of PHP 6 and the inclusion of features planned for PHP 6 in PHP 5.4, like the integration of the APC cache extension in the main PHP distribution bundle.</p>
<p>Some of the most interesting classes nominated for the May edition of the PHP Programming Innovation Award are commented, like the PDF text extract, PHP duplicate files finder, Fast Fourier Transform and splx_graph.</a></div>
</div>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/php-for-android-php-6-canceled-apc-in-php-5-4-lately-in-php-podcast-episode-3-php-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CORE GRASP &#8211; PHP Tainted Mode</title>
		<link>http://guyub.co.id/core-grasp-php-tainted-mode/</link>
		<comments>http://guyub.co.id/core-grasp-php-tainted-mode/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 20:11:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[core grasp]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://guyub.co.id/core-grasp-php-tainted-mode/</guid>
		<description><![CDATA[
        
Core Security Technologies today announced the release of CORE GRASP, which is a patch against the PHP 5.2.3 code tree that adds a tainted mode to PHP to protect the mysql_query() function. Their implementation adds a tainted or not flag for every byte so that it is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.php-security.org/archives/92-CORE-GRASP-PHP-Tainted-Mode.html"><br />
        <br />
<a href="http://www.coresecurity.com">Core Security Technologies</a> today announced the release of <a href="http://grasp.coresecurity.com/index.php?m=dld">CORE GRASP</a>, which is a patch against the PHP 5.2.3 code tree that adds a tainted mode to PHP to protect the <a href="http://www.php.net/mysql_query">mysql_query()</a> function. Their implementation adds a tainted or not flag for every byte so that it is possible on invocation of mysql_query() to determine any kind of injection.
<p>To add such a tainted mode to PHP has been discussed several times in the past. It was rejected for several reasons like the obvious huge speed impact and the danger of false positives and a false sense of security. And indeed the way CORE GRASP is implemented it looks like a huge memory and speed overhead that should be tested. In addition to that their query parser will for example wrongly detect quotes escaped by doubling as injection attack.</p>
<p>Aside from this there are several other possible problems in the code like a remote one byte stack overflow (that seems harmless due to memory alignment), wrong handling of the _SERVER superglobal in case of JIT and it also seems that control characters like linebreaks can be injected into the logfiles. Further analysis and a deeper look into the code is needed.</p>
<p>However it has to be taken into account that this is the very first public version of CORE GRASP, so maybe all these problems are gone soon and support for further database engines is added. </p>
<p>    </a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/core-grasp-php-tainted-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About the CSRF Redirector</title>
		<link>http://guyub.co.id/about-the-csrf-redirector/</link>
		<comments>http://guyub.co.id/about-the-csrf-redirector/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 20:11:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[csrf]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[redirector]]></category>

		<guid isPermaLink="false">http://guyub.co.id/about-the-csrf-redirector/</guid>
		<description><![CDATA[
        
You might have seen this post in Chris blog about a CSRF redirector he did. This is basically nothing more than a little script that turns a GET request into a hidden formular that is then posted via JavaScript. There have always been security issues with redirector [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.php-security.org/archives/89-About-the-CSRF-Redirector.html"><br />
        <br />
You might have seen <a href="http://shiflett.org/blog/2007/jul/csrf-redirector">this post</a> in Chris blog about a CSRF redirector he did. This is basically nothing more than a little script that turns a GET request into a hidden formular that is then posted via JavaScript. There have always been security issues with redirector scripts, and if you provide one open to anyone, you should care about what kind of redirects you actually allow.</p>
<p>Two major risks happen to exists with chris example:
</p>
<ol>
<li>Malicious people could misuse them as bouncers to attack other sites
</li>
<li>Not every URL is a web page. Some can load plugins, display information and<br />
some can execute JavaScript.</p>
</li>
</ol>
<p>Here is an example URL:
</p>
<p><a href="http://shiflett.org/csrf.php?csrf=+++%6aavascript:alert(/I_AM_A_SECURITY_EXPERT/)">http://shiflett.org/csrf.php?csrf=javascript:alert(/I_AM_A_SECURITY_EXPERT/)</a>
</p>
<p>In Internet Explorer (and Safari) this will give you access to the domain (cookies, etc&#8230;). In Firefox you can still do other funny things.</p>
<p>So if you implement (javascript) redirector scripts, make sure you do a proper<br />
whitelisting of the user delivered urls.</p>
<p><b>UPDATE:</b> The above example for a simple XSS does no longer work. However there are still other XSS vulnerabilities like variable-width problems in the CSRF redirector and it is still an open bouncer for malicious persons.</p>
<p>    </a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/about-the-csrf-redirector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter v1.7.2 Released</title>
		<link>http://guyub.co.id/codeigniter-v1-7-2-released-2/</link>
		<comments>http://guyub.co.id/codeigniter-v1-7-2-released-2/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 20:57:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[F/OSS]]></category>
		<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://guyub.co.id/codeigniter-v1-7-2-released-2/</guid>
		<description><![CDATA[
EllisLab is pleased to release CodeIgniter version 1.7.2 for ready download.&#160; What&#8217;s new?&#160; Among other changes:

Compatible with PHP 5.3.0
Added a new Cart Class.
Improvements to the Form helper
Added is_php() to Common functions to facilitate PHP version comparisons
Modified show_error() to allow sending of HTTP server response codes, and all internal uses now send proper status codes.
Numerous bug [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://codeigniter.com/news/codeigniter_v1.7.2_released/">
<p>EllisLab is pleased to release CodeIgniter version 1.7.2 for ready download.&nbsp; What&#8217;s new?&nbsp; Among other <a href="http://codeigniter.com/user_guide/changelog.html">changes</a>:</p>
<ul>
<li>Compatible with PHP 5.3.0</li>
<li>Added a new <a href="http://codeigniter.com/user_guide/libraries/cart.html">Cart Class</a>.</li>
<li>Improvements to the <a href="http://codeigniter.com/user_guide/helpers/form_helper.html">Form helper</a></li>
<li>Added is_php() to <a href="http://codeigniter.com/user_guide/general/common_functions.html">Common functions</a> to facilitate PHP version comparisons</li>
<li>Modified <a href="http://codeigniter.com/user_guide/general/errors.html">show_error()</a> to allow sending of HTTP server response codes, and all internal uses now send proper status codes.</li>
<li>Numerous bug fixes</li>
</ul>
<p>Version 1.7.2 has been baking in the subversion for quite some time, and has been compatible with PHP 5.3.0 since late July, but many users understandably haven&#8217;t been running from the in-development version.&nbsp; While I&#8217;d have liked to have had time to add a few more &#8220;big ticket&#8221; items to this release, making it 1.8, time is a cruel mistress.&nbsp; Many of our users develop on Macs, and OS X Snow Leopard ships with PHP 5.3.0, so we felt is was more important to push out this stable maintenance release instead of waiting for an even later date &#8211; it&#8217;s been almost seven months since a refresh, afterall.&nbsp; But there are still a few good surprises, and welcome changes.&nbsp; <a href="http://codeigniter.com/downloads/">Enjoy!</a>
</p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/codeigniter-v1-7-2-released-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3 on Snow Leopard &#8211; Sean Coates</title>
		<link>http://guyub.co.id/php-5-3-on-snow-leopard-sean-coates/</link>
		<comments>http://guyub.co.id/php-5-3-on-snow-leopard-sean-coates/#comments</comments>
		<pubDate>Mon, 24 May 2010 05:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://guyub.co.id/php-5-3-on-snow-leopard-sean-coates/</guid>
		<description><![CDATA[
My old post on
compiling PHP for Mac OS 10.5 (Leopard) continues to top my most-viewed page
statistics. Sadly, that article is old and doesn&#8217;t apply very well to Snow
Leopard (10.6).
I&#8217;ve been meaning to post instructions on how to compile PHP for Snow
Leopard since last summer when I picked up the DVD, but hadn&#8217;t found the
time or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://seancoates.com/php-53-on-snow-leopard">
<p>My <a href="http://seancoates.com/php-5-2-5-on-leopard">old post</a> on<br />
compiling PHP for Mac OS 10.5 (Leopard) continues to top my most-viewed page<br />
statistics. Sadly, that article is old and doesn&#8217;t apply very well to Snow<br />
Leopard (10.6).</p>
<p>I&#8217;ve been meaning to post instructions on how to compile PHP for Snow<br />
Leopard since last summer when I picked up the DVD, but hadn&#8217;t found the<br />
time or opportunity to build PHP from a completely fresh start, until a few<br />
weeks ago.</p>
<p>This time, I took notes on how to reliably compile PHP and Apache from<br />
scratch on this system.</p>
<ol>
<li>
<p>
   <strong>Download and install <a<br />
   href="http://developer.apple.com/technologies/xcode.html">Xcode</a>.</strong><br />
   You&#8217;re on your own for the details of this one, but frankly, if you can&#8217;t<br />
   figure it out, you&#8217;ll find the next steps too difficult. Think of it as<br />
   a prerequisite.
  </p>
</li>
<li>
<p><strong>Create a working directory.</strong> I use <code>~/src</code>,<br />
  but you can use whatever you like.</p>
<p>
<pre><code>
$ mkdir ~/src
$ cd ~/src
  </code></pre>
</p>
<li>
<p>
   <strong>Install <a<br />
   href="http://github.com/mxcl/homebrew">Homebrew</a>.</strong> Homebrew is<br />
   a truly great software packager for OS X. Think Macports, but not as ugly;<br />
   Fink, but not as broken (and not as binary). Designed for Mac. It&#8217;s Ruby,<br />
   but we don&#8217;t have to hold that against them. (-:
  </p>
<p><pre><code>
$ curl http://gist.github.com/raw/323731/572b315c4f7ee78244de70e7ad703c8ae324da7a/install_homebrew.rb > install_homebrew.rb
$ ruby install_homebrew.rb
   </code></pre>
</p>
</li>
<li>
<p><strong>Install your own iconv.</strong> I don&#8217;t know what Apple did to<br />
  theirs, but it&#8217;s a huge headache. You&#8217;re best installing your own, in my<br />
  experience.</p>
<p>
<pre><code>
$ curl http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz | tar -zx -
$ cd libiconv-1.13.1
$ ./configure --prefix=/opt &#038;&#038; make &#038;&#038; make install
$ cd ..
  </code></pre>
</p>
</li>
<li>
<p><strong>Install Apache-HTTPD</strong> from source. This isn&#8217;t<br />
  absolutely necessary, but Apple seems to have done some weird stuff with<br />
  their Apache, and in my experience, it&#8217;s best to build your own. If you<br />
  skip over this step, you&#8217;ll need to change the <code>apxs</code> in the<br />
  PHP <code>configure</code> command, below.</p>
<p>First, <a href="http://httpd.apache.org/download.cgi#apache22">find your<br />
  closest mirror.</a></p>
<p><pre><code>
$ curl http://apache.mirror.iweb.ca/httpd/httpd-2.2.15.tar.bz2 | tar -jxf -
$ cd httpd-2.2.15/
$ ./configure --enable-rewrite --enable-ssl &#038;&#038; make &#038;&#038; make install
$ cd ..
   </code></pre>
</p>
</li>
<li>
<p><strong>Install PHP dependencies</strong> using Homebrew. Easy, huh?</p>
<p>
<pre><code>
$ echo "gd jpeg libpng libxml2 libzzip mcrypt mysql" | xargs brew install
$ echo "libpng libxml2 readline" | xargs brew link
  </code></pre>
</p>
</li>
<li>
<p><strong>Install PHP from source</strong> by first selecting a <a<br />
  href="http://php.net/get/php-5.3.2.tar.bz2/from/a/mirror">mirror</a>.</p>
<p><em>Note: you will need to use a really nasty patch to get this to<br />
  build properly. See the note on iconv above. Even Apple&#8217;s own <a<br />
  href="http://opensource.apple.com/source/apache_mod_php/apache_mod_php-53/patches/iconv.patch">iconv patch for PHP</a><br />
  doesn&#8217;t work (at least not for me).</em></p>
<p>
<pre><code>
$ curl -L http://ca2.php.net/get/php-5.3.2.tar.bz2/from/this/mirror | tar -jxf -
$ cd php-5.3.2
$ curl http://www.php.net/~scoates/patches/php-5.3.1-Makefile.global-iconv.patch | patch -p0
$ ./configure --prefix=/usr/local --with-xsl --with-gd --with-zlib-dir \
  --enable-sockets --enable-exif --with-mcrypt --enable-soap \
  --enable-embedded-mysqli --with-mysql --with-pdo-mysql --with-curl \
  --with-libedit --with-apxs2=/usr/local/apache2/bin/apxs --enable-mbstring \
  --with-openssl --with-iconv=/opt &#038;&#038; make &#038;&#038; make install
$ cd ..
  </code></pre>
</p>
</li>
<li>
<p><strong>Configure Apache.</strong> If you&#8217;ve done this on other<br />
  platforms, this step should look familiar.
<ol>
<li>In <code>/usr/local/apache2/conf/httpd.conf</code>, in the<br />
    <code>&lt;IfModule mime_module></code> block, add the following:</p>
<pre><code>
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
    </code></pre>
</li>
<li>Optionally, add PHP to <code>DirectoryIndex</code> by changing
<pre><code>
DirectoryIndex index.html
    </code></pre>
<p>    to</p>
<pre><code>
DirectoryIndex index.php index.html
    </code></pre>
</li>
</ol>
<p>You can now test Apache + PHP by creating a <code>phpinfo()</code> page,<br />
  and restarting Apache:
<p>
<pre><code>
$ echo "&lt;?php phpinfo(); ?>" > /usr/local/apache/htdocs/info.php
$ ln -s /usr/local/apache2/bin/apachectl /usr/local/bin/apachectl
$ sudo /usr/local/bin/apachectl restart
  </code></pre>
</p>
<p>Now, visit <a href="http://localhost/info.php">localhost/info.php</a>,<br />
  and you <em>should</em> have an independent, custom-compiled Apache-PHP<br />
  stack.</p>
</li>
</ol>
<p>I hope this has been helpful. If I&#8217;ve given bad instructions, or if<br />
something doesn&#8217;t work for some reason, please let me know in the<br />
comments.</p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/php-5-3-on-snow-leopard-sean-coates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rilis Perdana Keuangan Guyub versi KG-20100512-1</title>
		<link>http://guyub.co.id/rilis-perdana-keuangan-guyub-versi-kg-20100512-1/</link>
		<comments>http://guyub.co.id/rilis-perdana-keuangan-guyub-versi-kg-20100512-1/#comments</comments>
		<pubDate>Tue, 11 May 2010 23:32:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Aplikasi]]></category>
		<category><![CDATA[F/OSS]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Guyub]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[keuangan guyub]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ukm jasa]]></category>

		<guid isPermaLink="false">http://guyub.co.id/rilis-perdana-keuangan-guyub-versi-kg-20100512-1/</guid>
		<description><![CDATA[Dengan mengucap Bismillahirrahmanirrahim
Hari ini 12 Mei 2010, kami merilis versi perdana dari Keuangan Guyub &#8211; Aplikasi Keuangan Open Source untuk UKM Jasa.
Bagi teman-teman yang tertarik mencoba bisa download langsung versi perdana di http://keuangan-guyub.googlecode.com/files/KG-20100512-1.zip.
Untuk cara instalasi oleh bisa dilihat di http://code.google.com/p/keuangan-guyub/wiki/PanduanSingkatInstalasi.
Petunjuk penggunaan bisa di download di http://keuangan-guyub.googlecode.com/files/DokumentasiPengguna-KG-20100512-1.pdf.
Dan kami juga sangat mengharapkan saran, masukan, kritikan dan kontribusi [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://keuangan.guyub.co.id/2010/rilis-perdanan-keuangan-guyub-versi-kg-20100512-1/">Dengan mengucap Bismillahirrahmanirrahim<br />
Hari ini 12 Mei 2010, kami merilis versi perdana dari Keuangan Guyub &#8211; Aplikasi Keuangan Open Source untuk UKM Jasa.<br />
Bagi teman-teman yang tertarik mencoba bisa download langsung versi perdana di http://keuangan-guyub.googlecode.com/files/KG-20100512-1.zip.<br />
Untuk cara instalasi oleh bisa dilihat di http://code.google.com/p/keuangan-guyub/wiki/PanduanSingkatInstalasi.<br />
Petunjuk penggunaan bisa di download di http://keuangan-guyub.googlecode.com/files/DokumentasiPengguna-KG-20100512-1.pdf.<br />
Dan kami juga sangat mengharapkan saran, masukan, kritikan dan kontribusi [...]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/rilis-perdana-keuangan-guyub-versi-kg-20100512-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qafoo &#8211; The PHP quality ninjas &#8211; Tobias Schlitt</title>
		<link>http://guyub.co.id/qafoo-the-php-quality-ninjas-tobias-schlitt/</link>
		<comments>http://guyub.co.id/qafoo-the-php-quality-ninjas-tobias-schlitt/#comments</comments>
		<pubDate>Wed, 05 May 2010 00:12:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[quality]]></category>

		<guid isPermaLink="false">http://guyub.co.id/qafoo-the-php-quality-ninjas-tobias-schlitt/</guid>
		<description><![CDATA[As announced earlier in this blog, Manuel, Kore and me are in the process of founding our own company. Now it&#8217;s time to present the name we have thought out for this operation. We are Qafoo - The PHP quality
ninjas. Isn&#8217;t that cool?   So, let me try to explain the origin of this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://schlitt.info/opensource/blog/0726_qafoo_the_php_quality_ninjas.html">As announced <a href="/opensource/blog/0725_goodbye_ez_systems_hello_world.html">earlier</a> in this blog, <a href="http://manuel-pichler.de/">Manuel</a>, <a href="http://kore-nordmann.de/">Kore</a> and me are in the process of founding our own company. Now it&#8217;s time to present the name we have thought out for this operation. We are <a href="http://qafoo.com">Qafoo</a> <strong>- The PHP quality<br />
ninjas</strong>. Isn&#8217;t that cool? <img src='http://guyub.co.id/site/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  So, let me try to explain the origin of this name here. Feel invited to comment on our idea and to give us some inspiration.<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/qafoo-the-php-quality-ninjas-tobias-schlitt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Developer Week Starts May 10, 2010 &#8211; Zend Developer Zone</title>
		<link>http://guyub.co.id/adobe-developer-week-starts-may-10-2010-zend-developer-zone/</link>
		<comments>http://guyub.co.id/adobe-developer-week-starts-may-10-2010-zend-developer-zone/#comments</comments>
		<pubDate>Tue, 04 May 2010 07:53:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://guyub.co.id/adobe-developer-week-starts-may-10-2010-zend-developer-zone/</guid>
		<description><![CDATA[
                 	 May 10 ? 14 2010. Free, online sessions for  PHP  developers interested in learning about the Adobe Flash Platform, including: What?s New in Flash Builder 4 for  PHP  Developers; Using Advanced Features with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://devzone.zend.com/article/12100-Adobe-Developer-Week-Starts-May-10-2010"><br />
                 	 May 10 ? 14 2010. Free, online sessions for  PHP  developers interested in learning about the Adobe Flash Platform, including: What?s New in Flash Builder 4 for  PHP  Developers; Using Advanced Features with Flex &#038;  PHP ; and A Basic  CRUD  Application with Zend_AMF and Flex 4<br />
            </a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/adobe-developer-week-starts-may-10-2010-zend-developer-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Month of PHP security &#8211; Gareth Heyes</title>
		<link>http://guyub.co.id/month-of-php-security-gareth-heyes/</link>
		<comments>http://guyub.co.id/month-of-php-security-gareth-heyes/#comments</comments>
		<pubDate>Tue, 04 May 2010 01:23:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Server, Jaringan & Keamanan]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://guyub.co.id/month-of-php-security-gareth-heyes/</guid>
		<description><![CDATA[
Stefan Esser has launched another Month of PHP security. It includes popular applications which use PHP as well as general bugs. He also includes a general PHP security article that you really should read to help secure your code. I?d also keep an eye out for the hardening of PHP configuration which will be released [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thespanner.co.uk/2010/05/04/month-of-php-security/">
<p>Stefan Esser has launched another <a href="http://php-security.org/">Month of PHP security</a>. It includes popular applications which use PHP as well as general bugs. He also includes a <a href="http://php-security.org/2010/05/01/article-php-web-security/index.html">general PHP security article</a> that you really should read to help secure your code. I?d also keep an eye out for the hardening of PHP configuration which will be released shortly.</p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/month-of-php-security-gareth-heyes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework 1.10.4 Released &#8211; Zend Developer Zone</title>
		<link>http://guyub.co.id/zend-framework-1-10-4-released-zend-developer-zone/</link>
		<comments>http://guyub.co.id/zend-framework-1-10-4-released-zend-developer-zone/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 09:42:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pemrograman]]></category>
		<category><![CDATA[Sindikasi]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://guyub.co.id/zend-framework-1-10-4-released-zend-developer-zone/</guid>
		<description><![CDATA[
    On behalf of the Zend Framework community, I&#8217;m pleased to announce
    the immediate availability of Zend Framework 1.10.4, our fourth maintenance
    release in the 1.10 series. You can download it from our downloads page:
http://framework.zend.com/download/latest
    This release includes approximately 50 bugfixes, the majority [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://devzone.zend.com/article/12078-Zend-Framework-1.10.4-Released"></p>
<p>    On behalf of the Zend Framework community, I&#8217;m pleased to announce<br />
    the immediate availability of Zend Framework 1.10.4, our fourth maintenance<br />
    release in the 1.10 series. You can download it from our downloads page:</p>
<p>http://framework.zend.com/download/latest</p>
<p>    This release includes approximately 50 bugfixes, the majority of which were<br />
    contributed during our  Bug<br />
        Hunt Days two weeks ago . The fixes contributed help stabilize<br />
    and improve the 1.10 series.</p>
<p>            </a></p>
]]></content:encoded>
			<wfw:commentRss>http://guyub.co.id/zend-framework-1-10-4-released-zend-developer-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
