<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Ink Plant Blog</title>
	<atom:link href="http://www.inkplant.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.inkplant.com/blog</link>
	<description>Diary of a Small Business</description>
	<pubDate>Sat, 24 Apr 2010 17:21:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Custom Logging in PHP</title>
		<link>http://www.inkplant.com/blog/2010/04/24/custom-logging-in-php/</link>
		<comments>http://www.inkplant.com/blog/2010/04/24/custom-logging-in-php/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 17:21:07 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[custom logs]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=62</guid>
		<description><![CDATA[I've been writing more and more cron jobs lately and, although most of the time they run smoothly, there are moments where everything seems to break at once.  It can be tough tracking down these problems since you're not seeing any output while they're running.  So, I've started logging all sorts of information. [...]]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2010/04/24/custom-logging-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom Sorting MySQL Data</title>
		<link>http://www.inkplant.com/blog/2009/12/16/custom-sorting-mysql-data/</link>
		<comments>http://www.inkplant.com/blog/2009/12/16/custom-sorting-mysql-data/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 00:02:28 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

		<category><![CDATA[ORDER BY]]></category>

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

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

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=54</guid>
		<description><![CDATA[Sorting data in MySQL can be really easy if you're just trying to sort alphabetically or numerically.  All you have to do is slap in the ORDER BY clause and list out the columns in order of importance.  For example:
SELECT * FROM `animals` ORDER BY `color` DESC,`name`



name
animal_type
color



Clifford
Dog
light blue


Jingles
Cat
light blue


Lucy
Cat
light blue


Sebastian
Hamster
light blue


Cincy
Tiger
dark blue


Odysseus
Hamster
dark blue


Steve
Bear
dark [...]]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2009/12/16/custom-sorting-mysql-data/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Explode Each Character in a String to an Array</title>
		<link>http://www.inkplant.com/blog/2009/11/08/explode-each-character-in-a-string-to-an-array/</link>
		<comments>http://www.inkplant.com/blog/2009/11/08/explode-each-character-in-a-string-to-an-array/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 01:40:56 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=51</guid>
		<description><![CDATA[I added a couple new code snippets to the Code section today, including a function that act's like PHP's explode(), but separates every character instead of requiring a delimeter.  You can achieve the same thing using PHP's split() and RegEx, but this is simple and works...
PHP Explode Each Character Function
]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2009/11/08/explode-each-character-in-a-string-to-an-array/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Run a Shell Script as Superuser</title>
		<link>http://www.inkplant.com/blog/2009/10/04/how-to-run-a-shell-script-as-superuser/</link>
		<comments>http://www.inkplant.com/blog/2009/10/04/how-to-run-a-shell-script-as-superuser/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 23:53:43 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

		<category><![CDATA[shell script]]></category>

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

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=49</guid>
		<description><![CDATA[If you've ever tried to run a shell script as superuser in Linux by using the syntax sudo ./example-shell-script, you'll know that doesn't work.  Instead, this is how you need to do it:

Create your scriptvi example-shell-script
Change the permissionschmod 755 example-shell-script
Switch into superuser modesudo su -
Run the script./example-shell-script
Log out of superuser modeexit

]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2009/10/04/how-to-run-a-shell-script-as-superuser/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick Security Alert Regarding Bluefish Editor</title>
		<link>http://www.inkplant.com/blog/2009/07/12/quick-security-alert-regarding-bluefish-editor/</link>
		<comments>http://www.inkplant.com/blog/2009/07/12/quick-security-alert-regarding-bluefish-editor/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 23:17:44 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[.htaccess]]></category>

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

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

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

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=47</guid>
		<description><![CDATA[This will be a quick post because I've been slammed with work lately, but I just wanted to mention something alarming that I discovered the other day.  As I started using Bluefish Editor, I started noticing all sorts of extra files on my server with a ~ at the end of the filename (index.php~ [...]]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2009/07/12/quick-security-alert-regarding-bluefish-editor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is it just me or are bots getting smarter?</title>
		<link>http://www.inkplant.com/blog/2009/06/29/is-it-just-me-or-are-bots-getting-smarter/</link>
		<comments>http://www.inkplant.com/blog/2009/06/29/is-it-just-me-or-are-bots-getting-smarter/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 02:51:02 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=45</guid>
		<description><![CDATA[The great thing about the internet is that it allows people to disseminate massive amounts of information at amazingly cheap prices.  This is also one of the worst things about the internet...  Because it's so cheap to send out information, there are a lot of people out there spewing out pure garbage on a colossal [...]]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2009/06/29/is-it-just-me-or-are-bots-getting-smarter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What text editor is best for coding?</title>
		<link>http://www.inkplant.com/blog/2009/06/25/what-text-editor-is-best-for-coding/</link>
		<comments>http://www.inkplant.com/blog/2009/06/25/what-text-editor-is-best-for-coding/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 00:24:56 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

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

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

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

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

		<category><![CDATA[Notepad++]]></category>

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

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

		<category><![CDATA[text editor]]></category>

		<category><![CDATA[VI Editor]]></category>

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=39</guid>
		<description><![CDATA[This is a question that I haven't thought much about in the last ten years or so.  I picked up a copy of Homesite back when it was still published by Allaire and never looked back.  I upgraded versions a couple times out of necessity as I moved to new computers, but never really checked [...]]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2009/06/25/what-text-editor-is-best-for-coding/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Best Running Log Launched</title>
		<link>http://www.inkplant.com/blog/2009/05/03/best-running-log-launched/</link>
		<comments>http://www.inkplant.com/blog/2009/05/03/best-running-log-launched/#comments</comments>
		<pubDate>Mon, 04 May 2009 02:57:05 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

		<category><![CDATA[running log]]></category>

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

		<category><![CDATA[site launch]]></category>

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=35</guid>
		<description><![CDATA[Yikes!  Another long drought between blog posts up here.  But, again, I have a good excuse... I've been hard at work cleaning up ancient (circa 2003) code, doing a little re-design, and adding some new features to my online running log.  In addition to all that, I moved it over to a [...]]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2009/05/03/best-running-log-launched/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Choosing the Right Web Host</title>
		<link>http://www.inkplant.com/blog/2009/03/22/choosing-the-right-web-host/</link>
		<comments>http://www.inkplant.com/blog/2009/03/22/choosing-the-right-web-host/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 23:11:46 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[1&amp;1]]></category>

		<category><![CDATA[cloud hosting]]></category>

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

		<category><![CDATA[managed server]]></category>

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

		<category><![CDATA[shared hosting]]></category>

		<category><![CDATA[virtual server]]></category>

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

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

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=32</guid>
		<description><![CDATA[I've admittedly been bad about posting up here lately.  But, I have a pretty good excuse -- I've been super-duper busy lately.  A big part of that was the fact that I moved all my sites to a new host not just once, but twice, in the last couple months.  To hopefully [...]]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2009/03/22/choosing-the-right-web-host/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Filing a DBA in New York City</title>
		<link>http://www.inkplant.com/blog/2008/12/22/filing-a-dba-in-new-york-city/</link>
		<comments>http://www.inkplant.com/blog/2008/12/22/filing-a-dba-in-new-york-city/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 00:37:04 +0000</pubDate>
		<dc:creator>Robert James Reese</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[business registration]]></category>

		<category><![CDATA[County Clerk]]></category>

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

		<category><![CDATA[Doing Business As]]></category>

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

		<category><![CDATA[New York County]]></category>

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

		<guid isPermaLink="false">http://www.inkplant.com/blog/?p=29</guid>
		<description><![CDATA[The name change is now on the books -- What was Lantenengo Industries is now officially Ink Plant.  The process of filing a DBA was actually relatively simple after I figured out what had to be done.  To spare you the same difficulty I had in tracking all that info down, I'll list [...]]]></description>
		<wfw:commentRss>http://www.inkplant.com/blog/2008/12/22/filing-a-dba-in-new-york-city/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
