<?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>php programming</title>
	<atom:link href="http://phpfunk.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://phpfunk.com</link>
	<description>php web development</description>
	<lastBuildDate>Mon, 12 Dec 2011 19:51:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>bash one liners</title>
		<link>http://phpfunk.com/bash-shell-scripting/bash-one-liners/</link>
		<comments>http://phpfunk.com/bash-shell-scripting/bash-one-liners/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 19:51:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[bash shell scripting]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=400</guid>
		<description><![CDATA[Get a list of URLs for a website using wget: wget -r -nv -nd &#8211;delete-after &#8220;your-url-goes-here&#8221; 2>&#038;1 &#124; sed -n &#8216;/->/{/URL:/s/.*URL:\([^ ]*\).*/\1/;/^[ ]*$/d;p}&#8217;]]></description>
		<wfw:commentRss>http://phpfunk.com/bash-shell-scripting/bash-one-liners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>capture fatal php errors for logging</title>
		<link>http://phpfunk.com/object-oriented-programming-php/capture-fatal-php-errors-for-logging/</link>
		<comments>http://phpfunk.com/object-oriented-programming-php/capture-fatal-php-errors-for-logging/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 05:13:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[object oriented php]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=389</guid>
		<description><![CDATA[When code runs without a user interface, for example a script invoked by cron, there often is not an easy way to see what errors are occuring. Another example would be php invoking another php script using exec(), for example. Here are some common fatal errors: unknown class referenced, unknown method called and parse error. [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/object-oriented-programming-php/capture-fatal-php-errors-for-logging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>download selenium 1.4.0 for firefox 8.0</title>
		<link>http://phpfunk.com/javascript-programming/download-selenium-1-4-0-for-firefox-8-0/</link>
		<comments>http://phpfunk.com/javascript-programming/download-selenium-1-4-0-for-firefox-8-0/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 05:08:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=387</guid>
		<description><![CDATA[Firefox just updated itself and in the process made Selenium IDE plugin unusable. Apparently the Selenium IDE 1.3 plugin is not compatible with the latest version of Firefox, which I only upgraded to as it was described as a &#8220;security update&#8221;. Have no fear, there is a new release of Selenium IDE out that is [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/javascript-programming/download-selenium-1-4-0-for-firefox-8-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>captcha is a catch 22</title>
		<link>http://phpfunk.com/uncategorized/captcha-is-a-catch-22/</link>
		<comments>http://phpfunk.com/uncategorized/captcha-is-a-catch-22/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 21:38:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=382</guid>
		<description><![CDATA[I saw this as a captcha question on a website today: &#8220;Number of arms you have + the highest prime below 10&#8243;. The user is supposed to answer the question in order to submit the form. My point is this is too difficult. Unless everyone that will visit your site knows the definition of a [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/uncategorized/captcha-is-a-catch-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>burn cd images from the command line</title>
		<link>http://phpfunk.com/uncategorized/burn-cd-images-from-the-command-line/</link>
		<comments>http://phpfunk.com/uncategorized/burn-cd-images-from-the-command-line/#comments</comments>
		<pubDate>Fri, 27 May 2011 20:47:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=376</guid>
		<description><![CDATA[To burn cd images from the command line in Debian squeeze you need two packages: (1) genisoimage (2) wodim To make an ISO image of a directory simply type: genisoimage -o outfile_name some_directory To burn the image use wodim. First figure out which optical drive to use by asking wodim for a list: tom@osmium:~$ wodim [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/uncategorized/burn-cd-images-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make selenium ide pause</title>
		<link>http://phpfunk.com/javascript-programming/make-selenium-ide-pause/</link>
		<comments>http://phpfunk.com/javascript-programming/make-selenium-ide-pause/#comments</comments>
		<pubDate>Mon, 16 May 2011 20:06:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=363</guid>
		<description><![CDATA[Selenium IDE is a great integration testing tool. It has a built in function pause(msec) where msec is the number of milliseconds you want Selenium to pause for. In my situation Selenium does not pause (IceWeasel version 3.5.16, Selenium IDE 1.0.10). I tried pause(3000) and it did not seem to work. I tried pause(30000) and [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/javascript-programming/make-selenium-ide-pause/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>log4php example</title>
		<link>http://phpfunk.com/object-oriented-programming-php/log4php-example/</link>
		<comments>http://phpfunk.com/object-oriented-programming-php/log4php-example/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 20:50:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[object oriented php]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=340</guid>
		<description><![CDATA[This log4php example demonstrates how to the log4php library in a non-trivial way. log4php is a version of the Apache log4J package ported to PHP5. Please refer to the apache project for complete details. log4php is a powerful logging mechanism that allows you to use a configuration file to specify what types of messages you [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/object-oriented-programming-php/log4php-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>left join sql select with where clause or on conditional</title>
		<link>http://phpfunk.com/databases/left-join-sql-select-with-where-clause-or-on-conditional/</link>
		<comments>http://phpfunk.com/databases/left-join-sql-select-with-where-clause-or-on-conditional/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 22:05:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[databases]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=335</guid>
		<description><![CDATA[Given a database schema containing the following tables: CREATE TABLE `categories` ( `id` int(10) unsigned NOT NULL auto_increment, `category` varchar(31) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=InnoDB; CREATE TABLE `account_categories` ( `acct_id` int(10) unsigned NOT NULL, `cat_id` int(10) unsigned NOT NULL, `markup` decimal(3,2) NOT NULL default '0.00', PRIMARY KEY (`acct_id`,`cat_id`), KEY `cat_id` (`cat_id`), [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/databases/left-join-sql-select-with-where-clause-or-on-conditional/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>networked HP all-in-one printer on Debian</title>
		<link>http://phpfunk.com/uncategorized/networked-hp-all-in-one-printer-on-debian/</link>
		<comments>http://phpfunk.com/uncategorized/networked-hp-all-in-one-printer-on-debian/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 20:28:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=331</guid>
		<description><![CDATA[These are my notes for using an HP C7280 All-In-One printer as a network printer for use with Debian squeeze. Install the package hpli-gui for a fancy UI front-end. We need to execute /usr/bin/hp-toolbox to set up the printer. First however you need to add your user to lpadmin, otherwise you will not be able [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/uncategorized/networked-hp-all-in-one-printer-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>essential perl</title>
		<link>http://phpfunk.com/uncategorized/essential-perl/</link>
		<comments>http://phpfunk.com/uncategorized/essential-perl/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 03:36:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phpfunk.com/?p=312</guid>
		<description><![CDATA[This post summarizes fundamentals of the perl programming language such as using arrays and hashes. In perl an array is often called a list. Hashes are associative arrays. If you want to see much more detailed information checkout perldoc.perl.org. self defense Always use strict and use warnings either declared in the she-bang or later in [...]]]></description>
		<wfw:commentRss>http://phpfunk.com/uncategorized/essential-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

