<?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>The Tech Space &#187; free</title>
	<atom:link href="http://www.thetechspace.com/tag/free/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thetechspace.com</link>
	<description>php, jquery, flash and resources</description>
	<lastBuildDate>Tue, 08 Nov 2011 08:47:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>reCAPTCHA plugin for php codeigniter</title>
		<link>http://www.thetechspace.com/2011/03/04/recaptcha-plugin-for-php-codeigniter/</link>
		<comments>http://www.thetechspace.com/2011/03/04/recaptcha-plugin-for-php-codeigniter/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 07:55:14 +0000</pubDate>
		<dc:creator>Thurein</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[reCAPTCHA]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://www.thetechspace.com/?p=350</guid>
		<description><![CDATA[I&#8217;m playing around with codeigniter frameworks these days. One of my client requested to put reCAPTCHA into CI frameworks. So, I have tried to convert from original reCAPTCHA php plug-in to codeigniter library. So, I would like to share this library. I hope it useful for someone. To use this library, you just need to [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>I&#8217;m playing around with codeigniter frameworks these days. One of my client requested to put reCAPTCHA into CI frameworks. So, I have tried to convert from original reCAPTCHA php plug-in to codeigniter library. So, I would like to share this library. I hope it useful for someone.</p>
<p>To use this library, you just need to follow by under following instruction :</p>
<p>Firstly, you have to move Recaptcha.php file into CI file structure system/application/libraries/<br />
Use following code to load that library -</p>
<pre class="brush:php">
$this-&gt;load-&gt;library('recaptcha');
</pre>
<p>Then you have to set keys. Sometime you just need to set only one public key. So, just set public key only.<br />
To set the keys</p>
<pre class="brush:php">
// Get a key from https://www.google.com/recaptcha/admin/create
$this-&gt;recaptcha-&gt;set_key ('XXXXXXXXXX Key XXXXXXXXX' ,'public') // For public key
$this-&gt;recaptcha-&gt;set_key ('XXXXXXXXXX Key XXXXXXXXX' ,'private') // For private key
</pre>
<p><span id="more-350"></span><br />
To Show reCAPTCHA image and from. You just simply need to call recaptcha_get_html () function. In that function you can define theme and language of reCAPTCHA (<a href="http://code.google.com/apis/recaptcha/docs/customization.html">Customization</a>).<br />
The function builded like -</p>
<pre class="brush:php">
recaptcha_get_html ( $error = null, $use_ssl = false, $options = array ('theme' => 'red', 'lang' => 'en') )
</pre>
<p>You just simply need to call like -</p>
<pre class="brush:php">
//Options for themes and language
$options = array ('theme' =&gt; 'clean', 'lang' =&gt; 'fr') ;
echo $this-&gt;recaptcha-&gt;recaptcha_get_html ( '', false, $options )
</pre>
<p>To check the answer from client</p>
<pre class="brush:php">
$resp = $this-&gt;recaptcha-&gt;recaptcha_check_answer ( $this-&gt;input-&gt;ip_address(), $this-&gt;input-&gt;post('recaptcha_challenge_field',true), $this-&gt;input-&gt;post('recaptcha_response_field',true));

if ($resp-&gt;is_valid) {
                echo "You got it!";
} else {
                # set the error code so that we can display it
                $error = $resp-&gt;error;
}
</pre>
<h3>For mail hide functions</h3>
<p>To use mail hide function, set mail hide api keys -</p>
<pre class="brush:php">
// Get a key from https://www.google.com/recaptcha/admin/create
$this-&gt;recaptcha-&gt;set_key ('XXXXXXXXXX Key XXXXXXXXX' ,'public') // For public key
$this-&gt;recaptcha-&gt;set_key ('XXXXXXXXXX Key XXXXXXXXX' ,'private') // For private key
</pre>
<p>The Mailhide version of example@example.com is</p>
<pre class="brush:php">
echo $this-&gt;recaptcha-&gt;recaptcha_mailhide_html ("example@example.com");
</pre>
<p>The url for the email is:</p>
<pre class="brush:php">
echo $this-&gt;recaptcha-&gt;recaptcha_mailhide_url ("example@example.com");
</pre>
<h3><a href="http://www.thetechspace.com/?download=recaptcha-ci-library" target="_blank">Download reCAPTCHA Codeigniter Library</a> ( size 4 kB)</h3>
<p>Hope it&#8217;s useful. Enjoy !!!</p>
<div class="shr-publisher-350"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.thetechspace.com/2011/03/04/recaptcha-plugin-for-php-codeigniter/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Free IP address geolocation tool</title>
		<link>http://www.thetechspace.com/2009/10/04/free-ip-address-geolocation-tool/</link>
		<comments>http://www.thetechspace.com/2009/10/04/free-ip-address-geolocation-tool/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 04:18:30 +0000</pubDate>
		<dc:creator>Thurein</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[web tool]]></category>

		<guid isPermaLink="false">http://www.thetechspace.com/?p=213</guid>
		<description><![CDATA[If you are looking for geographical location of an IP address, I would like to recommend you to use IPInfoDB . This is the free web tool that you can detect geographical location of an IP address. IP Info DB is offering free services based on their IP address geolocation database. Web based IP geolocation [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>If you are looking for geographical location of an IP address, I would like to recommend you to use <a href="http://ipinfodb.com" target="_blank">IPInfoDB</a> .<br />
This is the free web tool that you can detect geographical location of an IP address.</p>
<blockquote>
<h3>IP Info DB is offering free services based on their IP address geolocation database.</h3>
<ul>
<li> Web based IP geolocation lookup</li>
<li>IP geolocation API (XML, JSON and CSV format)</li>
<li>API that generate IP CIDR by country for iptables or htaccess blocklist</li>
<li>E-commerce fraud detection API</li>
<li>Free version of our SQL database updated monthly!</li>
</ul>
</blockquote>
<p><a href="http://ipinfodb.com"><img class="aligncenter size-full wp-image-214" title="IPInfoDB" src="http://www.thetechspace.com/wp-content/uploads/2009/10/ipinfodb.jpg" alt="IPInfoDB" width="615" height="250" /></a></p>
<div class="shr-publisher-213"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.thetechspace.com/2009/10/04/free-ip-address-geolocation-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Textures And Patterns Websites</title>
		<link>http://www.thetechspace.com/2009/08/24/free-textures-and-patterns-websites/</link>
		<comments>http://www.thetechspace.com/2009/08/24/free-textures-and-patterns-websites/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 08:12:13 +0000</pubDate>
		<dc:creator>Thurein</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[patterns]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[stock]]></category>
		<category><![CDATA[textures]]></category>

		<guid isPermaLink="false">http://www.thetechspace.com/?p=26</guid>
		<description><![CDATA[When you design with photoshop , you may need high quality texture and pattern. This is the list of free texture and pattern sites. You can download free of charge from these websites. 1. Grungetextures.com 2. Squidfingers.com 3. DinPattern 4. PhotoVaco 5. EverydayIcons 6. Big Patterns 7. Love Textures 8. Free Stock Textures 9. My [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>When you design with photoshop , you may need high quality texture and pattern. This is the list of free texture and pattern sites. You can download free of charge from these websites.</p>
<h3><a href="http://www.grungetextures.com/" target="_blank">1. Grungetextures.com</a></h3>
<p><a href="http://www.grungetextures.com" target="_blank"><img class="aligncenter size-full wp-image-27" title="Grungetextures.com" src="http://www.thetechspace.com/wp-content/uploads/2009/08/grungetextures.jpg" alt="Grungetextures.com" width="615" height="250" /></a></p>
<h3><a href="http://www.squidfingers.com/patterns" target="_blank">2. Squidfingers.com</a></h3>
<p><a href="http://www.squidfingers.com/patterns" target="_blank"><img class="aligncenter size-full wp-image-28" title="squidfingers.com" src="http://www.thetechspace.com/wp-content/uploads/2009/08/squidfingers.jpg" alt="squidfingers.com" width="615" height="250" /></a><span id="more-26"></span></p>
<h3><a href="http://www.dinpattern.com">3. DinPattern</a></h3>
<p><a href="http://www.dinpattern.com" target="_blank"><img class="aligncenter size-full wp-image-32" title="dinpattern" src="http://www.thetechspace.com/wp-content/uploads/2009/08/dinpattern.jpg" alt="dinpattern" width="615" height="250" /></a></p>
<h3><a href="http://www.photovaco.com" target="_blank">4. PhotoVaco</a></h3>
<p><a href="http://www.photovaco.com/category/14" target="_blank"><img class="aligncenter size-full wp-image-33" title="photovaco" src="http://www.thetechspace.com/wp-content/uploads/2009/08/photovaco.jpg" alt="photovaco" width="615" height="250" /></a></p>
<h3><a href="http://everydayicons.jp/patterns.html" target="_blank">5. EverydayIcons</a></h3>
<p><a href="http://everydayicons.jp/patterns.html" target="_blank"><img class="aligncenter size-full wp-image-36" title="everydayicons" src="http://www.thetechspace.com/wp-content/uploads/2009/08/everydayicons.jpg" alt="everydayicons" width="615" height="250" /></a></p>
<h3><a href="http://bgpatterns.com/" target="_blank">6. Big Patterns</a></h3>
<p><a href="http://bgpatterns.com/" target="_blank"><img class="aligncenter size-full wp-image-38" title="bigpatterns" src="http://www.thetechspace.com/wp-content/uploads/2009/08/bigpatterns.jpg" alt="bigpatterns" width="615" height="250" /></a></p>
<h3><a href="http://www.lovetextures.com/" target="_blank">7. Love Textures</a></h3>
<p><a href="http://www.lovetextures.com" target="_blank"><img class="aligncenter size-full wp-image-39" title="lovetextures" src="http://www.thetechspace.com/wp-content/uploads/2009/08/lovetextures.jpg" alt="lovetextures" width="615" height="250" /></a></p>
<h3><a href="http://freestocktextures.com" target="_blank">8. Free Stock Textures</a></h3>
<p><a href="http://freestocktextures.com" target="_blank"><img class="aligncenter size-full wp-image-40" title="freestocktextures" src="http://www.thetechspace.com/wp-content/uploads/2009/08/freestocktextures.jpg" alt="freestocktextures" width="615" height="250" /></a></p>
<h3><a href="http://myphotoshopbrushes.com/patterns" target="_blank">9. My Photoshop Brushes</a></h3>
<p><a href="http://myphotoshopbrushes.com/patterns" target="_blank"><img class="aligncenter size-full wp-image-43" title="myphotoshopbrushes" src="http://www.thetechspace.com/wp-content/uploads/2009/08/myphotoshopbrushes.jpg" alt="myphotoshopbrushes" width="615" height="250" /></a></p>
<h3><a href="http://webtreats.mysitemyway.com/category/photoshop-resources/patterns" target="_blank">10. WebTreats ETC</a></h3>
<p><a href="http://webtreats.mysitemyway.com/category/photoshop-resources/patterns" target="_blank"><img class="aligncenter size-full wp-image-45" title="webtreats" src="http://www.thetechspace.com/wp-content/uploads/2009/08/webtreats.jpg" alt="webtreats" width="615" height="250" /></a></p>
<h3><a href="http://patternwall.com/" target="_blank">11. Pattern Wall</a></h3>
<p><a href="http://patternwall.com/" target="_blank"><img class="aligncenter size-full wp-image-47" title="patternwall" src="http://www.thetechspace.com/wp-content/uploads/2009/08/patternwall.jpg" alt="patternwall" width="615" height="250" /></a></p>
<h3><a href="http://pattern8.com/" target="_blank">12. Pattern8</a></h3>
<p><a href="http://pattern8.com/" target="_blank"><img class="aligncenter size-full wp-image-49" title="pattern8" src="http://www.thetechspace.com/wp-content/uploads/2009/08/pattern8.jpg" alt="pattern8" width="615" height="250" /></a></p>
<h3><a href="http://ftg.projectdd.jp/" target="_blank">13. FTG ( Firework Textures Gallery )</a></h3>
<p><a href="http://ftg.projectdd.jp/" target="_blank"><img class="aligncenter size-full wp-image-51" title="ftg" src="http://www.thetechspace.com/wp-content/uploads/2009/08/ftg.jpg" alt="ftg" width="615" height="250" /></a></p>
<h3><a href="http://zentextures.com/" target="_blank">14. Zen Textures</a></h3>
<p><a href="http://zentextures.com/" target="_blank"><img class="aligncenter size-full wp-image-53" title="zentextures" src="http://www.thetechspace.com/wp-content/uploads/2009/08/zentextures.jpg" alt="zentextures" width="615" height="250" /></a></p>
<h3><a href="http://seamlesstextures.net" target="_blank">15. Seamless Textures</a></h3>
<p><a href="http://seamlesstextures.net" target="_blank"><img class="aligncenter size-full wp-image-55" title="seamlesstextures" src="http://www.thetechspace.com/wp-content/uploads/2009/08/seamlesstextures.jpg" alt="seamlesstextures" width="615" height="250" /></a></p>
<div class="shr-publisher-26"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.thetechspace.com/2009/08/24/free-textures-and-patterns-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

