<?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>Tekipad Nuggets &#187; programming</title>
	<atom:link href="http://www.tekipad.com/blog/tag/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tekipad.com/blog</link>
	<description>when the bits settle</description>
	<lastBuildDate>Sun, 13 Jun 2010 09:58:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Function to create traffic graph in PHP with gd</title>
		<link>http://www.tekipad.com/blog/2009/09/21/function-to-create-traffic-graph-in-php-with-gd/</link>
		<comments>http://www.tekipad.com/blog/2009/09/21/function-to-create-traffic-graph-in-php-with-gd/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 11:15:35 +0000</pubDate>
		<dc:creator>Gray Dot</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[GD]]></category>
		<category><![CDATA[graphing]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[traffic analysis]]></category>

		<guid isPermaLink="false">http://www.tekipad.com/blog/?p=172</guid>
		<description><![CDATA[





Just finished a couple of projects in which this code came in useful.
You just pass in an array of traffic date of the format
arrayname[0]['date']=&#8217;15/06&#8242;;
arrayname[0]['data']=200;
arrayname[1]['date']=&#8217;16/06&#8242;;
arrayname[1]['data']=100;
I am Indian so the data code is in format d/m, but m/d should not matter either if you create the array in proper order. Also if the data is greater than [...]]]></description>
		<wfw:commentRss>http://www.tekipad.com/blog/2009/09/21/function-to-create-traffic-graph-in-php-with-gd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python script to get links from yahoo search</title>
		<link>http://www.tekipad.com/blog/2009/09/21/python-script-to-get-links-from-yahoo-search/</link>
		<comments>http://www.tekipad.com/blog/2009/09/21/python-script-to-get-links-from-yahoo-search/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 11:03:11 +0000</pubDate>
		<dc:creator>Gray Dot</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[boss]]></category>
		<category><![CDATA[link extraction]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[yahoo search]]></category>

		<guid isPermaLink="false">http://www.tekipad.com/blog/?p=169</guid>
		<description><![CDATA[





This was a quick script I made to pull links from yahoo search using the boss search api, and then list the unique domains. 
If you want the entire links, just modify so that the whole links are appended to the list. Yahoo does not allow to get all the results, but only a certain [...]]]></description>
		<wfw:commentRss>http://www.tekipad.com/blog/2009/09/21/python-script-to-get-links-from-yahoo-search/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP and XML RPC &#8211; Searching for values</title>
		<link>http://www.tekipad.com/blog/2009/08/10/php-and-xml-rpc-searching-for-values/</link>
		<comments>http://www.tekipad.com/blog/2009/08/10/php-and-xml-rpc-searching-for-values/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 09:15:46 +0000</pubDate>
		<dc:creator>Gray Dot</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[domdoc]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xmlrpc]]></category>

		<guid isPermaLink="false">http://www.tekipad.com/blog/?p=149</guid>
		<description><![CDATA[





Many servers provide xmlrpc interfaces which allow other web applications to call and execute functions. It is actually quite simple once you get the hang of it. The servers also return the response and any variables as xmlrpc response messages which are xml responses basically
There are probably a lot of ways to get this done, [...]]]></description>
		<wfw:commentRss>http://www.tekipad.com/blog/2009/08/10/php-and-xml-rpc-searching-for-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Printing a sheet to pdf silently in Excel VBA</title>
		<link>http://www.tekipad.com/blog/2009/01/28/printing-a-sheet-to-pdf-silently-in-excel-vba/</link>
		<comments>http://www.tekipad.com/blog/2009/01/28/printing-a-sheet-to-pdf-silently-in-excel-vba/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 00:27:00 +0000</pubDate>
		<dc:creator>Gray Dot</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Adobe Acrobat]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.tekipad.com/blog/?p=45</guid>
		<description><![CDATA[This piece of code uses Adobe Acrobat to silently print a sheet to the location you specify.Change PDFPath and strOutFile to modify. 
Dim strDefaultPrinter As String, strOutFile As StringDim lngRegResult As Long, lngResult As LongDim dhcHKeyCurrentUser As LongDim PDFPath As StringdhcHKeyCurrentUser = &#38;H80000001strDefaultPrinter = Application.ActivePrinterPDFPath = ThisWorkbook.Path &#38; Application.PathSeparator &#8216;The directory in which you want [...]]]></description>
		<wfw:commentRss>http://www.tekipad.com/blog/2009/01/28/printing-a-sheet-to-pdf-silently-in-excel-vba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving Error with bzr in debian etch. PathNotChild Stack Trace</title>
		<link>http://www.tekipad.com/blog/2009/01/24/solving-error-with-bzr-in-debian-etch-pathnotchild-stack-trace/</link>
		<comments>http://www.tekipad.com/blog/2009/01/24/solving-error-with-bzr-in-debian-etch-pathnotchild-stack-trace/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 01:14:00 +0000</pubDate>
		<dc:creator>Gray Dot</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Bazaar]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Launchpad]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.tekipad.com/blog/?p=43</guid>
		<description><![CDATA[I installed bazaar on my debian box in order to host the &#8216;Leave Status Board&#8217; Project on launch pad. Following the instructions to init, add, commit worked fine. But on trying to push to the launchpad account, (had to add the RSA public key to Launchpad first) I got a whole bunch of python errors, [...]]]></description>
		<wfw:commentRss>http://www.tekipad.com/blog/2009/01/24/solving-error-with-bzr-in-debian-etch-pathnotchild-stack-trace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving the include_once error in Pear Mail</title>
		<link>http://www.tekipad.com/blog/2008/12/07/solving-the-include_once-error-in-pear-mail/</link>
		<comments>http://www.tekipad.com/blog/2008/12/07/solving-the-include_once-error-in-pear-mail/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 16:55:00 +0000</pubDate>
		<dc:creator>Gray Dot</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tekipad.com/blog/?p=38</guid>
		<description><![CDATA[I have this hosting from hosting.india.to and helping on a friend&#8217;s community development initiative by setting up his website. It may soon move to careforindia.org.
During that, I set up a email form on my system, using PHP&#8217;s PEAR mail package to send mail. Though it worked fine on my own system, it didn&#8217;t on the [...]]]></description>
		<wfw:commentRss>http://www.tekipad.com/blog/2008/12/07/solving-the-include_once-error-in-pear-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A c program to add n numbers</title>
		<link>http://www.tekipad.com/blog/2007/04/14/a-c-program-to-add-n-numbers/</link>
		<comments>http://www.tekipad.com/blog/2007/04/14/a-c-program-to-add-n-numbers/#comments</comments>
		<pubDate>Sat, 14 Apr 2007 15:06:00 +0000</pubDate>
		<dc:creator>Gray Dot</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Autotools]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[kdevelop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.tekipad.com/blog/?p=11</guid>
		<description><![CDATA[OK, I agree it is too simple. But I really need to brush up my programming skill and anyway I enjoy programming. Or used to.So just thought to brush up my programming skills, and if it weren&#8217;t for that error i posted about previously I got only a few logical errors which I was able [...]]]></description>
		<wfw:commentRss>http://www.tekipad.com/blog/2007/04/14/a-c-program-to-add-n-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
