<?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>LINUX ADMINISTRATION NOTES &#38; CODE SNIPPETS &#187; Perl</title>
	<atom:link href="http://linuxbloggers.org/category/programming/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxbloggers.org</link>
	<description>pTCsxunH</description>
	<lastBuildDate>Sun, 28 Feb 2010 18:43:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>invalid byte sequence for encoding &#8220;UTF8&#8243;: 0&#215;8b &#8211; storing binary data</title>
		<link>http://linuxbloggers.org/error-invalid-byte-sequence-encoding-utf8-0x8b-storing-binary-data/</link>
		<comments>http://linuxbloggers.org/error-invalid-byte-sequence-encoding-utf8-0x8b-storing-binary-data/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 03:51:22 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[binary data]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[retrieve]]></category>
		<category><![CDATA[storeage]]></category>
		<category><![CDATA[unicode]]></category>
		<category><![CDATA[utf8]]></category>

		<guid isPermaLink="false">http://blog.linuxconfig.org/?p=97</guid>
		<description><![CDATA[This error message took me lots of effort and time to solve it. The problem is that before storing binary data strings in the postgresql database the binary strings need to be escaped before storing them. There is on the google available subroutine for per which is doing this job. It is called escape_bytea. Anyway [...]]]></description>
		<wfw:commentRss>http://linuxbloggers.org/error-invalid-byte-sequence-encoding-utf8-0x8b-storing-binary-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create and install linux debian package for missing perl module with dh-make-perl</title>
		<link>http://linuxbloggers.org/create-install-linux-debian-package-missing-perl-module-dh-make-perl/</link>
		<comments>http://linuxbloggers.org/create-install-linux-debian-package-missing-perl-module-dh-make-perl/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 23:27:35 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.linuxconfig.org/?p=95</guid>
		<description><![CDATA[Sometimes you encounter situation when you need a perl module to support your program but perl module is not available from standard linux repositories. Installing perl module from source code is not always good idea so what would be the best is to create package for a particular module using dh-make-perl command. In my case [...]]]></description>
		<wfw:commentRss>http://linuxbloggers.org/create-install-linux-debian-package-missing-perl-module-dh-make-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl script code example to create temporary file-tempfile()</title>
		<link>http://linuxbloggers.org/perl-script-code-example-to-create-temporary-file-tempfile/</link>
		<comments>http://linuxbloggers.org/perl-script-code-example-to-create-temporary-file-tempfile/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 02:11:21 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.linuxconfig.org/?p=88</guid>
		<description><![CDATA[Here is a perl script example how to create temporary file on the file system:
TEMPLATE DIR AND SUFIX are option !

#!/usr/bin/perl
my $tempfile = new File::Temp ( TEMPLATE =&#62; 'tempfile_XXX', DIR =&#62; '/tmp/', SUFIX =&#62; '' );

this will create a temporary file in /tmp/ directory with name tempfile_XXX where X is random generated character.
]]></description>
		<wfw:commentRss>http://linuxbloggers.org/perl-script-code-example-to-create-temporary-file-tempfile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
