<?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>agileaholic :)</title>
	<atom:link href="http://prabhub.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://prabhub.wordpress.com</link>
	<description>Java, groovy, grails, hacking and more...</description>
	<lastBuildDate>Sat, 08 Oct 2011 11:42:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='prabhub.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>agileaholic :)</title>
		<link>http://prabhub.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://prabhub.wordpress.com/osd.xml" title="agileaholic :)" />
	<atom:link rel='hub' href='http://prabhub.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Objective-C programming using mingw32 in Windows</title>
		<link>http://prabhub.wordpress.com/2010/05/08/objective-c-programming-using-mingw32-in-windows/</link>
		<comments>http://prabhub.wordpress.com/2010/05/08/objective-c-programming-using-mingw32-in-windows/#comments</comments>
		<pubDate>Sat, 08 May 2010 10:53:00 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[objective-c]]></category>
		<category><![CDATA[objective-c environment setup]]></category>

		<guid isPermaLink="false">https://prabhub.wordpress.com/2010/05/08/objective-c-programming-using-mingw32-in-windows/</guid>
		<description><![CDATA[Following are the steps you need to follow to setup the environment and run your first program S.No Description Link/Path/Command Note 1 Install mingw32 and its libraries http://www.gnustep.org/experience/Windows.html Make sure you install the first two packages provided in the link (in the same order mentioned) 2 Open mingw32 Start –&#62; Programs –&#62; GNUStep –&#62; Shell [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=162&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Following are the steps you need to follow to setup the environment and run your first program</p>
<table cellspacing="0" cellpadding="2" width="650" border="1">
<tbody>
<tr>
<td valign="top" width="49">S.No</td>
<th valign="top" width="117">Description</th>
<th valign="top" width="361">Link/Path/Command</th>
<th valign="top" width="121">Note</th>
</tr>
<tr>
<td valign="top" width="49">1</td>
<td valign="top" width="117">Install mingw32 and its libraries</td>
<td valign="top" width="361"><a href="http://www.gnustep.org/experience/Windows.html">http://www.gnustep.org/experience/Windows.html</a></td>
<td valign="top" width="121">Make sure you install the first two packages provided in the link (in the same order mentioned)</td>
</tr>
<tr>
<td valign="top" width="49">2</td>
<td valign="top" width="117">Open mingw32</td>
<td valign="top" width="361">Start –&gt; Programs –&gt; GNUStep –&gt; Shell</td>
<td valign="top" width="121">&#160;</td>
</tr>
<tr>
<td valign="top" width="49">3</td>
<td valign="top" width="117">Write our first program</td>
<td valign="top" width="361">The command prompt location points to the following path:          <br />%GNUStep_Directoy%/home/your_name/           <br />(“<em>D:\GNUstep\home\Prabhu B</em>” for me)</td>
<td valign="top" width="121"><a href="http://www.box.net/shared/a6xetj0kie" target="_blank">FirstProgram.h</a>           <br /><a href="http://www.box.net/shared/omlvhkdxdf" target="_blank">FirstProgram.m</a>           <br />(Refer below for the content of the <strong>.h</strong> and <strong>.m</strong> files)</td>
</tr>
<tr>
<td valign="top" width="49">4</td>
<td valign="top" width="117">Compile the program</td>
<td valign="top" width="361">
<p>gcc -o FirstProgram FirstProgram.m –I /GNUstep/System/Library/Headers/ -L /GN            <br />Ustep/System/Library/Libraries -lobjc -lgnustep-base -enable-auto-import -fconstant-string-class=NSConstantString</p>
</td>
<td valign="top" width="121">&#160;</td>
</tr>
<tr>
<td valign="top" width="49">5</td>
<td valign="top" width="117">Run the program</td>
<td valign="top" width="361">./FirstProgram</td>
<td valign="top" width="121">&#160;</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<table cellspacing="0" cellpadding="2" width="650" border="1">
<tbody>
<tr>
<th valign="top" align="center" width="324">FirstProgram.h</th>
<th valign="top" align="center" width="324">FirstProgram.m</th>
</tr>
<tr>
<td valign="top" width="324">
<p>#import&lt;Foundation/NSObject.h&gt;</p>
<p>@<span class="kwrd">interface</span> FirstProgram:NSObject { </p>
<p>} </p>
<p>-(<span class="kwrd">int</span>) addNumber1 : (<span class="kwrd">int</span>) x withNumber2 : (<span class="kwrd">int</span>) y; </p>
<p>@end</p>
</td>
<td valign="top" width="324">
<p>#import &quot;FirstProgram.h&quot;            <br />#import &lt;Foundation/NSString.h&gt; </p>
<p>@implementation FirstProgram&#160; </p>
<p>-(int)addNumber1:&#160; (int) x withNumber2:&#160; (int) y { </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; //add           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; return(x + y);&#160; <br />}&#160; <br />main() {             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; FirstProgram *first = [[FirstProgram alloc] init];             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; int total = [first addNumber1:20 withNumber2:30];             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; NSLog(@&quot;Total=%d&quot;,total);&#160; <br />}             <br />@end</p>
</td>
</tr>
<tr>
<td valign="top" width="324">&#160;</td>
<td valign="top" width="324">&#160;</td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://prabhub.wordpress.com/category/objective-c/'>objective-c</a> Tagged: <a href='http://prabhub.wordpress.com/tag/objective-c-environment-setup/'>objective-c environment setup</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=162&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2010/05/08/objective-c-programming-using-mingw32-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Live Writer &#8211; Already Installed Problem</title>
		<link>http://prabhub.wordpress.com/2010/03/16/windows-live-writer-already-installed-problem/</link>
		<comments>http://prabhub.wordpress.com/2010/03/16/windows-live-writer-already-installed-problem/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 09:16:00 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[Troubleshoot]]></category>
		<category><![CDATA[livewriter]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/2010/03/16/windows-live-writer-already-installed-problem/</guid>
		<description><![CDATA[When you are installing the Windows Live Essentials and wondering why Writer is under the ‘Already installed’ section, then you might be as surprised as me. Reason: I had installed and removed but still the entries in the registry was creating the issue. Solution: To uninstall Windows Live Writer, click Start, then type/paste the following [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=158&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you are installing the Windows Live Essentials and wondering why Writer is under the ‘Already installed’ section, then you might be as surprised as me.</p>
<p><strong>Reason:</strong> I had installed and removed but still the entries in the registry was creating the issue.</p>
<p><strong>Solution: </strong></p>
<div class="csharpcode">
<div class="csharpcode">
<pre class="alt">To uninstall Windows Live Writer, click Start, then type/paste the following and press Enter:</pre>
<pre><strong>msiexec /x {178832DE-9DE0-4C87-9F82-9315A9B03985}</strong></pre>
</p></div>
</div>
<br />Filed under: <a href='http://prabhub.wordpress.com/category/troubleshoot/'>Troubleshoot</a> Tagged: <a href='http://prabhub.wordpress.com/tag/livewriter/'>livewriter</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=158&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2010/03/16/windows-live-writer-already-installed-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>Grails Constraints</title>
		<link>http://prabhub.wordpress.com/2010/01/20/grails-constraints/</link>
		<comments>http://prabhub.wordpress.com/2010/01/20/grails-constraints/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 09:53:10 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[grails]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[constraints]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/2010/01/20/grails-constraints/</guid>
		<description><![CDATA[Consider the following domainclass User {&#160;&#160;&#160; String name,&#160;&#160;&#160; String email,&#160;&#160;&#160; String password &#160;&#160;&#160; static constraints = {&#160;&#160;&#160;&#160;&#160;&#160; password(size:6..32,blank:false),&#160;&#160;&#160;&#160;&#160;&#160; email(blank:false,email:true)&#160;&#160;&#160; }} Is there a way where I can validate only my password?YES if(user.hasErrors()) {&#160;&#160;&#160; if(user.errors.hasFieldErrors(&#8220;password&#8221;)) {&#160;&#160;&#160;&#160;&#160;&#160; println user.errors.getFieldError(&#8220;password&#8221;).rejectedValue&#160;&#160;&#160; }} Posted in agile, grails, groovy Tagged: constraints<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=153&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Consider the following domain<br />class User {<br />&nbsp;&nbsp;&nbsp;    String name,<br />&nbsp;&nbsp;&nbsp;    String email,<br />&nbsp;&nbsp;&nbsp;    String password</p>
<p>&nbsp;&nbsp;&nbsp;   static constraints = {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	password(size:6..32,blank:false),<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	email(blank:false,email:true)<br />&nbsp;&nbsp;&nbsp;   }<br />}</p>
<p>Is there a way where I can validate only my password?<br />YES</p>
<p>if(user.hasErrors()) {<br />&nbsp;&nbsp;&nbsp; if(user.errors.hasFieldErrors(&#8220;password&#8221;)) {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;		println user.errors.getFieldError(&#8220;password&#8221;).rejectedValue<br />&nbsp;&nbsp;&nbsp;	}<br />}</p>
<br />Posted in agile, grails, groovy Tagged: constraints <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=153&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2010/01/20/grails-constraints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>int value from param &#8211; groovy way</title>
		<link>http://prabhub.wordpress.com/2010/01/20/int-value-from-param-groovy-way/</link>
		<comments>http://prabhub.wordpress.com/2010/01/20/int-value-from-param-groovy-way/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 09:40:20 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/2010/01/20/int-value-from-param-groovy-way/</guid>
		<description><![CDATA[In Java, int paramValue = Integer.parseInt(request.getParameter(&#8220;paramName&#8221;)); In Grails.int paramValue &#8211; param.int(&#8220;paramName&#8221;) how sleek&#8230;. Posted in agile<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=151&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In Java, <br />int paramValue = Integer.parseInt(request.getParameter(&#8220;paramName&#8221;));</p>
<p>In Grails.<br />int paramValue &#8211; param.int(&#8220;paramName&#8221;)</p>
<p>how sleek&#8230;.</p>
<br />Posted in agile  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=151&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2010/01/20/int-value-from-param-groovy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>Xpressmark &#8211; Setting it up on prgmr.com</title>
		<link>http://prabhub.wordpress.com/2009/11/26/xpressmark-setting-it-up-on-prgmr-com/</link>
		<comments>http://prabhub.wordpress.com/2009/11/26/xpressmark-setting-it-up-on-prgmr-com/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 17:19:35 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/2009/11/26/xpressmark-setting-it-up-on-prgmr-com/</guid>
		<description><![CDATA[I enjoyed an impressive service of that of slicehost for hosting xpressmark. But the annual cost of hosting it (a 256MB slice) comes at a price tag of 240 USD (-20 USD for an annual membership) which is a bit on the expensive side considering the fact that I don&#8217;t get any revenue out of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=147&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I enjoyed an impressive service of that of <a href="http://www.slicehost.com" target="_blank">slicehost</a> for hosting <a href="http://www.xpressmark.com" target="_blank">xpressmark</a>. But the annual cost of hosting it (a 256MB slice) comes at a price tag of 240 USD (-20 USD for an annual membership) which is a bit on the expensive side considering the fact that I don&#8217;t get any revenue out of it. Nevertheless I didnt want to bring it down either. The number of visitors to the site was always on the rise and I felt that people enjoy the service.<br />
So I was looking for an alternative hosting solution (a <a href="http://en.wikipedia.org/wiki/Virtual_private_server" target="_blank">VDS</a> ofcourse). I came across another solution provider <a href="http://www.prgmr.com" target="_blank">prgmr.com</a> who provided the same solution at 40% of the price.That was pretty cool. And their tag <i>We don&#8217;t assume you are stupid</i> means you are on your own once you are given your slice. Though the same applies to slicehost, they have a pretty good console that helps you out in setting up your slice unlike prgmr.com. Rightly so they dont assume you are stupid.<br />
I was successfully able to set it up, was able to setup the environment, bring the server up and migrate the data. But unfortunately couldn&#8217;t access the service outside the server, blame it on iptables, had to shut it down and then bingo&#8230; Xpressmark back to life in a brand new server (Yes, Luke and his team were in the process of configuring the box and the links to buy the slice werent even made public and I was lucky to get the slice pretty quickly after shooting a mail to them). I will post my experience with prgmr.com in the coming days. Hope it will be as good as slicehost.</p>
<br />Posted in agile  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=147&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2009/11/26/xpressmark-setting-it-up-on-prgmr-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>126: The specified module could not be found &#8211; ../mysql.so</title>
		<link>http://prabhub.wordpress.com/2009/09/29/126-the-specified-module-could-not-be-found-mysql-so/</link>
		<comments>http://prabhub.wordpress.com/2009/09/29/126-the-specified-module-could-not-be-found-mysql-so/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 17:46:50 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/2009/09/29/126-the-specified-module-could-not-be-found-mysql-so/</guid>
		<description><![CDATA[I was trying my hands for the first time on RoR (Ruby on Rails). (Netbeans 6.7 , Windows XP). In the process, I got the following (misleading error) 126: The specified module could not be found &#8211; ../mysql_api.so But mysql_api.so was in the path where ruby was looking for. Solution: Make sure your MySql bin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=145&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was trying my hands for the first time on RoR (Ruby on Rails).<br />
(Netbeans 6.7 , Windows XP).</p>
<p>In the process, I got the following (misleading error) </p>
<blockquote><p>
126: The specified module could not be found &#8211; ../mysql_api.so
</p></blockquote>
<p>But mysql_api.so was in the path where ruby was looking for.<br />
<b>Solution:</b><br />
Make sure your MySql bin path is in your PATH variable.</p>
<br />Posted in agile Tagged: mysql, rails <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=145&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2009/09/29/126-the-specified-module-could-not-be-found-mysql-so/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>AVAudioRecorder &#8211; iPhone Audio Recording</title>
		<link>http://prabhub.wordpress.com/2009/09/23/avaudiorecorder-iphone-audio-recording/</link>
		<comments>http://prabhub.wordpress.com/2009/09/23/avaudiorecorder-iphone-audio-recording/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 17:30:13 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/?p=140</guid>
		<description><![CDATA[I have been using the AVAudioRecorder class to record the audio. But it wasnt allowing me to play it back. I had to restart the application to play it. I had to toil hard with it for a few hours before I found the culprit. Thanks to this link. The problem was in my AVAudioSession [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=140&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been using the AVAudioRecorder class to record the audio. But it wasnt allowing me to play it back. I had to restart the application to play it. I had to toil hard with it for a few hours before I found the culprit.</p>
<p>Thanks to <a href="http://www.gentswithbeards.com/2009/06/avaudiorecorder-record-returns-no.html" target="_blank">this link</a>. The problem was in my AVAudioSession Category which was set to <em>AVAudioSessionCategoryRecord</em> while it should have been <em>AVAudioSessionCategoryPlayAndRecord</em>.</p>
<br />Posted in iPhone  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=140&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2009/09/23/avaudiorecorder-iphone-audio-recording/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>Link of the day: Pomegranate</title>
		<link>http://prabhub.wordpress.com/2009/08/27/link-of-the-day-pomegranate/</link>
		<comments>http://prabhub.wordpress.com/2009/08/27/link-of-the-day-pomegranate/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 07:07:10 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[link of the day]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/2009/08/27/link-of-the-day-pomegranate/</guid>
		<description><![CDATA[Pomegranate &#124; NS08 &#8211; The Phone that has it all Posted in link of the day<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=138&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pomegranatephone.com/">Pomegranate | NS08 &#8211; The Phone that has it all</a></p>
<br />Posted in link of the day  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=138&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2009/08/27/link-of-the-day-pomegranate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>Link of the day: Air traffic in 24 hours</title>
		<link>http://prabhub.wordpress.com/2009/08/16/link-of-the-day-air-traffic-in-24-hours/</link>
		<comments>http://prabhub.wordpress.com/2009/08/16/link-of-the-day-air-traffic-in-24-hours/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 11:09:50 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[link of the day]]></category>
		<category><![CDATA[airtraffic]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/2009/08/16/link-of-the-day-air-traffic-in-24-hours/</guid>
		<description><![CDATA[Air traffic in 24 hours Posted in link of the day Tagged: airtraffic<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=137&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.inference.phy.cam.ac.uk/sustainable/images/at/">Air traffic in 24 hours</a></p>
<br />Posted in link of the day Tagged: airtraffic <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=137&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2009/08/16/link-of-the-day-air-traffic-in-24-hours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
		<item>
		<title>Link of the day: Four Perfectly Round Circles</title>
		<link>http://prabhub.wordpress.com/2009/08/14/link-of-the-day-four-perfectly-round-circles/</link>
		<comments>http://prabhub.wordpress.com/2009/08/14/link-of-the-day-four-perfectly-round-circles/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 06:33:56 +0000</pubDate>
		<dc:creator>Prabhu Beeman</dc:creator>
				<category><![CDATA[link of the day]]></category>
		<category><![CDATA[illusion]]></category>

		<guid isPermaLink="false">http://prabhub.wordpress.com/2009/08/14/link-of-the-day-four-perfectly-round-circles/</guid>
		<description><![CDATA[Four Perfectly Round Circles &#8211; Neatorama Posted in link of the day Tagged: illusion<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=133&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neatorama.com/2009/08/11/four-perfectly-round-circles/">Four Perfectly Round Circles &#8211; Neatorama</a></p>
<br />Posted in link of the day Tagged: illusion <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prabhub.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prabhub.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prabhub.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prabhub.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prabhub.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prabhub.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prabhub.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prabhub.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prabhub.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prabhub.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prabhub.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prabhub.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prabhub.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prabhub.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prabhub.wordpress.com&amp;blog=4257756&amp;post=133&amp;subd=prabhub&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prabhub.wordpress.com/2009/08/14/link-of-the-day-four-perfectly-round-circles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Prabhu Beeman</media:title>
		</media:content>
	</item>
	</channel>
</rss>
