<?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>Infusion Technology Solutions Blog&#187; programming</title>
	<atom:link href="http://blog.infusiontechsolutions.com/tag/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.infusiontechsolutions.com</link>
	<description>Technology related solutions, tips, tricks, and other interesting topics</description>
	<lastBuildDate>Tue, 20 Apr 2010 15:07:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Free Computer Programming Training From Google Code University</title>
		<link>http://blog.infusiontechsolutions.com/free-computer-programming-training-from-google-code-university/</link>
		<comments>http://blog.infusiontechsolutions.com/free-computer-programming-training-from-google-code-university/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 13:16:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General IT Info]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[distributed systems]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google code university]]></category>
		<category><![CDATA[googlecodeuniversity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[university]]></category>
		<category><![CDATA[web security]]></category>

		<guid isPermaLink="false">http://blog.infusiontechsolutions.com/free-computer-programming-training-from-google-code-university/</guid>
		<description><![CDATA[Google Code University offers free training for computer programming. The training consists of a website which contains training materials such as slide shows, videos, and problem solving sets. Here is an excerpt from the Google training website which describes the training offered:

This website provides tutorials and sample course content so CS students and educators can [...]]]></description>
		<wfw:commentRss>http://blog.infusiontechsolutions.com/free-computer-programming-training-from-google-code-university/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PERL &#8211; How to Send Email</title>
		<link>http://blog.infusiontechsolutions.com/perl-how-to-send-email/</link>
		<comments>http://blog.infusiontechsolutions.com/perl-how-to-send-email/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 03:01:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General IT Info]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[sendmail]]></category>

		<guid isPermaLink="false">http://blog.infusiontechsolutions.com/perl-how-to-send-email/</guid>
		<description><![CDATA[Here is a snippet of PERL code which you can use to send emails from your PERL scripts:
open (MAIL, "&#124;/usr/sbin/sendmail -t ");
print MAIL "From: someFromAddress\@someFromDomain\n";
print MAIL "To: someToAddress\@someToDomain\n";
print MAIL "Content-Type: text/plain\n";
print MAIL "Subject: Very simple email test\n\n";
print MAIL "Body of the message";
close (MAIL);
Replace &#8220;someFromAddress\@someFromDomain&#8221; with an email address to be displayed in the &#8220;from&#8221; field [...]]]></description>
		<wfw:commentRss>http://blog.infusiontechsolutions.com/perl-how-to-send-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PERL &#8211; How to Get the File Path For The Running PERL Script</title>
		<link>http://blog.infusiontechsolutions.com/perl-how-to-get-the-file-path-for-the-running-perl-script/</link>
		<comments>http://blog.infusiontechsolutions.com/perl-how-to-get-the-file-path-for-the-running-perl-script/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 17:57:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General IT Info]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[realpath]]></category>

		<guid isPermaLink="false">http://blog.infusiontechsolutions.com/perl-how-to-get-the-file-path-for-the-running-perl-script/</guid>
		<description><![CDATA[Here is some sample code for determining what the file path is to the PERL script containing the code:
use Cwd qw(realpath);
my $fullpath = realpath($0);
If you just do $0 alone in the second line, that only gives you the filename that was executed. For example, if you include the first line of code above in a [...]]]></description>
		<wfw:commentRss>http://blog.infusiontechsolutions.com/perl-how-to-get-the-file-path-for-the-running-perl-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Code to Display Request and Post Variables</title>
		<link>http://blog.infusiontechsolutions.com/php-code-to-display-request-and-post-variables/</link>
		<comments>http://blog.infusiontechsolutions.com/php-code-to-display-request-and-post-variables/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 01:30:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[request]]></category>
		<category><![CDATA[variable]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.infusiontechsolutions.com/php-code-to-display-request-and-post-variables/</guid>
		<description><![CDATA[Sometimes while debugging a PHP application it is handy to display request and post variables. Here is the code that will do that:

foreach($_POST as $var=&#62;$val)
{
 echo "$var=$val";
}
Replace POST with SESSION and it&#8217;ll work for the session variables. You can do the same with GET, but probably don&#8217;t need it.
]]></description>
		<wfw:commentRss>http://blog.infusiontechsolutions.com/php-code-to-display-request-and-post-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
