<?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/"
	>

<channel>
	<title>Neev Technologies</title>
	<atom:link href="http://neevtech.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://neevtech.com/blog</link>
	<description>Engage Execute Enable</description>
	<pubDate>Mon, 15 Jun 2009 06:37:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>FaceBooker xd_receiver path</title>
		<link>http://neevtech.com/blog/2009/06/13/facebooker-xd-receiver-path/</link>
		<comments>http://neevtech.com/blog/2009/06/13/facebooker-xd-receiver-path/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 17:28:34 +0000</pubDate>
		<dc:creator>spvijay</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Facebook apps]]></category>

		<category><![CDATA[FBConnect]]></category>

		<category><![CDATA[social apps]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=61</guid>
		<description><![CDATA[A team back here is buiding an application with FBConnect using Facebooker plugin. After successfully authentication from FB, this plugin expects xd_receiver.html (for taking care of cross domain issues)  in the same path where the current url is.
We have this file under / as www.domain.com/xd_receiver.html and hence login url for FBConnect from the homepage would [...]]]></description>
			<content:encoded><![CDATA[<p>A team back here is buiding an application with FBConnect using Facebooker plugin. After successfully authentication from FB, this plugin expects xd_receiver.html (for taking care of cross domain issues)  in the same path where the current url is.</p>
<p>We have this file under / as www.domain.com/xd_receiver.html and hence login url for FBConnect from the homepage would work fine. The app also has a FBConnect button from /xyz page and this would fail as Facebooker was looking for xd_receiver.html at www.domain.com/xyz/.</p>
<p>We tried in vain to make this an absolute URL by modifying the init_string in the file fb_connect.rb. As a workaround, we have currently we have copied the same file in two places and the app is up and running with FBConnect.</p>
<p>Has anyone faced this before? Is there a better solution?</p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/06/13/facebooker-xd-receiver-path/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazing Amazon EC2.</title>
		<link>http://neevtech.com/blog/2009/06/10/amazing-amazon-ec2/</link>
		<comments>http://neevtech.com/blog/2009/06/10/amazing-amazon-ec2/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 02:45:55 +0000</pubDate>
		<dc:creator>spvijay</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[amazon ec2]]></category>

		<category><![CDATA[aws]]></category>

		<category><![CDATA[cloud computing]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=59</guid>
		<description><![CDATA[Amazing Amazon EC2..
We badly needed a new server for a demo and our existing  server had some issues. Could get a Win2003 server in flat 10 minutes at 4 AM IST. Just cannot imagine such a QoS with traditional data centers.
&#8220;Jai Ho&#8221; to the power of cloud computing and to Amazon for making it [...]]]></description>
			<content:encoded><![CDATA[<p>Amazing Amazon EC2..<br />
We badly needed a new server for a demo and our existing  server had some issues. Could get a Win2003 server in flat 10 minutes at 4 AM IST. Just cannot imagine such a QoS with traditional data centers.<br />
&#8220;Jai Ho&#8221; to the power of cloud computing and to Amazon for making it so easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/06/10/amazing-amazon-ec2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Apache Tomcat OutOfMemory Exceptions - HeapSpace, PermGen Space</title>
		<link>http://neevtech.com/blog/2009/06/07/apache-tomcat-outofmemory-heapspace-and-permgen-space-error/</link>
		<comments>http://neevtech.com/blog/2009/06/07/apache-tomcat-outofmemory-heapspace-and-permgen-space-error/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 13:36:44 +0000</pubDate>
		<dc:creator>spvijay</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=49</guid>
		<description><![CDATA[Came across an interesting problem and noticed that we usually treat all “tomcat OutOfMemory” issues by just adding the java xms &#38; xmx options. This may not be right solution as this just increases the JVM heap space and hence would take care of the exception which is related heap space i.e.  Exception in thread [...]]]></description>
			<content:encoded><![CDATA[<p>Came across an interesting problem and noticed that we usually treat all “tomcat OutOfMemory” issues by just adding the java xms &amp; xmx options. This may not be right solution as this just increases the JVM heap space and hence would take care of the exception which is related heap space i.e.  Exception in thread &#8220;main&#8221; java.lang.OutOfMemoryError: Java heap space.</p>
<p>For the exception related to permGen i.e. java.lang.OutOfMemoryError: PermGen space, need to add one more option in JAVA_OPTS called MaxPermSize.</p>
<p>After adding all these options, here is what the entry for JAVA_OPTS looks like in the catalina.sh file.</p>
<p>export JAVA_OPTS=&#8221;-server -Xms1024m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m $JAVA_OPTS&#8221;.</p>
<p>Each of these otions are explained below.<br />
•    Server - Run the tomcat in server mode. (the default is developer mode)<br />
•    Xms - Minimum java heap space<br />
•    Xmx - Maximum java heap space. While running on dedicated servers for production instances, keep both these options the same to ensure better utilization of available memory.<br />
•    PermSize - The initial permSize. (default is 64MB)<br />
•    Max PermSize - The maxPermSize. (even here, it may be a good idea to keep the intial and the max value the same).</p>
<p>More information relate to OutOfMemory exceptions can can be found in the following articles.<br />
•    <a href="http://www.freshblurbs.com/explaining-java-lang-outofmemoryerror-permgen-space" target="_blank">http://www.freshblurbs.com/explaining-java-lang-outofmemoryerror-permgen-space</a><br />
•    <a href="http://raibledesigns.com/rd/entry/how_do_you_determine_a" target="_blank">http://raibledesigns.com/rd/entry/how_do_you_determine_a</a></p>
<p>Some interesting discussions and articles relates to tomcat performance can be found at<br />
•    <a href="http://tomcat.apache.org/tomcat-5.5-doc/jasper-howto.html#Production%20Configuration" target="_blank">http://tomcat.apache.org/tomcat-5.5-doc/jasper-howto.html#Production%20Configuration</a><br />
•    <a href="http://wiki.apache.org/tomcat/FAQ/Performance_and_Monitoring" target="_blank">http://wiki.apache.org/tomcat/FAQ/Performance_and_Monitoring</a><br />
•    <a href="http://kinetic.more.net/web/javaserver/resources/wpapers/performance.shtml" target="_blank">http://kinetic.more.net/web/javaserver/resources/wpapers/performance.shtml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/06/07/apache-tomcat-outofmemory-heapspace-and-permgen-space-error/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What&#8217;s in the name?</title>
		<link>http://neevtech.com/blog/2009/03/25/whats-in-the-name/</link>
		<comments>http://neevtech.com/blog/2009/03/25/whats-in-the-name/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 15:26:00 +0000</pubDate>
		<dc:creator>kshaikh</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[linkedin]]></category>

		<category><![CDATA[naming conventions]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=33</guid>
		<description><![CDATA[Names used inside code have to be meaningful.]]></description>
			<content:encoded><![CDATA[<p>This may be true when naming humans and many other things but when developing software names used inside the code are very important. While developing software, what names you give to entities (classes, methods, variables, files, etc) inside your code have a big impact on how easy it is to deal with the program during development and later during maintenance, by yourself and other team members.</p>
<p>We mostly use a person&#8217;s name to associate a label to a face.  A person&#8217;s name may have a meaning but it does not tell anything about the person. As opposed to this, names used inside software program are expected to be meaningful and serve as an indicator of what the entities represent or are expected to do.<br />
e.g.</p>
<ul>
<li>An object of instance Customer should be better named as a <em>customer</em> rather than <em>object</em></li>
<li>A method which is computing a total may be better named <em>computeTotal</em> or <em>getTotal</em> rather than some thing as strange as doTheStuff.</li>
<li>An customerId argument passed to a method should be better named as <em>customerId </em>rather than just <em>id </em>so that when someone looks at the method signature the argument meaning is clear</li>
</ul>
<p>Looking at some one else&#8217;s code, or even looking at one&#8217;s own code after a long time, is a pain. In addition to that if the proper names are not used it becomes irritating and difficult to work with.</p>
<p>Names used in a program should almost always fall into 2 categories</p>
<ol>
<li><span style="text-decoration: underline;">Noun</span>: These are used to represent some concept that is modeled in the system.<br />
e.g <em>Customer, Order, Bank Account, etc</em></li>
<li><span style="text-decoration: underline;">Verb</span>: These are used generally to name functions, methods, procedures, actions.<br />
e.g <em>register(), calculateTotal(), copy(), delete()</em></p>
<p>There are some exceptions like <em>Collection.size(), StringUtils.defaultString(),</em> etc but its still better to stick to the convention of using verbs to describe methods, functions, procedures.</li>
</ol>
<p>Names should be explanatory but at the same time overly long names should be avoided<br />
e.g. <em>registerUserSendMailAndSubscribeToNewsletter()</em></p>
<p>Correct names should be used from the start and not left as a TODO exercise.  Correcting names in a program later on is a difficult task as there may be dependencies  involved and this also needs further testing to be done. Also once a software is running fine no one is interested in doing this unless its a <em>paid</em> effort or is mandated by someone.</p>
<p>Last but not least, names must not have spelling mistakes.</p>
<p>So next time you are coding think before naming anything and <em>not </em>use the first name that comes to your mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/03/25/whats-in-the-name/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Client FAQs</title>
		<link>http://neevtech.com/blog/2009/03/23/client-faqs/</link>
		<comments>http://neevtech.com/blog/2009/03/23/client-faqs/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 11:31:05 +0000</pubDate>
		<dc:creator>Santo</dc:creator>
		
		<category><![CDATA[Info]]></category>

		<category><![CDATA[agile]]></category>

		<category><![CDATA[contract]]></category>

		<category><![CDATA[engagement]]></category>

		<category><![CDATA[FAQ]]></category>

		<category><![CDATA[Fix bid]]></category>

		<category><![CDATA[FTE]]></category>

		<category><![CDATA[Software Service Providers]]></category>

		<category><![CDATA[startups]]></category>

		<category><![CDATA[T&M]]></category>

		<category><![CDATA[VCs]]></category>

		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=17</guid>
		<description><![CDATA[Just collating some of the questions that are asked to us by our potential clients.
ENGAGEMENT MODELS
Do you have or are willing to have the following engagement model

One where your team works at our development site? (ONSITE)

Yes
One where our team member works at your development site? (Your Office)

We are open to this but have never done [...]]]></description>
			<content:encoded><![CDATA[<p>Just collating some of the questions that are asked to us by our potential clients.</p>
<p><span style="text-decoration: underline;"><strong>ENGAGEMENT MODELS</strong></span></p>
<p>Do you have or are willing to have the following engagement model</p>
<ul></ul>
<p><strong><em>One where your team works at our development site? (ONSITE)</em></strong></p>
<ul></ul>
<p>Yes</p>
<p><strong><em>One where our team member works at your development site? (Your Office)</em></strong></p>
<ul></ul>
<p>We are open to this but have never done this on a long term basis. Its usually been for a week or two max                            especially in the initial stages. This scenario has never arisen so far and we are surely open where there is a part overlap on both sides.</p>
<p><strong><em>One where our team is on our site and your team on yours? (OFFSHORE)</em></strong></p>
<ul></ul>
<p>Yes</p>
<p><span style="text-decoration: underline;"><strong>DEV CENTRE LOCATIONS</strong></span></p>
<p><strong><em>Which cities are your development centres in?</em></strong></p>
<ul></ul>
<p>We have only one development center in Bangalore, India</p>
<p><span style="text-decoration: underline;"><strong>PRICING MODELS</strong></span></p>
<p>Do you have or are willing to have the following pricing model:</p>
<p><strong><em>Fixed Bid?</em></strong></p>
<ul></ul>
<p>Yes</p>
<p><strong><em>T &amp; M?</em></strong></p>
<ul></ul>
<p>Yes</p>
<p><strong><em>FTE?</em></strong></p>
<ul></ul>
<p>Yes. We are comfortable with all the three pricing models above. In out case, T&amp;M and FTE work almost the              same as we put a mutually agreed cap on the max hours per month that can be billed though the actual hours              can be more as per the project demands.</p>
<p><strong><em>Are you open to discussing the possibility of partnering with us to a certain extent where a percentage of the stake of our company is given to you in exchange for a reduced pricing? </em></strong></p>
<ul></ul>
<p>Yes.</p>
<p><strong><em>What are the additional taxes levied on billings on an 	Indian company?</em></strong></p>
<ul></ul>
<p>Currently for any software provided &amp; invoiced to a company to India, 10% service tax is applicable. This is liable to change based on government policy.</p>
<p><strong><em>What are the additional taxes levied on billings on an 	US company?</em></strong></p>
<ul></ul>
<p>None</p>
<p><strong><em>How are payments to you, settled?	Before contract start / Monthly / End of month / End of contract? (Please furnish as much detail as relevant)</em></strong></p>
<ul></ul>
<p>For fixed bids, its milestone based. For FTE &amp; T&amp;M, its usually on a monthly basis.</p>
<p><span style="text-decoration: underline;"><strong>TEAM MANAGEMENT</strong></span></p>
<p>Which of the following elements of team selection and management can we exercise control over? <em><strong></strong></em></p>
<p><em><strong>From candidates recommended by you, can we select our own team after looking at their CVs and after having personal and technical interviews?</strong></em><em> </em></p>
<ul></ul>
<p>We usually like to get into projects where we take the ownership of the delivery. Hence based on the project              tech stack and focus we would suggest a team of optimal skill sets to you. We will share the CVs of the best team              as suggested by us. However if the client insists on having more candidates to choose from and also are willing              to accommodate an interaction with the client. i.e. we do not encourage a sort of recruitment kind of process              from the clients side rather would like to make it a selection process with the initial level of screeing done by us.</p>
<p><strong><em>From the team selected by us, can we let those go who are not performing up to our standards giving a 15-day notice to you? And in such an eventuality, would you be providing for replacement candidates within those 15 days?</em></strong></p>
<ul></ul>
<p>We have stringent hiring standards (recruit laterally from the Top companies in India IT and also from the best              institutes in India for freshers) and good post-recruitment trainings. We also do project based trainings as                           required. Hence most people are fully equipped to handle the project work. We have a continously running              performance review process to identify these cases. Non-performers are put on PIP (performace improvement              plan) and more often than not, they are back on track. In any case, your feedback on performance would be              taken seriously and acted upon.</p>
<p><strong><em>Do you have any clauses in your terms that disallow you from taking back team members from the ones selected by us, as long as we continue to pay for them?</em></strong></p>
<ul></ul>
<p>We would be surely interested in continuing the same team.  As a team we would ensure delivery and continued              quality output which is the key part of a project. <em><strong></strong></em></p>
<p><em><strong>Will we have access to other personnel on your team that have certain expertise relevant to us so that we can ask them for advice / guidance in their respective area of expertise?</strong></em><em> </em></p>
<ul></ul>
<p>Yes. Internally there is a great deal of knowledge sharing that happens amongst various functions/teams. Based              on your requirement, we can definitely get people with other skill sets on the project as required. i.e. our whole              pool of tech and managerial talent is available for our clients on a need basis</p>
<p><strong><em>Do you have or are willing to have a model where the team members selected by us have the option of joining us full time at a later date?</em></strong></p>
<ul></ul>
<p>We have not faced with this choice before. However we can always evaluate the same when the situation arises              and are flexible to arrive at an agreement to the effect that it benefits all three parties i.e. our employee , our              client and us.</p>
<p><span style="text-decoration: underline;"><strong>TECHNICAL SKILL SET</strong></span></p>
<p>What other additional technical skill sets besides the ones on our site do you offer to us?</p>
<p><strong><em>Do you offer UI design for usability and studies with real target user forums and other allied services?<br />
</em></strong></p>
<ul></ul>
<p>We have  resources with a good UI/UE skill set but have never done usability studies with target groups. We              have expereince in working with consultants (hired by our clients) who have taken the onus of defining and              designing the study and then we have successfully impemented the technical end of the same. e.g.In one of the              project that we were involved with, the client is working with another vendor who offered this competency and              we were all closely working integrating the feedback.</p>
<p><em><strong>Do you have </strong></em><strong><em>experience in either designing or developing APIs for clients especially Web Service APIs?<br />
</em></strong></p>
<ul></ul>
<p>Yes. A host of the applications developed by us have web services APIs exposed. E.g. for an auction portal in              Germany we have designed , developed and deployed more than 100 + Apis for integration with iPhone Apps,              After sales third party software, third party Lister tools. We have even done Web Services Apis for a ticket              booking portal and a insurance company in India</p>
<p><strong>Do you offer Performance Engineering services i.e. understanding performance requirements of system (like response time, etc.) under given conditions (like traffic, etc.), ensuring that such requirements are met reliably and that the system scales up to changing environmental conditions (like changing peak traffic, etc.)?</strong></p>
<ul></ul>
<p>Perf engineering is under the QA team and we have engineers who measure the response time under various              load conditions. We have done PSR testing &amp; analysis in many of earlier projects either as a part of our                           deliverable or even as a separate activity as the product / application was developed by some one else. <em><strong></strong></em></p>
<p><em><strong>Do you offer Quality assurance as a competency(setup and maintain infrastructure for testing and quality assurance) and also plan and execute unit, integration and system tests?</strong></em><em> </em></p>
<ul></ul>
<p>Test automation is one of our strengths and we do use Junit and Selenium. Attached is a presentation which              explains the entire gamut of QA/QE services that we offer.</p>
<p><strong><em>Do you h</em></strong><strong><em>elp the client with hosting and maintenance of system infrastructure for production, test and live deployment?</em></strong></p>
<ul></ul>
<p>Our Operations team offers deployment and maintenance support. We are currently monitoring and                           maintaining applications developed by us for some of our clients.We do not host but can suggest some reliable              providers. Also we are very comfortable in getting the applications running on cloud infrastructures. (eg: ec2,              go grid, joyent)</p>
<p><span style="text-decoration: underline;"><strong>BUSINESS SKILL SET</strong></span></p>
<p>What business skill sets do you offer to us? <em><strong></strong></em></p>
<p><em><strong>Do you have services on offer to manage legal frameworks of markets, filing for Trade Marks and most importantly, for understanding and managing copyrights since this is a content driven product? - especially factoring elements of copyright management and security against plagiarism into the product?</strong></em><em> </em></p>
<ul></ul>
<p>We have a basic understanding of this but not a competency to offer as a service. We do have links to the                           appropriate people in our network in India (especially in Bangalore) and would be happy to introduce you to              them.</p>
<p><strong><em>Will you be able to offer services to help us with acquiring next stage funding when we are ready for the same?</em></strong></p>
<ul></ul>
<p>We do interact with some VCs (mostly based out of India) and can put you in touch with them.</p>
<p><strong><em>What other special services / infrastructure do you have on offer early stage startups like ours?</em></strong></p>
<ul></ul>
<p>Over years we have worked with more than 20 startups(funded , Pre Funded, angel Funded etc) hence we have              gained perspective over the push and pulls that a start up undergoes in terms of work priorities and                                        deliverables , hence we have uniquely placed ourselves to be flexible with the same, you would find our whole              engagement model tailored to the same. We use agile development there by adding a huge flexibility in release              cycles, team size and also feature sets.</p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/03/23/client-faqs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Neev Technologies featured in Pluggd.in</title>
		<link>http://neevtech.com/blog/2009/03/23/neev-technologies-featured-in-pluggdin/</link>
		<comments>http://neevtech.com/blog/2009/03/23/neev-technologies-featured-in-pluggdin/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 05:50:58 +0000</pubDate>
		<dc:creator>Santo</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[India]]></category>

		<category><![CDATA[Software Service Providers]]></category>

		<category><![CDATA[start ups]]></category>

		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=15</guid>
		<description><![CDATA[Neev was featured recently in Pluggd.in in a post that provided information about Software Development companies that work with start ups
Please find the post here

http://www.pluggd.in/indian-startups/elearning-development-and-marketing-companies-3765/
]]></description>
			<content:encoded><![CDATA[<p>Neev was featured recently in <a href="http://www.pluggd.in">Pluggd.in</a> in a post that provided information about Software Development companies that work with start ups</p>
<p>Please find the post here<br />
<a href="http://www.pluggd.in/indian-startups/elearning-development-and-marketing-companies-3765/"><br />
http://www.pluggd.in/indian-startups/elearning-development-and-marketing-companies-3765/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/03/23/neev-technologies-featured-in-pluggdin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Neev at CeBIT 09</title>
		<link>http://neevtech.com/blog/2009/03/20/neev-at-cebit-09/</link>
		<comments>http://neevtech.com/blog/2009/03/20/neev-at-cebit-09/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 09:35:10 +0000</pubDate>
		<dc:creator>Santo</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[CeBIT 09]]></category>

		<category><![CDATA[Event]]></category>

		<category><![CDATA[Germany]]></category>

		<category><![CDATA[Hannover]]></category>

		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=10</guid>
		<description><![CDATA[Neev had recently participated as an exhibitor at CeBIT 09. Here are some pictures of our stand at the event
We received a great response for the event and are now in the process of closing business from the leads that were generated at the event.
]]></description>
			<content:encoded><![CDATA[<p>Neev had recently participated as an exhibitor at CeBIT 09. Here are some pictures of our stand at the event</p>

<a href='http://neevtech.com/blog/2009/03/20/neev-at-cebit-09/pb180027/' title='pb180027'><img src="http://neevtech.com/blog/wp-content/uploads/2009/03/pb180027-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://neevtech.com/blog/2009/03/20/neev-at-cebit-09/pb180028/' title='pb180028'><img src="http://neevtech.com/blog/wp-content/uploads/2009/03/pb180028-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://neevtech.com/blog/2009/03/20/neev-at-cebit-09/pb180030/' title='pb180030'><img src="http://neevtech.com/blog/wp-content/uploads/2009/03/pb180030-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>

<p>We received a great response for the event and are now in the process of closing business from the leads that were generated at the event.</p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/03/20/neev-at-cebit-09/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cloud Computing at Neev</title>
		<link>http://neevtech.com/blog/2009/03/20/cloud-computing-at-neev/</link>
		<comments>http://neevtech.com/blog/2009/03/20/cloud-computing-at-neev/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 09:01:41 +0000</pubDate>
		<dc:creator>Santo</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[amazon]]></category>

		<category><![CDATA[CeBIT]]></category>

		<category><![CDATA[cloud computing]]></category>

		<category><![CDATA[decho]]></category>

		<category><![CDATA[EC2]]></category>

		<category><![CDATA[GoGrid]]></category>

		<category><![CDATA[Google App Engine]]></category>

		<category><![CDATA[joyent]]></category>

		<category><![CDATA[pi]]></category>

		<category><![CDATA[S3]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=6</guid>
		<description><![CDATA[There has been an upsurge in the work engagements that we are doing at Neev that are based on various Cloud computing platforms that are now available in the market.
Saurabh and Me had previously worked at Pi now decho where we were one of the select initial Beta testers for the Amazon S3 platform  [...]]]></description>
			<content:encoded><![CDATA[<p>There has been an upsurge in the work engagements that we are doing at Neev that are based on various Cloud computing platforms that are now available in the market.</p>
<p><a href="http://www.linkedin.com/in/saurabhchandra">Saurabh</a> and <a href="http://www.linkedin.com/in/santoshshetty">Me </a>had previously worked at Pi now <a href="http://www.decho.com">decho </a>where we were one of the select initial Beta testers for the Amazon <a href="http://aws.amazon.com/s3/">S3 </a>platform  so have been hooked on to the cloud/utility computing bandwagon ever since.</p>
<p>In one of our projects we shifted <a href="http://www.ninemotion.com">Ninemotion </a>to a Amazon <a href="http://aws.amazon.com/ec2/">EC2</a>+S3 infrastructure since we had anticipated and got large loads and usage.</p>
<p>We are currently working with a startup which is looking at building software that will help optimise and manage Cloud infrastucture for heavy users of the same. This project has given us great knowledge and perspective on how to leverage the cloud infrastucture optimally for a variety of installations. e.g. while writing the test harness of the same we have tested(and stressed) various J2EE applications on range of Application Servers(various versions) such as WebLogic, WebSphere, Glassfish, Tomcat etc</p>
<p>Some other Cloud/Utility computing platforms other than Amazon EC2 , S3 that we have worked with are</p>
<ul>
<li><a href="http://www.gogrid.com/">GoGrid </a></li>
<li><a href="http://joyent.com/">Joyent </a></li>
<li><a href="http://code.google.com/appengine/">GoogleAppEngine </a></li>
</ul>
<p>During <a href="http://www.cebit.de/homepage_e">CeBIT 09</a> in Germany where we participated as an <a href="http://www.cebit.de/eps09_pages_en?srchopts=ZGH5ZwZjBGD1ZGcypaMapzH9ZFM2pG0lZQN2BGL5AGbkZwZ3AGZ5ZQRj">exhibitor </a>we had a lot of enquiries specifically for the services that we offer in this space.</p>
<p>We are sure that the value proposition that cloud/utility computing offers will surely lead to more and more corporates and clients switching to this as a preferred mode of deployment.</p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/03/20/cloud-computing-at-neev/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Memory Plus and iPhone based development at Neev</title>
		<link>http://neevtech.com/blog/2009/03/20/memory-plus-and-iphone-based-development-at-neev/</link>
		<comments>http://neevtech.com/blog/2009/03/20/memory-plus-and-iphone-based-development-at-neev/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 08:14:00 +0000</pubDate>
		<dc:creator>Santo</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[api integration]]></category>

		<category><![CDATA[App Store]]></category>

		<category><![CDATA[Apple]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[downloads]]></category>

		<category><![CDATA[google maps]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://neevtech.com/blog/?p=3</guid>
		<description><![CDATA[&#8220;Memory Plus&#8221; Neev&#8217;s first iPhone app - is now at #4 in the Education Section and #22 in the Puzzles Section on the Apple App Store.The application has had 9k+ downloads all over the world.
This is Neev&#8217;s first application that is available for download through the App Store and is the culmination of a lot [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;<a href="http://www.neevtech.com/neev/wcms/en/home/iphone/memory-plus/index.html">Memory Plus</a>&#8221; Neev&#8217;s first iPhone app - is now at #4 in the Education Section and #22 in the Puzzles Section on the Apple App Store.The application has had 9k+ downloads all over the world.</p>
<p>This is Neev&#8217;s first application that is available for download through the App Store and is the culmination of a lot of hard work put in by our in house iPhone Development team over the past year. We now plan to put up an App every 3-4 weeks into the App Store.</p>
<p>Some of the other interesting work that we have done for our clients  as project engagements are</p>
<p><strong>Auction Client</strong> - This was done for an auction portal in Germany. A User can view all the articles that are belonging to various categories in the client&#8217;s home page display and bookmark them , add them to his watchlist or even login and Bid and Buy them. The project involved integration with web services on the back end and uses all the iPhone / iPod touch usability features to the maximum to provide a great user experience.</p>
<p><strong>Expense Management Tool</strong> - this was done for a start up in California , USA.  Here a Sales person could jot down the expenses incurred on a sales visit / meeting with location based data being provided by a Google Map integration done by us. The expense data was then sent to the back end and collated and calculated appropriately.</p>
]]></content:encoded>
			<wfw:commentRss>http://neevtech.com/blog/2009/03/20/memory-plus-and-iphone-based-development-at-neev/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
