<?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>Official Blog of G</title>
	<atom:link href="http://vtrip.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vtrip.wordpress.com</link>
	<description>Started off as a technical update blog, became more and more social...</description>
	<lastBuildDate>Sat, 11 Jun 2011 23:17:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vtrip.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Official Blog of G</title>
		<link>http://vtrip.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vtrip.wordpress.com/osd.xml" title="Official Blog of G" />
	<atom:link rel='hub' href='http://vtrip.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Two uses of using keyword in C#</title>
		<link>http://vtrip.wordpress.com/2009/01/22/two-uses-of-using-keyword-in-c/</link>
		<comments>http://vtrip.wordpress.com/2009/01/22/two-uses-of-using-keyword-in-c/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 15:07:36 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[Global]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[C# interview questions]]></category>
		<category><![CDATA[two uses of using keyword]]></category>
		<category><![CDATA[using keyword in C#]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/2009/01/22/two-uses-of-using-keyword-in-c/</guid>
		<description><![CDATA[Most of the C# interviewers will attempt to ask this question: What are the uses of using keyword? There are two uses of using keyword in C# 1) Using as Directive in C# can be used for importing namespaces to your classes. Everybody knows this. 2)Another most useful advantage is it can be used in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=104&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most of the C# interviewers will attempt to ask this question:</p>
<p><strong>What are the uses of using keyword?</strong></p>
<p><strong>There are two uses of using keyword in C#</strong></p>
<p>1) Using as Directive in C# can be used for importing namespaces to your classes. Everybody knows this.</p>
<p>2)Another most useful advantage is it can be used in codeblocks <strong>what is does is it calls the Dispose() method automatically to release the resources and also automatically implements the try catch blocks for you.Here it is called a using statement.</strong>So the advantage is that we dont have to explicitly write a try-catch block and our code looks small.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=104&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2009/01/22/two-uses-of-using-keyword-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
		<item>
		<title>What is the definition behind atoi()?</title>
		<link>http://vtrip.wordpress.com/2009/01/12/what-is-the-definition-behind-atoi/</link>
		<comments>http://vtrip.wordpress.com/2009/01/12/what-is-the-definition-behind-atoi/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 02:07:45 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[Global]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[atoi()]]></category>
		<category><![CDATA[atoi() function definition]]></category>
		<category><![CDATA[code behind atoi()]]></category>
		<category><![CDATA[logic of atoi()]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=101</guid>
		<description><![CDATA[Here is the C# code for the definition of atoi() static int atoi(string str) { int sign=1; int Number=0; int tmp=0; int x=0; int l=(str.Length)-1; char[] c=str.ToCharArray(); if ('-'==c[0]) { sign=-1; x=1; } for(;x ='0')&#38;&#38;(c[x]&#60;='9')) { //0 is the 0 index tmp=(c[x]-'0'); //simply multiply the number by 10 and add it Number=Number*10 + tmp; } [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=101&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is the C# code for the definition of atoi()<br />
<code><br />
static int atoi(string str)<br />
{<br />
int sign=1;<br />
int Number=0;<br />
int tmp=0;<br />
int x=0;<br />
int l=(str.Length)-1;<br />
char[] c=str.ToCharArray();<br />
if ('-'==c[0])<br />
{<br />
sign=-1;<br />
x=1;<br />
}<br />
for(;x ='0')&amp;&amp;(c[x]&lt;='9'))<br />
{	</p>
<p>//0 is the 0 index<br />
tmp=(c[x]-'0');</p>
<p>//simply multiply the number by 10 and add it<br />
Number=Number*10 + tmp;<br />
}<br />
}<br />
return Number*sign;<br />
}<br />
</code><br />
Just for fun!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=101&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2009/01/12/what-is-the-definition-behind-atoi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
		<item>
		<title>C# Function Parameter Passing by Reference in Detail</title>
		<link>http://vtrip.wordpress.com/2008/12/17/c-default-passing-by-reference-in-detail/</link>
		<comments>http://vtrip.wordpress.com/2008/12/17/c-default-passing-by-reference-in-detail/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 20:46:08 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[Global]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[C# function parameter passing]]></category>
		<category><![CDATA[C# function parameter passing by reference]]></category>
		<category><![CDATA[C# programming basics]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[object references pass by value]]></category>
		<category><![CDATA[objects pass by reference]]></category>
		<category><![CDATA[struct]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=93</guid>
		<description><![CDATA[Here are is a simple test to play with the function parameter passing in C#. As you guys know int, float, char, enum and struct are value types and class is a reference type. In case of C#, lot people think objects are passed by reference to a function, but the reality is object references [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=93&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here are is a simple test to play with the function parameter passing in C#.</p>
<p>As you guys know int, float, char, enum and struct are value types and class is a reference type.</p>
<p>In case of C#, lot people think objects are passed by reference to a function, but the reality is object references are passed by value.</p>
<p>How to prove it? Here is the code. Analysis of the code is below so keep reading&#8230;.</p>
<p><code><br />
using System;</p>
<p>namespace APP1<br />
{<br />
    class Program<br />
    {<br />
        static void Main(string[] args)<br />
        {<br />
            Program Test = new Program();</p>
<p>            Int first = new Int();<br />
            first.i = 6;<br />
            Int second = first;<br />
            Test.change(ref second);<br />
            Console.WriteLine("first: " + first.i);<br />
            Console.WriteLine("second: " + second.i);</p>
<p>            CInt cfirst = new CInt();<br />
            cfirst.i = 6;<br />
            CInt csecond = cfirst;<br />
            Test.change(ref csecond);<br />
            Console.WriteLine("cfirst: " + cfirst.i);<br />
            Console.WriteLine("csecond: " + csecond.i);</p>
<p>            Console.Read();<br />
        }</p>
<p>        void change(ref Int param)<br />
        {<br />
            param= new Int();<br />
        }</p>
<p>        void change(ref CInt param)<br />
        {<br />
            param = new CInt();<br />
        }</p>
<p>    }</p>
<p>    public class CInt<br />
    {<br />
        public int i;<br />
    }</p>
<p>    public struct Int<br />
    {<br />
        public int i;<br />
    }<br />
}<br />
</code></p>
<p>Here I have a struct Int and a class CInt.</p>
<p>First lets look at the Int struct object and the Change function:</p>
<p>On a normal  Change function with out &#8220;ref&#8221; keyword the console would print  6 for both first and second object.</p>
<p>Here we have a ref  and we are trying to initialize the parameter object.<br />
<code><br />
     void change(ref Int param)<br />
        {<br />
            param= new Int();<br />
        }<br />
</code></p>
<p>In the Main we are calling</p>
<p><code><br />
Test.change(ref second);<br />
</code></p>
<p>So the output we get is </p>
<p>first: 6<br />
second: 0</p>
<p>This is the behaviour of struct type you can say it is passed by value.</p>
<p>Now lets come to the Class type:</p>
<p><code><br />
void change(ref CInt param)<br />
        {<br />
            param = new CInt();<br />
        }<br />
</code></p>
<p>We have the default values set to 6 before the call:</p>
<p><code><br />
Test.change(ref csecond);<br />
</code></p>
<p>Whet do you think the output will be?</p>
<p>You may think it would have reset both cfirst and csecond to 0, but the reality is</p>
<p>you will get the output as</p>
<p>cfirst: 6<br />
csecond: 0</p>
<p>This is because of the reason the object references are passed by value.</p>
<p>However, if you change any of the class members value<br />
for example if you set on the change function with CInt as parameter with or without &#8220;ref&#8221; keyword and without initializing the param object.</p>
<p>param.i = 7;</p>
<p>you will notice it will affect the csecond and cfirst  (and the output will be 7) which will give you an impression it is infact objects are passed by references.</p>
<p>The only way to track the behaviour of <strong>object references are passed by value</strong> is by trying to initializing the parameter inside the function.</p>
<p>I hope this helps you understand the parameter passing in C#.</p>
<p>If you have any questions or comments please reply here.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=93&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2008/12/17/c-default-passing-by-reference-in-detail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
		<item>
		<title>Received a Forwarded Mail on Store Closings</title>
		<link>http://vtrip.wordpress.com/2008/11/24/received-a-forwarded-mail-on-store-closings/</link>
		<comments>http://vtrip.wordpress.com/2008/11/24/received-a-forwarded-mail-on-store-closings/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 19:06:31 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[Global]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[don't buy protection plans and gift cards now]]></category>
		<category><![CDATA[end day of large merchants]]></category>
		<category><![CDATA[gift card]]></category>
		<category><![CDATA[gift cards]]></category>
		<category><![CDATA[protection plans]]></category>
		<category><![CDATA[store closings]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=85</guid>
		<description><![CDATA[Stores that are planning to close after Christmas are still selling gift cards through the holidays even though the cards will be worthless January 1. There is no law preventing them from doing this. Below is a partial list of stores that you need to be cautious about. Circuit City (filed Chapter 11) Ann Taylor [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=85&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Stores that are planning to close after Christmas are still selling gift cards through the holidays even though the cards will be worthless January 1. <strong>There is no law preventing them from doing this.    Below is a partial list of stores that you need to be cautious about. </strong></p>
<p>Circuit City (filed Chapter 11) </p>
<p>Ann Taylor  117 stores nationwide closing </p>
<p>Lane Bryant, Fashion Bug ,and Catherine&#8217;s to close 150 stores nationwide </p>
<p>Eddie Bauer to close stores 27 stores and more after January </p>
<p>Cache will close all stores </p>
<p>Talbots closing down specialty stores </p>
<p>J. Jill closing all stores (owned by Talbots)</p>
<p>Pacific Sunwear will close its struggling chain of 154 demo stores.</p>
<p>GAP closing 85 stores </p>
<p>Wickes Furniture closing down </p>
<p>Zales closing down 82 stores and 105 after January </p>
<p>Whitehall closing all stores </p>
<p>Piercing Pagoda closing all stores </p>
<p>Disney closing 98 stores and will close more after January. </p>
<p>Home Depot closing 15 stores 1 in NJ ( New Brunswick ) </p>
<p>Macys to close 9 stores after January </p>
<p>Linens and Things closing all stores </p>
<p>Movie Galley Closing all stores </p>
<p>Pep Boys Closing 33 stores </p>
<p>Sprint/Nextel closing 133 stores </p>
<p>JC Penney closing a number of stores after January </p>
<p>Ethan Allen closing down 12 stores. </p>
<p>Wilson Leather closing down all stores </p>
<p>K B Toys closing 356 stores </p>
<p>Loews to close down some stores </p>
<p>Dillard&#8217;s to close some stores</p>
<p>Lot of people forgot one more thing, <strong>Does any of you pay of the protection plans offered by these stores on electronic items? (which they will tell you that its going to be broken on the day you buy), now you know where these money are gone to when the stores are closed.</strong></p>
<p>All you need a big shop with a very stupid idea and protection plan.</p>
<p>You can stop paying protection plans to Circuit City / Best Buy, because you don&#8217;t know even these guys will last till you product does.</p>
<p>It Sucks big time!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=85&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2008/11/24/received-a-forwarded-mail-on-store-closings/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
		<item>
		<title>Essay Writing on a Indian Cow</title>
		<link>http://vtrip.wordpress.com/2008/11/21/essay-writing-on-a-indian-cow/</link>
		<comments>http://vtrip.wordpress.com/2008/11/21/essay-writing-on-a-indian-cow/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 22:15:47 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[joy]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[essay]]></category>
		<category><![CDATA[essay about a cow]]></category>
		<category><![CDATA[essay on an indian cow]]></category>
		<category><![CDATA[funny cow]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=83</guid>
		<description><![CDATA[What else you want me to write here? This says everything. Don&#8217;t miss it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=83&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.vtrip.info/images/cow.jpg" alt="Essay on a cow" /></p>
<p>What else you want me to write here? This says everything. Don&#8217;t miss it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=83&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2008/11/21/essay-writing-on-a-indian-cow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>

		<media:content url="http://www.vtrip.info/images/cow.jpg" medium="image">
			<media:title type="html">Essay on a cow</media:title>
		</media:content>
	</item>
		<item>
		<title>Magic with the magnetic hands &#8211; 5yr old</title>
		<link>http://vtrip.wordpress.com/2008/11/19/magic-with-the-magnetic-hands-5yr-old/</link>
		<comments>http://vtrip.wordpress.com/2008/11/19/magic-with-the-magnetic-hands-5yr-old/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 20:44:31 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[Global]]></category>
		<category><![CDATA[joy]]></category>
		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=80</guid>
		<description><![CDATA[Some news are mentioning it as crazy, but I don&#8217;t think this is crazy, Its a magic with the magnetic hands on non magentic objects by Milan Simon Tuttle, a 5-year-old girl. She rocks with it! You could see the balls are obeying her instructions very very nicely. Don&#8217;t miss it! Awesome!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=80&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://vtrip.wordpress.com/2008/11/19/magic-with-the-magnetic-hands-5yr-old/"><img src="http://img.youtube.com/vi/l25bkqWPAQI/2.jpg" alt="" /></a></span>
<p>Some news are mentioning it as crazy, but I don&#8217;t think this is crazy, Its a magic with the magnetic hands on non magentic objects by Milan Simon Tuttle, a 5-year-old girl. She rocks with it!</p>
<p>You could see the balls are obeying her instructions very very nicely.</p>
<p>Don&#8217;t miss it! Awesome!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=80&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2008/11/19/magic-with-the-magnetic-hands-5yr-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
		<item>
		<title>Many doctors plan to quit or cut back: survey</title>
		<link>http://vtrip.wordpress.com/2008/11/18/many-doctors-plan-to-quit-or-cut-back-survey-from-yahoo/</link>
		<comments>http://vtrip.wordpress.com/2008/11/18/many-doctors-plan-to-quit-or-cut-back-survey-from-yahoo/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 14:59:13 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[Global]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[doctors]]></category>
		<category><![CDATA[doctors cut back]]></category>
		<category><![CDATA[doctors plan to quit]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=71</guid>
		<description><![CDATA[Yahoo News: Many doctors plan to quit or cut back: survey I don&#8217;t know, 90% of the time when I go the primary care doctors in new jersey(don&#8217;t know about other states): 1. They are always on the phone with somebody else, while i&#8217;m on the waiting room or sometimes even they examine me. 2. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=71&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.yahoo.com/s/nm/20081118/us_nm/us_doctors_usa_survey">Yahoo News: Many doctors plan to quit or cut back: survey</a></p>
<p>I don&#8217;t know, 90% of the time when I go the primary care doctors in new jersey(don&#8217;t know about other states):</p>
<p>1. They are always on the phone with somebody else, while i&#8217;m on the waiting room or sometimes even they examine me.</p>
<p>2. It will nearly take 1 year for them send us to a specialist, when the disease is out of their lead, sometimes the disease will attempt to leave us.</p>
<p>3. You will get an appointment for 4:30, but you will be checked at 6:00 this is just an average.</p>
<p>4. If you are in a emergency, you will get noticed by a doctor after 10 hours (average and you are lucky) because your vitals are OK.</p>
<p>5. After all this you still pay your co-pay.</p>
<p>At this point of time, I feel I want to say why don&#8217;t you guys do your work and stop whining and you don&#8217;t even work without a time limit like a specialist does. I think the insurance companies should remove doctors from their network based on the review by the patients and that will get them to work.</p>
<p>This is the lamest thing I&#8217;ve ever heard and if the society is going to loose a few quitters, its good for the society, don&#8217;t bother about this threat. This is the real right time from them to quit.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=71&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2008/11/18/many-doctors-plan-to-quit-or-cut-back-survey-from-yahoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
		<item>
		<title>Cloud Computing &#8211; New Era or removal of freedom</title>
		<link>http://vtrip.wordpress.com/2008/11/13/cloud-computing-new-era-or-removal-of-freedom/</link>
		<comments>http://vtrip.wordpress.com/2008/11/13/cloud-computing-new-era-or-removal-of-freedom/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 22:44:28 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[Global]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[end of internet era]]></category>
		<category><![CDATA[loss of privacy]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=66</guid>
		<description><![CDATA[&#8220;Cloud Computing is a paradigm in which information is permanently stored in servers on the Internet and cached temporarily on clients that include desktops, entertainment centers, table computers, notebooks, wall computers, handhelds, sensors, monitors, etc.&#8221; &#8211; From Wiki There are lot things that can happen with cloud computing, however when I look at this architecture [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=66&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;Cloud Computing is a paradigm in which information is permanently stored in servers on the Internet and cached temporarily on clients that include desktops, entertainment centers, table computers, notebooks, wall computers, handhelds, sensors, monitors, etc.&#8221; &#8211; From Wiki</p>
<p>There are lot things that can happen with cloud computing, however when I look at this architecture and the way its pushed by Amazon, Google and Microsoft, I personally feel we are closing towards corporating the entire internet and leaving the entire privacy of everybody to these few folks.</p>
<p>Because what ever these guys are talking as cloud computing, in future it has high possibility of losing our PCs and everything become a dumb terminals and what ever you do or don&#8217;t do is completely given to these folks and they will charge you with a few cents.</p>
<p>Think about this, today we use individual computing powers to perform some action with lot variety of standalone applications like Text Editors, Spreadsheets and office components and if they become network only under the clouds, what will you be left with? May be a monitor only with a network card.</p>
<p>Already Google has its office component in network only, all they got to add is a price tag to use it for cloud costs May be Microsoft is totally frustrated with piracy issue and the only way they can think of ending this is by making their best to be network enabled or go &#8220;live&#8221;.</p>
<p>On the positive side, this may be a stepping stone for virtual offices which will allow people to work across the continents and ofcourse everybody&#8217;s network will have the same bandwidth power at the cost of your entire personal privacy.</p>
<p>No matter how much legal bindings these guys are going to put in the paper, at the end of the day if your desktop is in a network, you are 100% monitored by some one and they exactly know where to find you simple as it is. Even in today&#8217;s world, no one has a true privacy, everybody is being monitored in the name of website visitors etc&#8230;</p>
<p>When this succeeds to every single user, we can say its the end of the true internet, however there will be new forms which will arise to counter this&#8230; Come on&#8230; this is what we are doing for thousands of years, don&#8217;t we?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=66&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2008/11/13/cloud-computing-new-era-or-removal-of-freedom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
		<item>
		<title>Hampster on a piano&#8230;</title>
		<link>http://vtrip.wordpress.com/2008/11/12/hampster-on-a-piano/</link>
		<comments>http://vtrip.wordpress.com/2008/11/12/hampster-on-a-piano/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 22:28:39 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[joy]]></category>
		<category><![CDATA[hampster]]></category>
		<category><![CDATA[hampster on a piano]]></category>
		<category><![CDATA[piano]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=63</guid>
		<description><![CDATA[Here is a nice video the hampster is trying to eat a popcorn, really all it thinks about is to just eat it and having some fun with it&#8230; Have fun!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=63&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://vtrip.wordpress.com/2008/11/12/hampster-on-a-piano/"><img src="http://img.youtube.com/vi/tRzTfgds0UI/2.jpg" alt="" /></a></span>
<p>Here is a nice video the hampster is trying to eat a popcorn, really all it thinks about is to just eat it and having some fun with it&#8230;</p>
<p>Have fun!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=63&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2008/11/12/hampster-on-a-piano/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
		<item>
		<title>NJTransit &#8211; Way to save Money &#8211; Really</title>
		<link>http://vtrip.wordpress.com/2008/11/07/njtransit-ways-to-save-money-really/</link>
		<comments>http://vtrip.wordpress.com/2008/11/07/njtransit-ways-to-save-money-really/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 15:47:02 +0000</pubDate>
		<dc:creator>G</dc:creator>
				<category><![CDATA[Global]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[fun rides with njtransit]]></category>
		<category><![CDATA[metropark]]></category>
		<category><![CDATA[NEC]]></category>
		<category><![CDATA[newark]]></category>
		<category><![CDATA[newyork]]></category>
		<category><![CDATA[njtransit]]></category>
		<category><![CDATA[train rides]]></category>

		<guid isPermaLink="false">http://vtrip.wordpress.com/?p=51</guid>
		<description><![CDATA[If you are living in new jersey and you are commuting to nyc you will know what I&#8217;m talking about, even if you are not in this area, its a rail commute system, directly under the NJ Governer. Well, A communter travelling between MetroPark to Newark Penn or New York Penn stations will have this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=51&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<a href="http://polldaddy.com/poll/1084523/">View This Poll</a>
<p>If you are living in new jersey and you are commuting to nyc you will know what I&#8217;m talking about, even if you are not in this area, its a rail commute system, directly under the NJ Governer.</p>
<p>Well, A communter travelling between MetroPark to Newark Penn or New York Penn stations will have this shared experience every single day.</p>
<p>1. It will be crazy crowded from 6:57 AM to 9:15 AM and 5:25 PM to 7:11 PM. No matter how bigger the train is, Joe the plumber (After the election Average Joe become Joe the Plumber) will never have a seat to sit.</p>
<p>2. Most of the time it will  be 10 minutes late to the specified destinations every single day. Nobody is even coming in the opposite direction. A 25 mile ride taking 45 minutes only possible with NJTransit.</p>
<p>3. Crowded with my fellow indians, who just pay and never expect the comfort, because we have the tolerance for the entire world and we always think we were late to get inside the train and we never go to the public hearings of the NJTransit, which happens every quarter I guess, I hardly know.</p>
<p>4. You can visually experience in every single car, 2 people on the two corners on a 3 seater and our average traveler between NYC &#8211; Metropark will be the center man who will be late to get out of the train as well&#8230; and there will be only one exit out from the platform&#8230;.so it will be like a festival crowd every single day you are right its metropark, even after the new design while swallows a wopping millions of dollars.</p>
<p>5. If the train is late in the morning by 5 minutes, you will see the festival inside every car, what a life? You are really blessed to have that.</p>
<p>6. Most of the time the conductor will never come to check the passes, even if they come with this  crowd, he will never cross more than 2 cars, if he crossed all the cars, then it means, the trains is running really really late either way.</p>
<p>7. Sometimes, they don&#8217;t even announce the NEC trains in Newark or Newyork penn they arrive.</p>
<p>8. Its really an expensive trip for a 25 mile ride, with no comfort.</p>
<p>9. Last but no least, Our brilliant indians and chinese always try to get out of the train fast say they virtually calculate the cars and they get closer to the one which will stop closer to the exit to the station from platform, but every single day, our NJTransit drivers, randomly place the cars and ask these folks to walk forward or backwards, by this time, festival is started by the don&#8217;t care folks inside the car.</p>
<p>So after seeing all this, </p>
<p>what I thought to save money is passengers between Metropark and Newark/Newyork Penn must avoid buying monthly tickets.</p>
<p>1. They must carry $20 every day and select a random crowded car and ride through, at the end of the day, we don&#8217;t get the comfort we need, so if the conductor comes, hand over the $20 and it will surely take 5 minutes for each passenger after using their punch cards for tickets, by 15 minutes it will reach the Newark Penn, even if it delays it will only 2 more passengers.</p>
<p>2. If you insist you are the type you will buy tickets, buy few off peak round trip ticket and have $20 in your hand, if the conductor comes, he has take the punch card for sure and there will be no surcharge and it will also take the same time to take care of each person.</p>
<p>I think thats the only way to signal our ridership volume to the ignorant managers inside the NJTransit panel.</p>
<p>Man, Train ride is really fun!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vtrip.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vtrip.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vtrip.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vtrip.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vtrip.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vtrip.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vtrip.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vtrip.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vtrip.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vtrip.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vtrip.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vtrip.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vtrip.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vtrip.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vtrip.wordpress.com&amp;blog=2648548&amp;post=51&amp;subd=vtrip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vtrip.wordpress.com/2008/11/07/njtransit-ways-to-save-money-really/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c79ee3884afb2b6b6aebbc511cd911ab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">G</media:title>
		</media:content>
	</item>
	</channel>
</rss>
