<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>TechPub</title>
	<atom:link href="http://techpub.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techpub.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 06 Nov 2011 01:12:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='techpub.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>TechPub</title>
		<link>http://techpub.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://techpub.wordpress.com/osd.xml" title="TechPub" />
	<atom:link rel='hub' href='http://techpub.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing Pylons, Sqlalchemy and Pysqlite</title>
		<link>http://techpub.wordpress.com/2008/01/08/installing-pylons-sqlalchemy-and-pysqlite/</link>
		<comments>http://techpub.wordpress.com/2008/01/08/installing-pylons-sqlalchemy-and-pysqlite/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 01:58:51 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[pylons]]></category>
		<category><![CDATA[pysqlite]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[sqlalchemy]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2008/01/08/installing-pylons-sqlalchemy-and-pysqlite/</guid>
		<description><![CDATA[This post is about installing Pylons, Sqlalchemy and Pysqlite on Win XP To get started, you should have installed Python (currently version 2.5 at the time of writing) if not install it first. Make sure you have the python installation path (ex: C:\Python25) in the &#8220;Path &#8221; environment variable. The next step is to download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=14&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is about installing <b>Pylons</b>,  <b>Sqlalchemy </b>and <b>Pysqlite </b>on Win XP<br />
To get started, you should have installed Python (currently version 2.5 at the time of writing)  if not install it first. Make sure you have the python installation path (ex: C:\Python25) in the &#8220;Path &#8221; environment variable.</p>
<p>The next step is to download &#8220;ez_setup.py&#8221; (http://peak.telecommunity.com/DevCenter/EasyInstall) .</p>
<p>Note &#8211; download &#8220;ez_setup.py&#8221; to some other location other than python installation area.</p>
<p>Open a command prompt, navigate to the dir where you have the downloaded script and execute</p>
<blockquote><p>&#8220;<code>python ez_setup.py</code>&#8220;</p></blockquote>
<p>This will install &#8220;easy_install&#8221; utility which will be used heavily by you in future. As part of this step &#8220;Scripts&#8221; folder (C:\Python25\Scripts) will be created under you python installation folders. You will have to add &#8220;Scripts&#8221; folder (C:\Python25\Scripts)  to the &#8220;Path&#8221; environment variable. Once this done, open a new command prompt and type</p>
<blockquote><p>&#8220;<code>easy_install --help</code>&#8220;</p></blockquote>
<p>This will list out the command line options.</p>
<p>So you are now set to download and install <b>Pylons</b>.</p>
<p>Open a new command prompt and execute the command</p>
<blockquote><p>&#8220;<code>easy_install Pylons==0.9.6.1</code>&#8220;</p></blockquote>
<p>This will download and install Pylons. Once its done, check the &#8220;C:\Python25\Lib\site-packages&#8221; folder, it should have &#8220;pylons&#8221; module within it. Alternatively, on the command prompt, type &#8220;<code>python</code>&#8221; to get into python shell and</p>
<blockquote><p>&#8220;<code>import pylons</code>&#8220;, then enter &#8220;<code>pylons.__version__</code>&#8220;</p></blockquote>
<p>which should display the version number of pylons. Alright, Pylons installation is done.</p>
<p>To install <b>Sqlalchemy</b>, open a command prompt and type</p>
<blockquote><p>&#8220;<code>easy_install sqlalchemy</code>&#8220;</p></blockquote>
<p>This will download and install Sqlalchemy. To check if the installation worked ok, the first thing is to check for the sqlalchemy folder within &#8220;C:\Python25\Lib\site-packages&#8221; of python installation.  Alternatively, open a command prompt, type python to get into python shell,</p>
<blockquote><p> &#8220;<code>import sqlalchemy</code>&#8221; and enter &#8220;<code>sqlalchemy.__version__</code>&#8220;</p></blockquote>
<p>this should print the version number of installed sqlalchemy.</p>
<p>To the final part now, installing <b>Pysqlite</b>. As similar to other previous installation, on the command prompt, type</p>
<blockquote><p>&#8220;<code>easy_install pysqlite</code>&#8220;</p></blockquote>
<p>Once the download and install is over, get into the python shell and</p>
<blockquote><p>&#8220;<code>import pysqlite2</code>&#8220;</p>
<p>&#8220;<code>from pysqlite2 import test</code>&#8220;</p>
<p>&#8220;<code>test.test()</code>&#8220;.</p></blockquote>
<p>This will run some tests and display the number of tests that was run.</p>
<p>So thats it, its time to start working on some web application.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=14&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2008/01/08/installing-pylons-sqlalchemy-and-pysqlite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>Planning projects</title>
		<link>http://techpub.wordpress.com/2007/12/22/planning-projects/</link>
		<comments>http://techpub.wordpress.com/2007/12/22/planning-projects/#comments</comments>
		<pubDate>Sat, 22 Dec 2007 01:46:30 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[plan]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/12/22/planning-projects/</guid>
		<description><![CDATA[I spent quite amount of time trying to figure out how to plan/execute a project (project can be a blog, a website etc) and here is what i finally thought that would solve the issue using the experience that i gained - Decide what do you want to build and set a realistic deadline. know [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=13&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I spent quite amount of time trying to figure out how to plan/execute a project (project can be a blog, a website etc) and here is what i finally thought that would solve the issue using the experience that i gained -</p>
<ul>
<li>Decide what do you want to build and set a realistic deadline.</li>
<li>know what is the minimum requirement(functional) that is needed in order to  setup something (for ex, going online with a website)</li>
<li>know what are the risks involved and try to come up with a solution before you dive deep. (for ex, try to come up with some prototypes if you think you are technically challenged)</li>
<li>Finish the project. (i am pretty sure, you must have left something out or there may be a gap, so all it needs is to walkthrough what you have so far multiple times until you are satisfied)</li>
<li>And most important that applies in any of the above stages is to know when to dump your project or quit.   (i have done it couple of times, i try to do something and halfway through i quit because i feel its not going to work)</li>
</ul>
<p>All i am saying is you need to have passion towards what you are doing, thats the one that will drive you till the end. You may come up with many different plans to start &amp; finish a project, but to me what i have mentioned above is what most of the people(atleast) do it.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=13&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/12/22/planning-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>Are you a successful blogger</title>
		<link>http://techpub.wordpress.com/2007/12/17/are-you-a-successful-blogger/</link>
		<comments>http://techpub.wordpress.com/2007/12/17/are-you-a-successful-blogger/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 05:23:35 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/12/17/are-you-a-successful-blogger/</guid>
		<description><![CDATA[Well, there are many people who are really talented in writing content, but there are people who have lot of content in their brain but don&#8217;t know how to put it out, its really hard to be a successful blogger. There was an article that i came across which talks about blogging and how hard [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=12&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, there are many people who are really talented in writing content, but there are people who have lot of content in their brain but don&#8217;t know how to put it out, its really hard to be a successful blogger. There was an article that i came across which talks about blogging and how hard it is to be successful. I don&#8217;t know what successful in blogging means. I thought blogs were a way to write what you like which people may or may not like.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=12&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/12/17/are-you-a-successful-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating reusable elements in cakephp</title>
		<link>http://techpub.wordpress.com/2007/12/10/creating-reusable-elements-in-cakephp/</link>
		<comments>http://techpub.wordpress.com/2007/12/10/creating-reusable-elements-in-cakephp/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 00:58:57 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[renderelement]]></category>
		<category><![CDATA[requestaction]]></category>
		<category><![CDATA[reusable elements]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/12/10/creating-reusable-elements-in-cakephp/</guid>
		<description><![CDATA[If you ever wanted to create a reusable element in cakephp, use Elements and RequestAction. To explain a bit, use $this-&#62;renderElement('element_name') in your view. This will actually call the element &#8216;element_name&#8217; which in turn calls your action code using $this-&#62;requestAction('controller/action') call which you would have defined in your element. Thats it, this saves a lot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=11&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you ever wanted to create a reusable element in cakephp, use Elements and RequestAction.</p>
<p>To explain a bit, use <code>$this-&gt;renderElement('element_name')</code> in your view. This will actually call the element &#8216;element_name&#8217; which in turn calls your action code using  <code>$this-&gt;requestAction('controller/action')</code> call which you would have defined in your element. Thats it, this saves a lot of time.<br />
A neat and simple example is given <a href="http://bakery.cakephp.org/articles/view/creating-reusable-elements-with-requestaction">here.</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=11&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/12/10/creating-reusable-elements-in-cakephp/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>Wake up call through computer</title>
		<link>http://techpub.wordpress.com/2007/12/09/wake-up-call-through-computer/</link>
		<comments>http://techpub.wordpress.com/2007/12/09/wake-up-call-through-computer/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 04:17:59 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[wake up]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/12/09/wake-up-call-through-computer/</guid>
		<description><![CDATA[Somehow i came across this article &#8220;the computer called, it said to get off the couch&#8221;. This is about having automated wake up call using our computers which has increased the number of minutes that a human spends for his excersie in the morning. This holds good for a research study, but practically speaking if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=10&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Somehow i came across this article <a href="http://www.msnbc.msn.com/id/22132675/">&#8220;the computer called, it said to get off the couch&#8221;.</a> This is about having automated wake up call using our computers which has increased the number of minutes that a human spends for his excersie in the morning. This holds good for a research study, but practically speaking if alarm clocks didn&#8217;t work, i am not sure how will this idea of having a computer to wake you up will work.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=10&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/12/09/wake-up-call-through-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>First thought about Kindle</title>
		<link>http://techpub.wordpress.com/2007/12/02/first-thought-about-kindle/</link>
		<comments>http://techpub.wordpress.com/2007/12/02/first-thought-about-kindle/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 21:35:37 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[kindle]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/12/02/first-thought-about-kindle/</guid>
		<description><![CDATA[When i first saw it couple of weeks back, the first thing that hit my mind was that it looked like a hospital gadget to me, they definitely lack Apple&#8217;s touch in their design. But with Amazon&#8217;s huge book database, it might pick up.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=9&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When i first saw it couple of weeks back, the first thing that hit my mind was that it looked like a hospital gadget to me, they definitely lack Apple&#8217;s touch in their design.  But with Amazon&#8217;s huge book database, it might pick up.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=9&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/12/02/first-thought-about-kindle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>DS Fun</title>
		<link>http://techpub.wordpress.com/2007/12/02/ds-fun/</link>
		<comments>http://techpub.wordpress.com/2007/12/02/ds-fun/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 21:21:44 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[ds]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[nintendo ds]]></category>
		<category><![CDATA[zelda]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/12/02/ds-fun/</guid>
		<description><![CDATA[I recently bought a new DS game &#8220;Legend of zelda : The phantom hour glass&#8221; as the reviews were pretty good. Once i started playing, i couldn&#8217;t come out of it. It&#8217;s really interesting. The fun part is, all the game functions works on Stylus and you don&#8217;t have to use the keys which is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=8&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently bought a new DS game  &#8220;Legend of zelda : The phantom hour glass&#8221; as the reviews were pretty good. Once i started playing, i couldn&#8217;t come out of it. It&#8217;s really interesting. The fun part is,  all the game functions works on Stylus and you don&#8217;t have to use the keys which  is really good as it doesn&#8217;t hurt the fingers when played for a long time.</p>
<p>The game plot has lots of interesting levels and at times you definitely need a game guide (gamespot has a good one)  to proceed further.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=8&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/12/02/ds-fun/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>How to &#8211; password hashing in cakephp</title>
		<link>http://techpub.wordpress.com/2007/11/25/how-to-password-hashing-in-cakephp/</link>
		<comments>http://techpub.wordpress.com/2007/11/25/how-to-password-hashing-in-cakephp/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 06:44:29 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[password hashing]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/11/25/how-to-password-hashing-in-cakephp/</guid>
		<description><![CDATA[How do you do password hashing in cakephp ? The answer is really simple, use the Security class provided by cakephp. Example usage - In your controller, do the following $this-&#62;data['User']['password'] = Security::hash($this-&#62;data['User']['password']); where &#8216;User&#8217; is the model and &#8216;password&#8217; is the attribute that is used to capture the password entered by the user. By [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=6&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How do you do password hashing in cakephp ?</p>
<p>The answer is really simple, use the Security class provided by cakephp.</p>
<p>Example usage -</p>
<p>In your controller, do the following<br />
<code>$this-&gt;data['User']['password']  = Security::hash($this-&gt;data['User']['password']);</code></p>
<p>where &#8216;User&#8217; is the model and &#8216;password&#8217; is the attribute that is used to capture the password entered by the user.</p>
<p>By default, Security::hash takes the type <em>sha1</em>.</p>
<p>And if you want to validate or check the password entered by the user against the hashed password  stored in db, use the hash method and perform the check.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=6&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/11/25/how-to-password-hashing-in-cakephp/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>CakePHP</title>
		<link>http://techpub.wordpress.com/2007/11/22/cakephp/</link>
		<comments>http://techpub.wordpress.com/2007/11/22/cakephp/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 23:11:06 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/11/22/cakephp/</guid>
		<description><![CDATA[After browsing around many php frameworks , finally i found the one that i really liked &#8211; CakePHP. Setting up was pretty easy and writing a small application was really fun. This has got me into developing a small web site. Well, its almost complete with few fixes/enhancements going on. Hopefully this will be over [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=5&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After browsing around many php frameworks , finally i found the one that i really liked &#8211; CakePHP. Setting up was pretty easy and writing a small application was really fun.  This has got me into developing a small web site. Well, its almost complete with few fixes/enhancements going on. Hopefully this will be over pretty soon. I just can&#8217;t wait to see my first web site live.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=5&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/11/22/cakephp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing defaults &#8211; cakePHP</title>
		<link>http://techpub.wordpress.com/2007/11/22/changing-defaults-cakephp/</link>
		<comments>http://techpub.wordpress.com/2007/11/22/changing-defaults-cakephp/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 06:29:01 +0000</pubDate>
		<dc:creator>rkrajeshin</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://techpub.wordpress.com/2007/11/22/changing-defaults-cakephp/</guid>
		<description><![CDATA[There are times when you want to change the defaults provided by cakephp for example &#8211; layout etc. To change the default layout, do the following - Cakephp normally uses the default.thtml from cake\libs\view\templates\layouts\default.thtml. Copy default.thtml to your app\views\layouts\ and change accordingly. You can also change the cake&#8217;s default.thtml within the libs folder but thats [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=4&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are times when you want to change the defaults provided by cakephp for example &#8211; layout etc.</p>
<p>To change the default layout, do the following -<br />
Cakephp normally uses the default.thtml from <strong>cake\libs\view\templates\layouts\default.thtml</strong>. Copy default.thtml to your <strong>app\views\layouts\ </strong>and change accordingly. You can also change the cake&#8217;s default.thtml within the libs folder but thats not advisable.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techpub.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techpub.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techpub.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techpub.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techpub.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techpub.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/techpub.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/techpub.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/techpub.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/techpub.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techpub.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techpub.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techpub.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techpub.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techpub.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techpub.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techpub.wordpress.com&amp;blog=2118894&amp;post=4&amp;subd=techpub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://techpub.wordpress.com/2007/11/22/changing-defaults-cakephp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f05dbe32002d9ea135664772c0cf6aa4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rkrajeshin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
