<?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>Varun&#039;s Blog</title>
	<atom:link href="http://jvarun.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jvarun.wordpress.com</link>
	<description>My notes on technology and life</description>
	<lastBuildDate>Wed, 25 Jan 2012 16:53:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jvarun.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/64cff6a1a4c042f748114a2fad002bb5?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Varun&#039;s Blog</title>
		<link>http://jvarun.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jvarun.wordpress.com/osd.xml" title="Varun&#039;s Blog" />
	<atom:link rel='hub' href='http://jvarun.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Apache Config Steps &#8211; Run multiple domains on same ip</title>
		<link>http://jvarun.wordpress.com/2011/11/16/apache-config-steps-run-multiple-domains-on-same-ip/</link>
		<comments>http://jvarun.wordpress.com/2011/11/16/apache-config-steps-run-multiple-domains-on-same-ip/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 11:40:30 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache config]]></category>
		<category><![CDATA[multiple domains]]></category>
		<category><![CDATA[sub-domain]]></category>
		<category><![CDATA[subdomain]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[Virtual Host]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/?p=366</guid>
		<description><![CDATA[Suppose you want to point abc.mydomain.com and mydomain.com to same machine/ip, but to different applications. There are multiple ways to achieve this (basically with same config settings but in different files). I am giving one way here that worked for me: * Go to /etc/apache2/sites-available * open a file abc.mydomain.com.conf * copy this to abc.mydomain.com.conf, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=366&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Suppose you want to point abc.mydomain.com and mydomain.com to same machine/ip, but to different applications. There are multiple ways to achieve this (basically with same config settings but in different files). I am giving one way here that worked for me:</p>
<p>* Go to /etc/apache2/sites-available<br />
* open a file abc.mydomain.com.conf<br />
* copy this to abc.mydomain.com.conf, make changes to folder path domain name etc. and Save the file</p>
<p><code><br />
&lt;VirtualHost *:80&gt;</p>
<p>DocumentRoot /var/www/abcappfolder/<br />
ServerAdmin admin@mydomain.com<br />
ServerName abc.mydomain.com<br />
ServerAlias www.abc.mydomain.com</p>
<p>Options FollowSymLinks<br />
AllowOverride None</p>
<p>#we want specific log file for this server<br />
CustomLog /var/log/apache2/abc.com-access.log combined<br />
ErrorLog /var/log/apache2/abc.com-error.log</p>
<p>&lt;/VirtualHost&gt;<br />
</code><br />
* Now create another file mydomain.com.conf<br />
* copy this to mydomain.com.conf, make changes to folder path domain name etc. and Save the file. Note that here I am assuming mydomain.com will actually redirect to an app server (like tomcat or jboss) running on port 8080, that&#8217;s why you see ProxyPass statements:</p>
<p><code><br />
&lt;VirtualHost *:80&gt;</p>
<p>DocumentRoot /var/www/mysecondapp/<br />
ServerAdmin admin@mydomain.com<br />
ServerName mydomain.com<br />
ServerAlias www.mydomain.com</p>
<p>Options FollowSymLinks<br />
AllowOverride None</p>
<p>ProxyPass / http://127.0.0.1:8080/<br />
ProxyPassReverse / http://127.0.0.1:8080/<br />
ProxyPreserveHost on</p>
<p>#if using awstats<br />
ScriptAlias /awstats/ /usr/lib/cgi-bin/<br />
#we want specific log file for this server<br />
CustomLog /var/log/apache2/mydomain.com-access.log combined<br />
ErrorLog /var/log/apache2/mydomain.com-error.log</p>
<p># if your machine's name is also mydomain.com<br />
# then you need to use config settings below<br />
# otherwise site will NOT be accessible with mydomain.com<br />
# (although it will be accessble as www.mydomain.com)<br />
RewriteEngine on<br />
RewriteCond %{HTTP_HOST} ^mydomain.com [NC]<br />
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301]</p>
<p>&lt;/VirtualHost&gt;<br />
</code></p>
<p>* on command line run these commands to enable these 2 configs:</p>
<p><code>a2ensite abc.mydomain.com.conf<br />
a2ensite mydomain.com.conf</code></p>
<p>This creates symlinks to the 2 config files in /etc/apache2/sites-enabled folder<br />
You can create the same symlinks manually also like this:</p>
<p><code>cd /etc/apache2/sites-enabled<br />
ln -s /etc/apache2/sites-available/abc.mydomain.com.conf abc.mydomain.com.conf<br />
ln -s /etc/apache2/sites-available/mydomain.com.conf mydomain.com.conf</code></p>
<p>* Following step is required only if your machine&#8217;s name is also mydomain.com (that means you sftp or ssh to your machine using mydomain.com). In this case I was not able to access my site using mydomain.com in browser. Hence I did this which worked, there may be a different way to solve this problem though:</p>
<p>remove symlink to ln -s /etc/apache2/sites-available/default file from /etc/apache2/sites-enabled folder. You can use rm command or you can run this command</p>
<p><code>a2dissite default</code></p>
<p>You do not need to do this for sub-domains (like abc.mydomain.com)</p>
<p>* Restart apache (/etc/conf.d/apache restart)<br />
* Your sites should be accessible now</p>
<p><strong>Note : If it does not work make sure you do not have ProxyPass statements inside httpd.conf or a conf file in /etc/apache2/conf.d to redirect URL </strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/366/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=366&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2011/11/16/apache-config-steps-run-multiple-domains-on-same-ip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>
	</item>
		<item>
		<title>Fatal error: Allowed memory size of 16777216 bytes exhausted</title>
		<link>http://jvarun.wordpress.com/2011/11/16/fatal-error-allowed-memory-size-of-16777216-bytes-exhausted/</link>
		<comments>http://jvarun.wordpress.com/2011/11/16/fatal-error-allowed-memory-size-of-16777216-bytes-exhausted/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 11:08:07 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Others (Technical)]]></category>
		<category><![CDATA[16777216 bytes exhausted]]></category>
		<category><![CDATA[Allowed memory size]]></category>
		<category><![CDATA[Fatal error: Allowed memory size of]]></category>
		<category><![CDATA[memory exhausted]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/2011/11/16/fatal-error-allowed-memory-size-of-16777216-bytes-exhausted/</guid>
		<description><![CDATA[You need to change the maximum memory allowed to a php script to run. For this you need to open your php.ini (location of this file will depend on where php is installed on your machine). In my case php.ini is in /etc/php5/apache2/php.ini Open /etc/php5/apache2/php.ini search for memory_limit change 16M to 32M save file, you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=365&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You need to change the maximum memory allowed to a php script to run.<br />
For this you need to open your php.ini (location of this file will depend on where php is installed on your machine). In my case php.ini is in /etc/php5/apache2/php.ini</p>
<p>Open /etc/php5/apache2/php.ini</p>
<p>search for memory_limit</p>
<p>change 16M to 32M</p>
<p>save file, you are good to go!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/365/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=365&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2011/11/16/fatal-error-allowed-memory-size-of-16777216-bytes-exhausted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>
	</item>
		<item>
		<title>Steve Jobs</title>
		<link>http://jvarun.wordpress.com/2011/10/11/the-steve-jobs-way/</link>
		<comments>http://jvarun.wordpress.com/2011/10/11/the-steve-jobs-way/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 02:43:49 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Others (Technical)]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/?p=361</guid>
		<description><![CDATA[Technology serves everyone not only companies or computer geeks. Sitting in a bus or subway with music to ears via ipod, was technology ever that close to public? And the one man who deserves credit more than anyone else is legendary Steven Paul Jobs. Steve Jobs was a truly technical person. Best depiction of his [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=361&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Technology serves everyone not only companies or computer geeks. Sitting in a bus or subway with music to ears via ipod, was technology ever that close to public? And the one man who deserves credit more than anyone else is legendary Steven Paul Jobs. </p>
<p>Steve Jobs was a truly technical person. Best depiction of his talent was in innovation of technical ideas and their implementation. He worked on a computer board with Stephen Wozniak before coming up with Apple II computer in 1977, a much advanced computer at that time. with Macintosh his aim was to build a cheaper computer with powerful GUI. NeXTSTEP was his idea of a Unix based operating system. And MAC OS X is basically MAC with NeXTSTEP together. iMac, iPod, iPhone and then iPad apart from several software innovations from Steve and his company took the media world to another level.</p>
<p>As a manager Steve was considered to be erratic and hyper sensitive. To change self nature is a very difficult job but Steve proved he could do it by becoming a very capable CEO of Apple in last decade.  </p>
<p>People like Steve are true genius who with their hard work and rare brain help the world make enormous progress in little time. It is sad for the world to not to have him anymore. Steve Jobs will always be remembered as a true visionary.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=361&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2011/10/11/the-steve-jobs-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>
	</item>
		<item>
		<title>Javascript &#8211; extract Year from Date</title>
		<link>http://jvarun.wordpress.com/2011/06/24/javascript-extract-year-from-date/</link>
		<comments>http://jvarun.wordpress.com/2011/06/24/javascript-extract-year-from-date/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 18:14:35 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/?p=316</guid>
		<description><![CDATA[If you want to extract year from Date in Javascript, try getFullYear() method instead of getYear(), see the output below on Firefox and Chrome&#8230; Here's the code: &#60;html&#62; &#60;head&#62; &#60;script langauge="javascript"&#62; var date1 = new Date(); var browser = navigator.userAgent; var dateMessage = "I am on "+browser+"\n\nCurrent Date : "+ date1; dateMessage += "\ndate1.getYear()&#62;&#62; "+date1.getYear()+ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=316&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to extract year from Date in Javascript, try getFullYear() method instead of getYear(), see the output below on Firefox and Chrome&#8230;</p>
<p><a href="http://jvarun.files.wordpress.com/2011/06/firefox.png"><img class="alignnone size-medium wp-image-318" title="firefox" src="http://jvarun.files.wordpress.com/2011/06/firefox.png?w=300&#038;h=89" alt="" width="300" height="89" /></a></p>
<p><a href="http://jvarun.files.wordpress.com/2011/06/chrome.png"><img class="alignnone size-medium wp-image-317" title="chrome" src="http://jvarun.files.wordpress.com/2011/06/chrome.png?w=300&#038;h=150" alt="" width="300" height="150" /></a></p>
<pre>
Here's the code:</pre>
<p><code></p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;script langauge="javascript"&gt;
var date1 = new Date();
var browser = navigator.userAgent;
var dateMessage = "I am on "+browser+"\n\nCurrent Date : "+
	date1;
dateMessage += "\ndate1.getYear()&gt;&gt; "+date1.getYear()+
	"\ndate1.getFullYear()&gt;&gt; "+date1.getFullYear();
alert(dateMessage);
&lt;/script&gt;
&lt;/head&gt;
&lt;/html&gt;</pre>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/316/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=316&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2011/06/24/javascript-extract-year-from-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://jvarun.files.wordpress.com/2011/06/firefox.png?w=300" medium="image">
			<media:title type="html">firefox</media:title>
		</media:content>

		<media:content url="http://jvarun.files.wordpress.com/2011/06/chrome.png?w=300" medium="image">
			<media:title type="html">chrome</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS, DIV and Table Wrap Problem</title>
		<link>http://jvarun.wordpress.com/2011/05/19/css-div-and-table-wrap-problem/</link>
		<comments>http://jvarun.wordpress.com/2011/05/19/css-div-and-table-wrap-problem/#comments</comments>
		<pubDate>Wed, 18 May 2011 22:35:58 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/?p=266</guid>
		<description><![CDATA[I had this table within a DIV &#60;div id="tooltip_123" class="tooltip"&#62; &#60;table class="tooltip"&#62; &#60;tbody&#62; &#60;tr&#62; &#60;td&#62; The Business Communication System bundle combines an ADTRAN NetVanta 7100 or NetVanta 7060 with the NetVanta Unified Communications software to give the customer Unified Messaging providing access to voice mail and faxes within an email or desktop client. This solution [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=266&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had this table within a DIV</p>
<p><code><br />
&lt;div id="tooltip_123" class="tooltip"&gt;<br />
&lt;table class="tooltip"&gt;<br />
&lt;tbody&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
The Business Communication System bundle combines an ADTRAN NetVanta 7100 or NetVanta 7060 with the NetVanta Unified Communications software to give the customer Unified Messaging providing access to voice mail and faxes within an email or desktop client. This solution provides a Fax Server, Personal Assistants, Graphical Drag-and-Drop Service Creation, Call Redirection Services, and Notifications. This solution requires a separate server to run the UC software. A server is not included in the BCS bundle.<br />
Click here for more information.<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>And CSS properties were:</p>
<p><code><br />
div.tooltip { position: absolute; z-index: 1; white-space:pre-wrap; }<br />
table.tooltip { border-collapse: collapse; width: 250px; color: #000; font-size: 10pt; border-width: 4px; border-color: #013777; }</code></p>
<p><code>This is what was showing up on screen</code></p>
<p><a href="http://jvarun.files.wordpress.com/2011/05/before.png"><img class="alignnone size-medium wp-image-268" title="before" src="http://jvarun.files.wordpress.com/2011/05/before.png?w=400&#038;h=35" alt="" width="400" height="35" /></a></p>
<p>After some research, I changed DIV css to this:</p>
<p>div.tooltip { position: absolute; z-index: 1; visibility: hidden; <strong>white-space:pre-wrap;  </strong>}</p>
<p>and now it wrapped text without any problem and I see this now (<strong>white-space:pre-wrap; </strong>keeps white spaces as entered and wraps text when required):</p>
<p><a href="http://jvarun.files.wordpress.com/2011/05/after.png"><img class="alignnone size-full wp-image-270" title="after" src="http://jvarun.files.wordpress.com/2011/05/after.png?w=480" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=266&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2011/05/19/css-div-and-table-wrap-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://jvarun.files.wordpress.com/2011/05/before.png?w=300" medium="image">
			<media:title type="html">before</media:title>
		</media:content>

		<media:content url="http://jvarun.files.wordpress.com/2011/05/after.png" medium="image">
			<media:title type="html">after</media:title>
		</media:content>
	</item>
		<item>
		<title>2010 in review</title>
		<link>http://jvarun.wordpress.com/2011/01/03/2010-in-review/</link>
		<comments>http://jvarun.wordpress.com/2011/01/03/2010-in-review/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 05:37:19 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/?p=204</guid>
		<description><![CDATA[Computers directory The stats helper monkeys at WordPress.com mulled over how this blog did in 2010, and here&#8217;s a high level summary of its overall blog health: The Blog-Health-o-Meter&#8482; reads Wow. Crunchy numbers A helper monkey made this abstract painting, inspired by your stats. A Boeing 747-400 passenger jet can hold 416 passengers. This blog [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=204&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>	<a href="http://www.blogtopsites.com/computers/" title="Computers Blogs" target="_blank"><img style="border:none;" src="http://www.blogtopsites.com/v_96591.gif" alt="Computers Blogs" /></a><br /><a target="_blank" href="http://www.blogtopsites.com/computers/" style="font-size:10px;">Computers directory</span></a></p>
<p>The stats helper monkeys at WordPress.com mulled over how this blog did in 2010, and here&#8217;s a high level summary of its overall blog health:</p>
<p align="center"><img style="border:1px solid #ddd;background:#f5f5f5;padding:20px;" src="http://s0.wp.com/i/annual-recap/meter-healthy5.gif" width="250" height="183" alt="Healthy blog!"></p>
<p align="center">The <em>Blog-Health-o-Meter&trade;</em> reads Wow.</p>
<h2>Crunchy numbers</h2>
<div style="width:288px;float:right;border:1px solid #ddd;background:#fff;margin:0 0 1em 1em;padding:6px;">
<p>				<img src="http://s0.wp.com/i/annual-recap/abstract-stats-1.png" alt="Featured image" /><br />
				<br /><em>A helper monkey made this abstract painting, inspired by your stats.</em></p></div>
<p>A Boeing 747-400 passenger jet can hold 416 passengers.  This blog was viewed about <strong>3,100</strong> times in 2010.  That&#8217;s about 7 full 747s.</p>
<p>
<p>In 2010, there were <strong>15</strong> new posts, growing the total archive of this blog to 41 posts.</p>
<p>The busiest day of the year was December 22nd with <strong>524</strong> views. The most popular post that day was <a style="color:#08c;" href="http://jvarun.wordpress.com/2010/06/30/dao-with-jpa-and-service-layerejb3-session-beans-or-not/">DAO with JPA (and service layer/EJB3-Session Beans) or not</a>.</p>
<p></p>
<h2>Where did they come from?</h2>
<p>The top referring sites in 2010 were <strong>dzone.com</strong>, <strong>coderanch.com</strong>, <strong>programmersheaven.com</strong>, <strong>facebook.com</strong>, and <strong>linkedin.com</strong>.</p>
<p>Some visitors came searching, mostly for <strong>scea risk and mitigation</strong>, <strong>scea 5</strong>, <strong>linux truncate log file</strong>, <strong>ejb3 dao</strong>, and <strong>scea 5 part 3</strong>.</p>
<div style="clear:both;"></div>
<h2>Attractions in 2010</h2>
<p>These are the posts and pages that got the most views in 2010.</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">1</div>
<p>					<a style="margin-right:10px;" href="http://jvarun.wordpress.com/2010/06/30/dao-with-jpa-and-service-layerejb3-session-beans-or-not/">DAO with JPA (and service layer/EJB3-Session Beans) or not</a> <span style="color:#999;font-size:8pt;">June 2010</span><br />5 comments											</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">2</div>
<p>					<a style="margin-right:10px;" href="http://jvarun.wordpress.com/2010/03/03/scea-5-my-2-cents/">SCEA 5 &#8211; My 2 cents</a> <span style="color:#999;font-size:8pt;">March 2010</span>											</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">3</div>
<p>					<a style="margin-right:10px;" href="http://jvarun.wordpress.com/approach-java-a-tutorial-for-beginners/">Approach Java (1)</a> <span style="color:#999;font-size:8pt;">March 2009</span>											</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">4</div>
<p>					<a style="margin-right:10px;" href="http://jvarun.wordpress.com/about/">Myself</a> <span style="color:#999;font-size:8pt;">March 2009</span>											</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">5</div>
<p>					<a style="margin-right:10px;" href="http://jvarun.wordpress.com/2009/08/05/host-credentials-error-invalid-username-and-or-password-oracle-11g/">Host Credentials ERROR Invalid username and or password Oracle 11g</a> <span style="color:#999;font-size:8pt;">August 2009</span>											</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/204/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=204&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2011/01/03/2010-in-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.blogtopsites.com/v_96591.gif" medium="image">
			<media:title type="html">Computers Blogs</media:title>
		</media:content>

		<media:content url="http://s0.wp.com/i/annual-recap/meter-healthy5.gif" medium="image">
			<media:title type="html">Healthy blog!</media:title>
		</media:content>

		<media:content url="http://s0.wp.com/i/annual-recap/abstract-stats-1.png" medium="image">
			<media:title type="html">Featured image</media:title>
		</media:content>
	</item>
		<item>
		<title>ORA-28001: the password has expired</title>
		<link>http://jvarun.wordpress.com/2010/12/13/ora-28001-the-password-has-expired/</link>
		<comments>http://jvarun.wordpress.com/2010/12/13/ora-28001-the-password-has-expired/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 06:16:55 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/2010/12/13/ora-28001-the-password-has-expired/</guid>
		<description><![CDATA[That&#8217;s the error you get for oracle user for whom password is expired. One Solution &#8211; Connect using sqlplus to set new password, you can even use the same password you had earlier. $ sqlplus SQL*Plus: Release 11.2.0.1.0 Production on Mon Dec 13 01:12:07 2010 Copyright (c) 1982, 2009, Oracle. All rights reserved. Enter user-name: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=202&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s the error you get for oracle user for whom password is expired.</p>
<p>One Solution &#8211; Connect using sqlplus to set new password, you can even use the same password you had earlier.</p>
<p>$ sqlplus</p>
<p>SQL*Plus: Release 11.2.0.1.0 Production on Mon Dec 13 01:12:07 2010</p>
<p>Copyright (c) 1982, 2009, Oracle.  All rights reserved.</p>
<p>Enter user-name: myuser<br />
Enter password:<br />
ERROR:<br />
ORA-28001: the password has expired</p>
<p>Changing password for myuser<br />
New password:<br />
Retype new password:<br />
Password changed</p>
<p>Connected to:<br />
Oracle Database 11g Release 11.2.0.1.0 &#8211; 64bit Production</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=202&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/12/13/ora-28001-the-password-has-expired/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Privileges to Import/Export data into any tablespace</title>
		<link>http://jvarun.wordpress.com/2010/12/10/oracle-privileges-to-importexport-data-into-any-tablespace/</link>
		<comments>http://jvarun.wordpress.com/2010/12/10/oracle-privileges-to-importexport-data-into-any-tablespace/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 08:40:51 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/2010/12/10/oracle-privileges-to-importexport-data-into-any-tablespace/</guid>
		<description><![CDATA[Generally we can have a single user with DBA rights to import/export (using imp/exp utilities) data into any tablespace instead of assigning these privileges to every user account. Suppose you have an oracle user appdba. Grant DBA role to appdba and you can use this user to import data into any tablespace like this: imp [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=201&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Generally we can have a single user with DBA rights to import/export (using imp/exp utilities) data into any tablespace instead of assigning these privileges to every user account. </p>
<p>Suppose you have an oracle user appdba. Grant DBA role to appdba and you can use this user to import data into any tablespace like this:</p>
<p>imp appdba/pwd file=xyz.dmp fromuser=username touser=targetusername</p>
<p>Similarly export</p>
<p>exp appdba/pwd file=xyz.dmp owner=username</p>
<p>where owner is the username for which you want to export data</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=201&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/12/10/oracle-privileges-to-importexport-data-into-any-tablespace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
		<item>
		<title>ORA-01996: GRANT failed: password file is full</title>
		<link>http://jvarun.wordpress.com/2010/12/10/ora-01996-grant-failed-password-file-is-full/</link>
		<comments>http://jvarun.wordpress.com/2010/12/10/ora-01996-grant-failed-password-file-is-full/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 08:35:15 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/2010/12/10/ora-01996-grant-failed-password-file-is-full/</guid>
		<description><![CDATA[If you face this error that means you have exhausted allowed number of users with sysdba privileges and are trying to create another one. Most probably you do not need that many user accounts with sysdba privileges. run this query: Select * from v$pwfile_users; It will show you the list of all users with sysdba [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=200&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you face this error that means you have exhausted allowed number of users with sysdba privileges and are trying to create another one. Most probably you do not need that many user accounts with sysdba privileges.</p>
<p>run this query:</p>
<p>Select * from v$pwfile_users;</p>
<p>It will show you the list of all users with sysdba and sysoper roles. </p>
<p>To fix this:<br />
Edit existing user accounts and under &#8220;System Privileges&#8221; remove all, you will probably need only &#8220;Unlimited Tablespace&#8221; system privilege for user or you can assign a fixed quote. Secondly make sure only &#8220;Connect&#8221; role is  specified under Roles. This should be enough for most of user activities.</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=200&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/12/10/ora-01996-grant-failed-password-file-is-full/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
		<item>
		<title>eclipse stuck at initializing java tooling</title>
		<link>http://jvarun.wordpress.com/2010/12/03/eclipse-stuck-at-initializing-java-tooling/</link>
		<comments>http://jvarun.wordpress.com/2010/12/03/eclipse-stuck-at-initializing-java-tooling/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 08:43:54 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/2010/12/03/eclipse-stuck-at-initializing-java-tooling/</guid>
		<description><![CDATA[Eclipse 3.6 helios: I did not update anything in working eclipse but don&#8217;t know what happened and it got stuck in something for which it did not display any description. When I restarted, it got stuck at &#8220;initializing java tooling&#8221; Restarting with eclipse -clean did not help. But I noticed following error in console when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=195&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Eclipse 3.6 helios:</p>
<p>I did not update anything in working eclipse but don&#8217;t know what happened and it got stuck in something for which it did not display any description. When I restarted, it got stuck at &#8220;initializing java tooling&#8221;</p>
<p>Restarting with eclipse -clean did not help.<br />
But I noticed following error in console when I restarted it from command line</p>
<p>java.io.FileNotFoundException: /opt/public/technology/epp/epp_build/36/eclipse.S-3.6RC4-201006031500/artifacts.xml (No such file or directory)<br />
	at java.io.FileOutputStream.open(Native Method)<br />
	at java.io.FileOutputStream.(FileOutputStream.java:179)<br />
	at java.io.FileOutputStream.(FileOutputStream.java:131)&#8230;..<br />
&#8230;.<br />
&#8230;</p>
<p>There is not much on google about this error except restarting eclipse with -clean flag or cleaning your projects.</p>
<p>I grep-ed within eclipse for any file that contains reference to : /opt/public/technology/epp/epp_build/36/eclipse.S-3.6RC4-201006031500</p>
<p>find . -name &#8216;*.*&#8217; -exec grep -s &#8220;/opt/public/technology/epp/epp_build/36/eclipse.S-3.6RC4-201006031500&#8243; {} \; -print</p>
<p>File found was this:</p>
<p>/opt/eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/epp.package.java.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs</p>
<p>What I did was to comment out the line that contained above path (following line):</p>
<p>repositories/file\:_opt_public_technology_epp_epp_build_36_eclipse.S-3.6RC4-201006031500/uri=file\:/opt/public/technology/epp/epp_build/36/eclipse.S-3.6RC4-201006031500/</p>
<p>And restarted, after which problem was resolved.</p>
<p>One more thing, now when I open this file again that line is uncommented (by eclipse during restart I guess), but problem is not there!! Don&#8217;t have time enough to go and figure out these mysteries, let me know if you have more info.</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=195&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/12/03/eclipse-stuck-at-initializing-java-tooling/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
		<item>
		<title>Subclipse Update Problem &#8211; eclipse 3.6 helios</title>
		<link>http://jvarun.wordpress.com/2010/11/09/sublipse-update-problem-eclipse-3-6-helios/</link>
		<comments>http://jvarun.wordpress.com/2010/11/09/sublipse-update-problem-eclipse-3-6-helios/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 09:39:13 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Others (Technical)]]></category>
		<category><![CDATA[No repository found]]></category>
		<category><![CDATA[subclipse]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/?p=185</guid>
		<description><![CDATA[Problem: An error occurred while collecting items to be installed session context was:(profile=epp.package.java, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). No repository found containing: osgi.bundle,org.eclipse.team.cvs.ssh,3.2.100.I20090508-2000 Solution: When you update there is a checkbox on update window (last item): &#8220;Contact all update sites during install to find required software&#8221; Uncheck it &#8211; This should fix the problem and save a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=185&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Problem:</p>
<blockquote><p>An error occurred while collecting items to be installed<br />
session context was:(profile=epp.package.java, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).<br />
No repository found containing: osgi.bundle,org.eclipse.team.cvs.ssh,3.2.100.I20090508-2000</p></blockquote>
<p><strong>Solution</strong>:</p>
<p>When you update there is a checkbox on update window (last item):</p>
<p><strong>&#8220;Contact all update sites during install to find required software&#8221;</strong></p>
<p>Uncheck it &#8211; This should fix the problem and save a lot of time as well!!</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/185/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=185&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/11/09/sublipse-update-problem-eclipse-3-6-helios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
		<item>
		<title>svn switch &#8211;relocate syntax and &#8220;client is too old to work with working copy&#8221;</title>
		<link>http://jvarun.wordpress.com/2010/11/09/svn-switch-relocate-syntax-and-client-is-too-old-to-work-with-working-copy/</link>
		<comments>http://jvarun.wordpress.com/2010/11/09/svn-switch-relocate-syntax-and-client-is-too-old-to-work-with-working-copy/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 09:33:06 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Others (Technical)]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[relocate]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[too old]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/?p=181</guid>
		<description><![CDATA[I don&#8217;t think there is a provision in subclipse plugin to support &#8211;relocate tag with switch. You can use svn command line tool for this as below. Example 1: * Go inside the folder on command line (suppose folder svn+ssh://abc.com/home/SVN/myproj/trunk is checked out on local machine under folder myproject): cd myproject * Run this command [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=181&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t think there is a provision in subclipse plugin to support &#8211;relocate tag with switch. You can use svn command line tool for this as below.</p>
<p>Example 1:</p>
<p>* Go inside the folder on command line (suppose folder svn+ssh://abc.com/home/SVN/myproj/trunk is checked out on local machine under folder myproject):</p>
<p><code>cd myproject</code></p>
<p>* Run this command to switch the SVN pointer from svn+ssh://abc.com/home/SVN/myproj/trunk to svn+ssh://def.com/home/svn/myproj/trunk</p>
<p><code>svn switch --relocate svn+ssh://abc.com/home/SVN/myproj/trunk svn+ssh://def.com/home/svn/myproj/trunk .<br />
</code><br />
You should be done now!!<br />
Just go to eclipse and refresh project. You can restart eclipse if there&#8217;s still some problem. For other exceptions see &#8216;troubleshooting&#8217; section below.</p>
<p>Example 2: In case your local machine username and svn username are different:</p>
<p><code>svn switch --relocate svn+ssh://abc.com/home/SVN/myproj/trunk svn+ssh://SVNUserName@def.com/home/svn/myproj/trunk .<br />
</code></p>
<p><strong>Troubleshooting</strong></p>
<p>If you face this error:</p>
<blockquote><p>svn: This client is too old to work with working copy&#8217; error without upgrading Subversion</p></blockquote>
<p>This most probably means you have higher version of svn client installed somewhere (like subclipse) while your command line client is of lower version. One fix for this is:</p>
<p>* Downgrade code to previous version<br />
* Then use svn switch as above</p>
<p>How to downgrade:<br />
* Download Python script from this location:</p>
<p> <a href="http://svn.apache.org/repos/asf/subversion/trunk/tools/client-side/change-svn-wc-format.py">http://svn.apache.org/repos/asf/subversion/trunk/tools/client-side/change-svn-wc-format.py</a></p>
<p>Suppose you download it under /opt/myscripts</p>
<p>* Make it executable</p>
<p><code>chmod +x /opt/myscripts/change-svn-wc-format.py</code></p>
<p>* Now go to project folder again and run this command to downgrade code to 1.5<br />
 (assuming your current command line client is at 1.5)</p>
<p><code>/opt/myscripts/change-svn-wc-format.py . 1.5 </code></p>
<p>Now you can run svn switch as above</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=181&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/11/09/svn-switch-relocate-syntax-and-client-is-too-old-to-work-with-working-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
		<item>
		<title>apt-get install subversion &#8211; Package subversion is not available</title>
		<link>http://jvarun.wordpress.com/2010/11/09/apt-get-install-subversion-package-subversion-is-not-available/</link>
		<comments>http://jvarun.wordpress.com/2010/11/09/apt-get-install-subversion-package-subversion-is-not-available/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 09:08:38 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Others (Technical)]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/2010/11/09/apt-get-install-subversion-package-subversion-is-not-available/</guid>
		<description><![CDATA[On Ubuntu $apt-get install subversion Reading package lists&#8230; Done Building dependency tree Reading state information&#8230; Done Package subversion is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source Solution Go to System &#62; Administration &#62; Software Sources [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=180&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On Ubuntu</p>
<p><code>$apt-get install subversion</code></p>
<blockquote><p>Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
Package subversion is not available, but is referred to by another package.<br />
This may mean that the package is missing, has been obsoleted, or is only available from another source</p></blockquote>
<p><strong>Solution</strong></p>
<p>Go to  System &gt; Administration &gt; Software Sources</p>
<p>Check all options (main, universe, restricted and multiverse &#8211; actually only main is required but in case you run into more problems, check all), close</p>
<p>Now run apt-get install subversion, it should work!!</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=180&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/11/09/apt-get-install-subversion-package-subversion-is-not-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
		<item>
		<title>Generating ssh keys &#8211; steps</title>
		<link>http://jvarun.wordpress.com/2010/09/16/generating-ssh-keys-steps/</link>
		<comments>http://jvarun.wordpress.com/2010/09/16/generating-ssh-keys-steps/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 07:19:57 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/2010/09/16/generating-ssh-keys-steps/</guid>
		<description><![CDATA[These are the steps: Suppose you want to connect from machine X to machine Y as userme. * login to X as userme * At /home/userme run this command: ssh-keygen -t rsa This will generate 2 files in /home/userme/.ssh folder id_rsa id_rsa.pub * open id_rsa.pub file and copy its contents &#8211; this is the public [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=179&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These are the steps:</p>
<p>Suppose you want to connect from machine X to machine Y as userme.</p>
<p>* login to X as userme<br />
* At /home/userme run this command:</p>
<p>ssh-keygen -t rsa</p>
<p>This will generate 2 files in /home/userme/.ssh folder</p>
<p>id_rsa<br />
id_rsa.pub</p>
<p>* open id_rsa.pub file and copy its contents &#8211; this is the public key</p>
<p>* Now login to machine Y as userme, open file /opt/userme/.ssh/authorized_keys &#8211; If path/file does not exist create it</p>
<p>* Append contents copied from id_rsa.pub on machine X to the end of  authorized_keys file</p>
<p>* Save file and exit</p>
<p>Now you can ssh to machine Y from X without entering credentials.</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/179/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=179&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/09/16/generating-ssh-keys-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
		<item>
		<title>Javascript &#8211; invoking onclick event explicitly</title>
		<link>http://jvarun.wordpress.com/2010/09/14/javascript-invoking-onclick-event-explicitly/</link>
		<comments>http://jvarun.wordpress.com/2010/09/14/javascript-invoking-onclick-event-explicitly/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 08:54:26 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://jvarun.wordpress.com/2010/09/14/javascript-invoking-onclick-event-explicitly/</guid>
		<description><![CDATA[Suppose an image with id &#8220;closeimg&#8221; has a Javascript function test() attached to it with &#8216;onclick&#8217; event. To invoke that function with code following does not work (not in Mozilla and Chrome at least): document.getElementById("closeimg").click(); Solution is this: document.getElementById("closeimg").onclick.call(document.getElementById("closeimg")); OR document.getElementById("closeimg").onclick.apply(document.getElementById("closeimg")); where document.getElementById("closeButton").onclick is the function itself (test() in this case) and call/apply method is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=176&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Suppose an image with id &#8220;closeimg&#8221; has a Javascript function <code>test()</code> attached to it with &#8216;onclick&#8217; event.<br />
To invoke that function with code following does not work (not in Mozilla and Chrome at least):</p>
<p><code>document.getElementById("closeimg").click();</code></p>
<p>Solution is this:</p>
<p><code>document.getElementById("closeimg").onclick.<br />call(document.getElementById("closeimg"));</code></p>
<p>OR</p>
<p><code>document.getElementById("closeimg").onclick.<br />apply(document.getElementById("closeimg"));</code></p>
<p>where <code>document.getElementById("closeButton").onclick</code> is the function itself (test() in this case) and <code>call/apply</code> method is to call the function on element passed as argument &#8211; in this case we want to call it on image.</p>
<p><a href="http://www.studysection.com" target="_new"><img src="http://www.studysection.com/images/getstarted.jpg" alt="Free Online Certifications" /><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jvarun.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jvarun.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jvarun.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jvarun.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jvarun.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jvarun.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jvarun.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jvarun.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jvarun.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jvarun.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jvarun.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jvarun.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jvarun.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jvarun.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jvarun.wordpress.com&amp;blog=6924841&amp;post=176&amp;subd=jvarun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jvarun.wordpress.com/2010/09/14/javascript-invoking-onclick-event-explicitly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e3bdbe0940dc5d7675a47fc793f1434a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Varun</media:title>
		</media:content>

		<media:content url="http://www.studysection.com/images/getstarted.jpg" medium="image">
			<media:title type="html">Free Online Certifications</media:title>
		</media:content>
	</item>
	</channel>
</rss>
