<?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>my.tech.page &#187; IDE</title>
	<atom:link href="http://durgaprasad.wordpress.com/category/ide/feed/" rel="self" type="application/rss+xml" />
	<link>http://durgaprasad.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 26 Dec 2008 00:36:08 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='durgaprasad.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/9f2271ffecc2a0f4783505bcbd21df4c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>my.tech.page &#187; IDE</title>
		<link>http://durgaprasad.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://durgaprasad.wordpress.com/osd.xml" title="my.tech.page" />
		<item>
		<title>Find &amp; Replace non-printable characters in vim</title>
		<link>http://durgaprasad.wordpress.com/2007/09/25/find-replace-non-printable-characters-in-vim/</link>
		<comments>http://durgaprasad.wordpress.com/2007/09/25/find-replace-non-printable-characters-in-vim/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 22:54:03 +0000</pubDate>
		<dc:creator>durgaprasad</dc:creator>
				<category><![CDATA[IDE]]></category>

		<guid isPermaLink="false">http://durgaprasad.wordpress.com/2007/09/25/find-replace-non-printable-characters-in-vim/</guid>
		<description><![CDATA[When I converted a file from EBCDIC format to ASCII format using an online tool, there are many non-printable characters in the ASCII file. So, this ASCII file is completely unreadable. So, I followed the below steps to make it readable.
1) Find hexa value of that non-printable character. Move your cursor to that character and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=durgaprasad.wordpress.com&blog=442213&post=42&subd=durgaprasad&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When I converted a file from <a href="http://en.wikipedia.org/wiki/EBCDIC">EBCDIC</a> format to ASCII format using an online tool, there are many non-printable characters in the ASCII file. So, this ASCII file is completely unreadable. So, I followed the below steps to make it readable.</p>
<p>1) Find hexa value of that non-printable character. Move your cursor to that character and press &#8216;ga&#8217;.</p>
<p>2) In escape mode, execute this &#8216;:%s/\%x85/\r/gc&#8217;. In my case, hexadecimal value of that non-printable character is 85. I replaced that with &#8216;\r&#8217;.</p>
<p>Some characters like &#8216;Ctrl+M&#8217; can be printed by &#8216;Ctrl+v&#8217; + &#8216;Ctrl+M&#8217;. But, in my case, 0&#215;85 is that non-printable character and could not print it using &#8216;Ctrl+v&#8217;.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/durgaprasad.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/durgaprasad.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/durgaprasad.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/durgaprasad.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/durgaprasad.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/durgaprasad.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/durgaprasad.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/durgaprasad.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/durgaprasad.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/durgaprasad.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/durgaprasad.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/durgaprasad.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=durgaprasad.wordpress.com&blog=442213&post=42&subd=durgaprasad&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://durgaprasad.wordpress.com/2007/09/25/find-replace-non-printable-characters-in-vim/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b58ec29335eefc5917ec862f3b12925f?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">durgaprasad</media:title>
		</media:content>
	</item>
		<item>
		<title>Make vim to remember file cursor position : solaris</title>
		<link>http://durgaprasad.wordpress.com/2007/02/21/remember-file-cursor-position-in-vim-solaris/</link>
		<comments>http://durgaprasad.wordpress.com/2007/02/21/remember-file-cursor-position-in-vim-solaris/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 18:21:06 +0000</pubDate>
		<dc:creator>durgaprasad</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://durgaprasad.wordpress.com/2007/02/21/remember-file-cursor-position-in-vim-solaris/</guid>
		<description><![CDATA[Some time back, I installed vim in Solaris after taking the package from sunfreeware site. I have configured colors also. But one main annoying thing is that it does not remember the cursor position of the same file opened previously. i.e. When I open a file and move to line no:1000 , quit and open [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=durgaprasad.wordpress.com&blog=442213&post=34&subd=durgaprasad&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Some time back, I installed vim in Solaris after taking the package from sunfreeware site. I have configured colors also. But one main annoying thing is that it does not remember the cursor position of the same file opened previously. i.e. When I open a file and move to line no:1000 , quit and open the same file again, cursor will be placed at line no:0. After reading a few web pages [not with much help], I have read vim documentation [:help viminfo]. There I found that by typing `&#8221; [backquote &amp; doublequote], cursor will be moved to the line where we left last time. But I dont want to type `&#8221; everytime I open a file. I want to automate this. After searching for `&#8221; pattern in my Linux vim config files, I found the following code snippet in /etc/vimrc in my SuSE.</p>
<p><strong>if has(&#8220;autocmd&#8221;)<br />
autocmd BufReadPost *<br />
\ if line(&#8220;&#8216;\&#8221;") &gt; 0 &amp;&amp; line(&#8220;&#8216;\&#8221;") &lt;= line(&#8220;$&#8221;) |<br />
\   exe &#8220;normal g`\&#8221;" |<br />
\ endif<br />
endif</strong></p>
<p>After I have added the above code in my solaris .vimrc, things began working properly. Actually I have sent a mail to vim mailing list and started working on this problem. When I checked my mails after solving the problem, I saw few good replies from vim mailing list pointing to these links <a href="http://vim.sourceforge.net/tips/tip.php?tip_id=80">tip#80</a> , <a href="http://tech.groups.yahoo.com/group/vim/message/77644">yahoo_groups</a> .</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/durgaprasad.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/durgaprasad.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/durgaprasad.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/durgaprasad.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/durgaprasad.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/durgaprasad.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/durgaprasad.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/durgaprasad.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/durgaprasad.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/durgaprasad.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/durgaprasad.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/durgaprasad.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=durgaprasad.wordpress.com&blog=442213&post=34&subd=durgaprasad&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://durgaprasad.wordpress.com/2007/02/21/remember-file-cursor-position-in-vim-solaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b58ec29335eefc5917ec862f3b12925f?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">durgaprasad</media:title>
		</media:content>
	</item>
		<item>
		<title>Have you tried web services in sun studio?</title>
		<link>http://durgaprasad.wordpress.com/2006/09/28/have-you-tried-web-services-in-sun-studio/</link>
		<comments>http://durgaprasad.wordpress.com/2006/09/28/have-you-tried-web-services-in-sun-studio/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 08:05:50 +0000</pubDate>
		<dc:creator>durgaprasad</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://durgaprasad.wordpress.com/2006/09/28/have-you-tried-web-services-in-sun-studio/</guid>
		<description><![CDATA[    In .net IDE, MS has integrated web services with their IDE very well. You ask any MS dev guy, I am sure they will say it is very simple and takes 5 minutes to develop and deploy.
    But, I have never heard the same words from a java guy [Atleast from the java people [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=durgaprasad.wordpress.com&blog=442213&post=7&subd=durgaprasad&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:left;">    In .net IDE, MS has integrated web services with their IDE very well. You ask any MS dev guy, I am sure they will say it is very simple and takes 5 minutes to develop and deploy.</p>
<p style="text-align:left;">    But, I have never heard the same words from a java guy [Atleast from the java people that I know]. Like many, I used to think developing web services in java is difficult and have to write lot of code manually. But, recently I had explored web services options in Sun Studio Enterprise. Totally, I had spent 2 hours in collecting/seeing tutorials and flash demos.</p>
<p style="text-align:left;">    Sun has considered many things from dev point of view. It has put all options necessary for webservices. Finally, when I tried to develop a web service, it was completed in 5 minutes. yes.. really 5 minutes!!</p>
<p style="text-align:left;">    Not only web services, that tool is very good for enterprise development. Enterprise development means, I would say web applications, EJBs, Web services and Integration with major application servers from with in the IDE. For my application development, I have used that tool. It has lot many good features likes profiler, Application verification kit, debug integrated with all supported app servers and Matisse based GUI development[Drag and drop like in VB].</p>
<p>    If you want to do enterprise development in java.. then consider Sun Studio Enterprise [Its free!!].</p>
<p style="text-align:center;">You may find these following links useful.</p>
<p style="text-align:center;">  <a href="http://www.netbeans.org/kb/50/quickstart-webservice.html">http://www.netbeans.org/kb/50/quickstart-webservice.html</a> <a href="http://www.netbeans.org/kb/50/quickstart-webservice-client.html">http://www.netbeans.org/kb/50/quickstart-webservice-client.html</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/durgaprasad.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/durgaprasad.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/durgaprasad.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/durgaprasad.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/durgaprasad.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/durgaprasad.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/durgaprasad.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/durgaprasad.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/durgaprasad.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/durgaprasad.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/durgaprasad.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/durgaprasad.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=durgaprasad.wordpress.com&blog=442213&post=7&subd=durgaprasad&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://durgaprasad.wordpress.com/2006/09/28/have-you-tried-web-services-in-sun-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b58ec29335eefc5917ec862f3b12925f?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">durgaprasad</media:title>
		</media:content>
	</item>
	</channel>
</rss>