<?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>Ananth Sozhan Weblog</title>
	<atom:link href="http://experiencesharing.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://experiencesharing.wordpress.com</link>
	<description>Just to share my experience...............</description>
	<lastBuildDate>Sun, 21 Sep 2014 20:29:06 +0000</lastBuildDate>
	<language>en</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='experiencesharing.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ananth Sozhan Weblog</title>
		<link>http://experiencesharing.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://experiencesharing.wordpress.com/osd.xml" title="Ananth Sozhan Weblog" />
	<atom:link rel='hub' href='http://experiencesharing.wordpress.com/?pushpress=hub'/>
	<item>
		<title>What each JDK has?</title>
		<link>http://experiencesharing.wordpress.com/2009/07/20/what-each-jdk-has/</link>
		<comments>http://experiencesharing.wordpress.com/2009/07/20/what-each-jdk-has/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 08:51:31 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=95</guid>
		<description><![CDATA[Hi All, In my last post, i just shared only the release name of  all JDKs . but in this post i am just updating all the features of each release. I hope it could help you all. JDK 1.0 (january 23, 1996) oak &#8211; Initial release JDK 1.1 (february 19, 1997) &#8211; Retooling of [&#8230;]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=95&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Hi All,</p>
<p>In my last post, i just shared only the release name of  all JDKs . but in this post i am just updating all the features of each release. I hope it could help you all.</p>
<p><strong>JDK 1.0 (january 23, 1996) oak</strong><br />
&#8211; Initial release</p>
<p><strong>JDK 1.1 (february 19, 1997)</strong><br />
&#8211; Retooling of the AWT event model<br />
&#8211; Inner classes added to the language<br />
&#8211; JavaBeans<br />
&#8211; JDBC<br />
&#8211; RMI</p>
<p><strong>J2SE 1.2 (December 8, 1998) playground</strong><br />
This and subsequent releases through J2SE 5.0 were rebranded retrospectively Java 2 &amp; version name &#8220;J2SE&#8221;<br />
(Java 2 platform, Standard edition) replaced JDK to distinguish the base platform from<br />
J2EE (java 2 platform, enterprise edition) and J2ME (java 2 platform, micro edition).</p>
<p>- Strictfp keyword<br />
&#8211; Reflection<br />
&#8211; Swing api integration into the core classes<br />
&#8211; JVM equipped with a jit compiler<br />
&#8211; Java plug-in<br />
&#8211; Java IDL<br />
&#8211; An IDL implementation for corba interoperability<br />
&#8211; Collections Framework</p>
<p><strong>J2SE 1.3 (may 8, 2000) kestrel</strong><br />
&#8211; Hotspot jvm included<br />
&#8211; JavaSound<br />
&#8211; JNDI included in core libraries<br />
&#8211; Java platform debugger architecture (jpda)<br />
&#8211; RMI was modified to support optional compatibility with corba</p>
<p><strong>J2SE 1.4 (february 6, 2002) merlin</strong><br />
&#8211; assert keyword<br />
&#8211; Regular expressions<br />
&#8211; Exception chaining (allows an exception to encapsulate original lower-level exception)<br />
&#8211; Internet protocol version 6 (IPV6) support<br />
&#8211; Non-blocking nio (new input/output)<br />
&#8211; Logging API<br />
&#8211; Image i/o api for reading and writing images in formats like jpeg and png<br />
&#8211; Integrated XML parser and XSLT processor (JAXP)<br />
&#8211; Integrated security and cryptography extensions (JCE, JSSE, JAAS)<br />
&#8211; Java web start</p>
<p><strong>J2SE 5.0 (september 30, 2004) tiger [originally numbered 1.5]</strong><br />
&#8211; Generics: provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion).<br />
&#8211; Metadata: also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities.<br />
&#8211; Autoboxing/unboxing: automatic conversions between primitive types (such as int) and primitive wrapper classes (such as integer).<br />
&#8211; Enumerations: the enum keyword creates a typesafe, ordered list of values (such as day.monday, day.tuesday, etc.). Previously this could only be achieved by non-typesafe constant integers or manually constructed classes (typesafe enum pattern).<br />
&#8211; Swing: new skinnable look and feel, called synth.<br />
&#8211; Var args: the last parameter of a method can now be declared using a type name followed by three dots (e.g. Void drawtext(string&#8230; Lines)). In the calling code any number of parameters of that type can be used and they are then placed in an array to be passed to the method, or alternatively the calling code can pass an array of that type.<br />
&#8211; Enhanced for each loop: the for loop syntax is extended with special syntax for iterating over each member of either an array or any iterable, such as the standard collection classesfix the previously broken semantics of the java memory model, which defines how threads interact through memory.<br />
&#8211; Automatic stub generation for rmi objects.<br />
&#8211; Static imports concurrency utilities in package java.util.concurrent.<br />
&#8211; Scanner class for parsing data from various input streams and buffers.<br />
&#8211; Assertions<br />
&#8211; StringBuilder class (in java.lang package)<br />
&#8211; Annotations</p>
<p><strong>Java SE 6 (december 11, 2006) mustang</strong><br />
sun replaced the name &#8220;J2SE&#8221; with java se and dropped the &#8220;.0&#8243; from the version number.<br />
Beta versions were released in february and june 2006, leading up to a final release that occurred on december 11, 2006.<br />
The current revision is update 14 which was released in may 2009.</p>
<p>- Support for older win9x versions dropped.<br />
&#8211; Scripting lang support: Generic API for integration with scripting languages, &amp; built-in mozilla javascript rhino integration<br />
&#8211; Dramatic performance improvements for the core platform, and swing.<br />
&#8211; Improved web service support through JAX-WS JDBC 4.0 support<br />
&#8211; Java compiler API: an API allowing a java program to select and invoke a java compiler programmatically.<br />
&#8211; Upgrade of JAXB to version 2.0: including integration of a stax parser.<br />
&#8211; Support for pluggable annotations<br />
&#8211; Many GUI improvements, such as integration of swingworker in the API, table sorting and filtering, and true swing double-buffering (eliminating the gray-area effect).</p>
<p><strong>Java se 6 update 10</strong><br />
A major enhancement in terms of end-user usability.<br />
&#8211; Java Deployment Toolkit, a set of javascript functions to ease the deployment of applets and java web start applications.<br />
&#8211; Java Kernel, a small installer including only the most commonly used jre classes. Enhanced updater.<br />
&#8211; Enhanced versioning and pack200 support: server-side support is no longer required.<br />
&#8211; Java quick starter, to improve cold start-up time.<br />
&#8211; Improved performance of java2D graphics primitives on windows, using direct3D and hardware acceleration.<br />
&#8211; A new Swing look and feel called NIMBUS and based on synth.<br />
&#8211; Next-generation java plug-in: applets now run in a separate process and support many features of web start applications.</p>
<p><strong>Java se 6 update 12</strong><br />
This release includes the highly anticipated 64-bit java plug-in (for 64-bit browsers only), windows server 2008 support,<br />
and performance improvements of java and JAVAFX applications.</p>
<p><strong>Java se 7 (Dolphin)</strong></p>
<p>I will update you all about the features of JDK 7.0 in my next post.<strong><br />
</strong></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/95/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=95&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2009/07/20/what-each-jdk-has/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>
	</item>
		<item>
		<title>JDK release names</title>
		<link>http://experiencesharing.wordpress.com/2009/07/15/jdk-release-names/</link>
		<comments>http://experiencesharing.wordpress.com/2009/07/15/jdk-release-names/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 08:36:03 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=92</guid>
		<description><![CDATA[The java core libraries are keep growing day by day. Sun developers use have unique name for the each release. This might be a project name for the internal purpose. Playground (1.2), Kestrel (1.3), Merlin (1.4), Tiger (5.0), Mustang (6), Dolphin (7)<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=92&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The java core libraries are keep growing day by day. Sun developers use have unique name for the each release. This might be a project name for the internal purpose.</p>
<ul>
<li>Playground (1.2),</li>
</ul>
<ul>
<li>Kestrel (1.3),</li>
</ul>
<ul>
<li> Merlin (1.4),</li>
</ul>
<ul>
<li>Tiger (5.0),</li>
</ul>
<ul>
<li>Mustang (6),</li>
</ul>
<ul>
<li>Dolphin (7)</li>
</ul><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/92/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=92&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2009/07/15/jdk-release-names/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>
	</item>
		<item>
		<title>SUMO Paint</title>
		<link>http://experiencesharing.wordpress.com/2009/02/27/sumo-paint/</link>
		<comments>http://experiencesharing.wordpress.com/2009/02/27/sumo-paint/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 03:23:15 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Paint]]></category>
		<category><![CDATA[paintings]]></category>
		<category><![CDATA[SUMO]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=85</guid>
		<description><![CDATA[There is a wonderful tool available for painting.  Ppl who used Mspaint for painting, for then it’s really a helpful tool. There are many features are available in this tool and also easy to develop the paintings. http://www.sumopaint.com/web/<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=85&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p class="MsoNormal">There is a wonderful tool available for painting.  Ppl who used Mspaint for painting, for then it’s really a helpful tool.</p>
<p class="MsoNormal">There are many features are available in this tool and also easy to develop the paintings.</p>
<p><a href="http://www.sumopaint.com/web/">http://www.sumopaint.com/web/</a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/85/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=85&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2009/02/27/sumo-paint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>
	</item>
		<item>
		<title>Jetty WebServer</title>
		<link>http://experiencesharing.wordpress.com/2008/10/07/jetty-webserver/</link>
		<comments>http://experiencesharing.wordpress.com/2008/10/07/jetty-webserver/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 04:37:51 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Common]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=81</guid>
		<description><![CDATA[Hi All, I found very interesting information about Jetty WebServer. Link : http://www.mortbay.org/jetty/ Jetty is an open-source, standards-based, full-featured web server implemented entirely in Java. It is released under the Apache 2.0 licence and is therefore free for commercial use and distribution. First created in 1995, Jetty has benefitted from input from a vast user [&#8230;]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=81&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Hi All,</p>
<p>I found very interesting  information about Jetty WebServer.</p>
<p>Link : <a href="http://www.mortbay.org/jetty/" rel="nofollow">http://www.mortbay.org/jetty/</a></p>
<p><span>Jetty</span> is an open-source, standards-based, full-featured web server implemented entirely in Java. It is released under the Apache 2.0  <a href="http://www.mortbay.org/jetty/LICENSE.TXT">licence</a> and is therefore free for commercial use and distribution. First created in 1995, Jetty has benefitted from input from a vast user community and consistent and focused development by a stable core of lead developers. There are many more examples of Jetty in action on the <a class="externalLink" href="http://docs.codehaus.org/display/JETTY/Jetty+Powered">Jetty Powered Page</a> that has selections from among the tens of thousands of production Jetty instances. However, as Jetty aims to be as unobtrusive as possible, countless websites and products are based around Jetty, but Jetty is invisible!</p>
<p><strong>Full commercial support, training and development services for Jetty and Jetty-based projects are available from <a class="externalLink" href="http://www.webtide.com/">Webtide</a>. </strong></p>
<p>Jetty can be used as:</p>
<ul>
<li>a stand-alone traditional web server for static and dynamic content</li>
<li>a dynamic content server behind a dedicated HTTP server such as Apache using mod_proxy</li>
<li>an embedded component within a java application</li>
</ul>
<p>This flexibility means that Jetty can be encountered in a number of different contexts:</p>
<ul>
<li>shipped with products to provide out-of-the-box useability eg  <a class="externalLink" href="http://tapestry.sourceforge.net/">Tapestry</a>, <a class="externalLink" href="http://www.liferay.com/">Liferay</a></li>
<li>distributed on CDs with books to make examples and exercises ready-to-run</li>
<li>incorporated into applications as a HTTP transport eg <a class="externalLink" href="http://www.jxta.org/">JXTA</a>, <a class="externalLink" href="http://www.mx4j.org/">MX4J</a></li>
<li>integrated as a web container in JavaEE app servers eg <a class="externalLink" href="http://www.objectweb.org/jonas/index.html">JOnAS</a>, <a class="externalLink" href="http://geronimo.apache.org/">Geronimo</a>, <a class="externalLink" href="http://sourceforge.net/projects/jboss//">JBoss</a>, <a class="externalLink" href="http://www.huihoo.org/jfox">JFox</a></li>
<li>included as a component of an application eg <a class="externalLink" href="http://maven.apache.org/continuum">Continuum</a>, <a class="externalLink" href="http://www.cenqua.com/fisheye">FishEye</a>, <a class="externalLink" href="http://maven.apache.org/">Maven</a></li>
</ul>
<p>Some of the defining features of Jetty are:</p>
<div class="feature">
<h2>Simplicity</h2>
<p>The guiding principle of Jetty could be said to be &#8220;simplicity not complexity&#8221;. We want to make Jetty easy to understand and use:</p>
<ul>
<li>Configuration is either by API or by xml file</li>
<li>Xml file syntax is a straightforward mapping from the API operating on POJOs</li>
<li>Default configuration files make Jetty useable out-of-the-box</li>
<li>Minimal number of lines required to embed a Jetty instance</li>
</ul>
</div>
<div class="feature">
<h2>Scalability</h2>
<p>In asynchronous Web 2.0 type applications using techniques such as AJAX, connections stay open longer than when serving static pages, and thread and memory requirements can escalate drastically.  Infrastructure must handle that gracefully lest an individual component, such as a slow database connection stop an entire site because of a lack of threads. With Jetty&#8230;</p>
<ul>
<li>Performance degrades gracefully under stress for high quality of service</li>
<li>Working Within the framework of existing web specificiations, handle large user loads and long-lived sessions with <a class="externalLink" href="http://docs.codehaus.org/display/JETTY/Continuations">continuations</a></li>
<li>Integrations available to clustering options such as <a class="externalLink" href="http://wadi.codehaus.org/">WADI</a> and <a class="externalLink" href="http://www.terracotta.org/">Terracotta</a></li>
</ul>
</div>
<div class="feature">
<h2>Efficiency</h2>
<p>A lot of effort goes into optimizing Jetty&#8217;s performance and crafting the code so as to make the footprint as small as possible:</p>
<ul>
<li>Dependencies are kept to the absolute minimum</li>
<li>The core is kept small with extra functionality in optional jars</li>
<li>Scalability is a key concern</li>
<li>Performance degrades gracefully under stress</li>
</ul>
</div>
<div class="feature">
<h2>Embeddability</h2>
<p>Jetty is designed to be a good component. This means that it can easily be embedded in an application without forcing the application to adapt to it:</p>
<ul>
<li>Usage of dependency injection and inversion of control patterns</li>
</ul>
</div>
<div class="feature">
<h2>Pluggability</h2>
<p>Jetty is architected for pluggability. The API allows different implementations of all of the principal Jetty components to be selected. At least one, but sometimes more, implementations of a component are always provided. However if these do not meet your needs, you are free to code your own using the interfaces and abstract classes as a basis. This means that Jetty can be easily customised to a particular application environment. This is particularly useful when Jetty is acting as the web container in a JavaEE server, as Jetty&#8217;s pluggability ensures a tight integration with a host container.</p></div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/81/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=81&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2008/10/07/jetty-webserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>
	</item>
		<item>
		<title>PATH Settings</title>
		<link>http://experiencesharing.wordpress.com/2008/09/29/path-settings/</link>
		<comments>http://experiencesharing.wordpress.com/2008/09/29/path-settings/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 08:44:01 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PATH]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=75</guid>
		<description><![CDATA[PATH Settings I hope us we all very familiar of installing JAVA and configuring with windows. But, when we are installing with new PC, we use to get some new problems. For example, I brought a new PC. I just installed JAVA and Maven in my system. I have set all needed environment variables. But [&#8230;]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=75&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p class="MsoNormal">PATH Settings</p>
<p class="MsoNormal">I hope us we all very familiar of installing JAVA and configuring with windows.</p>
<p class="MsoNormal">But, when we are installing with new PC, we use to get some new problems.</p>
<p class="MsoNormal">For example, I brought a new PC. I just installed JAVA and Maven in my system. I have set all needed environment variables. But when I did JAVA in command prompt, it’s working absolutely fine. but JAVAC is not working. I use to get the message like “<span style="color:black;">javac not recognized as an internal or external command</span>”.</p>
<p class="MsoNormal">Then after some googling in net I got to know that we have to set some PATH variable also for to run JAVAC. My example Path variable is:</p>
<p class="MsoNormal">%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;</p>
<p class="MsoNormal">%PATH%;<strong>%JAVA_HOME%\\bin</strong>;%M2_HOME%\\bin</p>
<p class="MsoNormal">I believe this will help some ppl who new to java</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/75/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=75&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2008/09/29/path-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>
	</item>
		<item>
		<title>39 things wrong with the Iphone</title>
		<link>http://experiencesharing.wordpress.com/2008/08/29/39-things-wrong-with-the-iphone/</link>
		<comments>http://experiencesharing.wordpress.com/2008/08/29/39-things-wrong-with-the-iphone/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 02:54:20 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=67</guid>
		<description><![CDATA[Hi All, 2Day i got a forward mail from my friend Vidya. It’s really very interesting to share with you all. We where waiting for IPhone from last year but i hope now people will get disappointment. This features might be missing in Indian phones. 1. Can&#8217;t copy &#38; paste text. 2. Except for the [&#8230;]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=67&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">Hi All,</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">2Day i got a forward mail from my friend <span style="color:#0000ff;"><a href="http://sagarbvs.wordpress.com/">Vidya</a></span>. It’s really very interesting to share with you all. We where waiting for IPhone from last year but i hope now people will get disappointment.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">This features might be missing in Indian phones.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">1. Can&#8217;t copy &amp; paste text.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">2. Except for the first and last SMS messages in a session, iPhone text messages lack timestamps.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">3. iPhone&#8217;s Safari browser does not support Java or Flash, so you can&#8217;t watch videos (except for YouTube ones) or see parts of certain websites.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">4. The on-screen keyboard can&#8217;t be used in landscape mode in applications other than Safari.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">5. Vibrate mode for incoming text messages is weak.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">6. Incoming text messages appear word-for-word on the screen upon receiving them, which may be a privacy issue for some. (Update: Here&#8217;s a sort of solution.)</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">7. No Undo function for when you&#8217;ve accidentally erased or mistyped text.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">8. Scroll bars don&#8217;t appear in some text fields in the browser, and there are no arrow keys to maneuver through text.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">9. Can&#8217;t save usernames and passwords in Safari.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">10. The YouTube app does not allow you to view or post comments on videos.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">11. Can&#8217;t download or save Word documents, PDF files, or any other file for that matter. Why not add a My Documents folder?</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">12. No spell check feature for web forms.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">13. Can&#8217;t send more than one image in an email.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">14. Except for in the Camera Roll, photos can&#8217;t be edited or removed directly from the iPhone. You have to edit them on your computer and then re-sync them.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">15. The iPhone lacks a Find function for sorting through contacts, e-mails, calendar appointments, notes, etc.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">16. Can&#8217;t update your Facebook status via iPhone&#8217;s Safari browser. Facebook is a fast-growing social network, so iPhone should support it. (Update: Facebook now has an iPhone version of the site, located at iphone.facebook.com)</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">17. No mass edit feature for handling calendar items, notes and e-mails.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">18. Can&#8217;t search within web pages in the browser.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">19. Its 3-day, expensive battery replacement plan.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">20. Can&#8217;t highlight text.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">21. Limited ringtones. Can&#8217;t set songs as ringtones. (Update: Apple now lets you convert some songs into ringtones via iTunes for $0.99 each.)</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">22. Difficult to rewind and fast-forward through long audio and video files (like audiobooks and TV shows or movies).</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">23. No AIM or iChat application.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">24. One too many steps to dial a contact. (Update: In a software update, Apple added a feature that lets you double tap the home button to access your Favorites list of contacts.)</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">25. Because it is recessed, the headphone jack is incompatible with non-Apple headphones. Griffin&#8217;s headphone adapter can solve this problem.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">*Bonus* &#8211; MORE things wrong with the iPhone</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">Here are a few more things wrong with the iPhone, as readers have pointed out in the comments below.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">26. iPhone&#8217;s camera is archaic (no zoom, poor image stabilization, poor quality in low-lit areas).</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">27. No speed dial or voice dial functionality.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">28. Cannot add attachments to emails.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">29. Can&#8217;t use iPhone as a hard drive storage device, unlike the iPod.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">30. Can&#8217;t change the sound notifications for email, voicemail, etc.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">31. Can&#8217;t delete individual entries from the recent calls list without deleting them all, a potential privacy issue.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">32. No 3G data speeds. EDGE is slow at times.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">33. Cannot send photos via text messages.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">34. Cannot send mass text messages. (Update: Apple added mass text messaging to the iPhone via firmware update 1.1.3) </span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">35. iPhone lacks a video camera. (See my article on why mobile video is important)</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">36. No tasks or To-Do widgets.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">37. No support for games.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">38. Can&#8217;t disable auto-correct on the keyboard. Every time it makes a suggestion you don&#8217;t want, you have to tap X to cancel it, which can slow down typing a lot.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">39. iPhone&#8217;s calculator lacks a backspace, so you have to clear the entire process if you accidentally touch an unintended digit.</span></span></p>
<p style="line-height:150%;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;">N.B: If you still want to buy an iphone then hang on&#8230;let the prices slash. Surely 31k(India) is not worthy for the above features lacking in a phone.</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:11pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p><br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/experiencesharing.wordpress.com/67/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/experiencesharing.wordpress.com/67/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/67/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=67&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2008/08/29/39-things-wrong-with-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenNMS with CheckStyle</title>
		<link>http://experiencesharing.wordpress.com/2008/08/27/opennms-with-checkstyle/</link>
		<comments>http://experiencesharing.wordpress.com/2008/08/27/opennms-with-checkstyle/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 09:23:15 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[openNMS]]></category>
		<category><![CDATA[CheckStyle]]></category>
		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=58</guid>
		<description><![CDATA[What is CheckStyle: Checkstyle is a development tool to help programmers to write Java code that adheres to a coding standard. It automates the process of checking Java code to spare humans of this boring task. This makes it ideal for projects that want to enforce a coding standard. Checkstyle is highly configurable and can [&#8230;]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=58&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><strong>What is CheckStyle:</strong></p>
<p><em>Checkstyle</em> is a development tool to help programmers to write Java code that adheres to a coding standard. It automates the process of checking Java code to spare humans of this boring task. This makes it ideal for projects that want to enforce a coding standard.</p>
<p>Checkstyle is highly configurable and can be made to support almost any coding standard. An example configuration file is supplied supporting the <a href="http://java.sun.com/docs/codeconv/">Sun Code Conventions</a>. As well, other sample configuration files are supplied for other well known conventions.</p>
<p>A good example of a report that can be produced using CheckStyle and <a href="http://maven.apache.org/">Maven</a></p>
<p class="MsoNormal">I prefer to use <a href="http://geosoft.no/development/javastyle.html">geosoft</a> java coding conventions always. You can download CheckStyle from <a href="http://checkstyle.sourceforge.net/">here</a>.</p>
<p class="MsoNormal"><strong>Procedure to integrate CheckStyle with OpenNMS Maven:</strong></p>
<p>I believe us all familiar to use <a href="http://maven.apache.org/">Maven</a>.  So I am just directly going for CheckStyle integration.</p>
<p>While compiling OpenNMS code I used CheckStyle to generate Static code Analyze report.</p>
<p>To generate the Checkstyle report as part of the Project Reports, add the Checkstyle plugin in the <tt><span style="font-size:10pt;">&lt;reporting&gt;</span></tt> section of openNMS root <tt><span style="font-size:10pt;">pom.xml</span></tt> .</p>
<pre>&lt;project&gt;
<span>  </span>...
<span>  </span>&lt;reporting&gt;
<span>    </span>&lt;plugins&gt;
<span>      </span>&lt;plugin&gt;
<span>        </span>&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
<span>        </span>&lt;artifactId&gt;maven-checkstyle-plugin&lt;/artifactId&gt;
<span>      </span>&lt;/plugin&gt;
<span>    </span>&lt;/plugins&gt;
<span>  </span>&lt;/reporting&gt;
<span>  </span>...
&lt;/project&gt;
 <span style="font-size:10pt;font-family:&quot;">
</span>I used geosoft check file so I changed the above configuration as per my need

 <a href="http://experiencesharing.files.wordpress.com/2008/08/temp12.jpg"><img class="alignnone size-large wp-image-62" src="http://experiencesharing.files.wordpress.com/2008/08/temp12.jpg?w=455&#038;h=87" alt=""   /></a><!--[if gte vml 1]&gt;-->

<!--[if !vml]--><!--[endif]--></pre>
<p>Then, execute the site plugin to generate the report. Use the following command in command line.</p>
<pre>mvn site</pre>
<p>We can also generate the Checkstyle report by explicitly executing the <tt><span style="font-size:10pt;">checkstyle:checkstyle</span></tt> goal from the command line. It is not required to specify the Checkstyle plugin in your <tt><span style="font-size:10pt;">pom.xml</span></tt> unless you want to use a specific configuration. . Use the following command in command line.</p>
<p>mvn checkstyle:checkstyle</p>
<p>To specifically configure the Checkstyle plugin, we need to add it in the <tt><span style="font-size:10pt;">&lt;build&gt;</span></tt> section of your <tt><span style="font-size:10pt;">pom.xml</span></tt> as shown in the sample below.</p>
<p><span style="font-size:10pt;font-family:&quot;"><!--[if gte vml 1]&gt;                    &lt;![endif]--><!--[if !vml]--><!--[endif]--></span></p>
<p><a href="http://experiencesharing.files.wordpress.com/2008/08/temp.jpg"><img class="aligncenter size-full wp-image-59" src="http://experiencesharing.files.wordpress.com/2008/08/temp.jpg?w=455" alt=""   /></a><span style="font-size:10pt;font-family:&quot;"><!--[if gte vml 1]&gt;                    &lt;![endif]--><!--[if !vml]--><!--[endif]--></span></p>
<p class="MsoNormal"><strong>Note:</strong> The generated report will be saved under target\site folder of each project folder. example : opennms-model\target\site</p>
<p class="MsoNormal">
<p class="MsoNormal">Reference Links:</p>
<p class="MsoNormal">
<p class="MsoNormal"><a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/checkstyle-mojo.html#outputDirectory">http://maven.apache.org/plugins/maven-checkstyle-plugin/checkstyle-mojo.html#outputDirectory</a></p>
<p class="MsoNormal"><a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/usage.html">http://maven.apache.org/plugins/maven-checkstyle-plugin/usage.html</a></p>
<p class="MsoNormal"><a href="http://maven.apache.org/plugins/maven-checkstyle-plugin/">http://maven.apache.org/plugins/maven-checkstyle-plugin/</a></p>
<p class="MsoNormal"><br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/experiencesharing.wordpress.com/58/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/experiencesharing.wordpress.com/58/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/58/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=58&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2008/08/27/opennms-with-checkstyle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>

		<media:content url="http://experiencesharing.files.wordpress.com/2008/08/temp12.jpg?w=500" medium="image" />

		<media:content url="http://experiencesharing.files.wordpress.com/2008/08/temp.jpg" medium="image" />
	</item>
		<item>
		<title>About Google Adsense Again&#8230;</title>
		<link>http://experiencesharing.wordpress.com/2008/08/26/about-google-adsense-again/</link>
		<comments>http://experiencesharing.wordpress.com/2008/08/26/about-google-adsense-again/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 12:40:05 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Adsence]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Google Adsense]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=55</guid>
		<description><![CDATA[Adsense is an advertising program run by Internet giant Google. Google Adsense allows you (blog owner) to sell advertising space on your blog. The program enables you to display relevant text and banner ads on your blog&#8221;s content pages. Banner ads are the most common form of online advertising displayed at the top of many [&#8230;]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=55&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Adsense is an advertising program run by Internet giant Google. Google Adsense allows you (blog owner) to sell advertising space on your blog. The program enables you to display relevant text and banner ads on your blog&#8221;s content pages. Banner ads are the most common form of online advertising displayed at the top of many blog pages. Google pays you a fee when the visitor clicks on the ad.</p>
<p>When you join the Adsense program, you get access to Adsense for content which places ads on your content pages. Because the ads are targeted to what visitors are looking for on your blog or they match the interests of the visitors your content attracts, you earn and at the same time enhance your content pages. Google uses its vast search technology resources to serve ads based on blog content. In this regard, Adsense has become a popular choice for placing advertisements on a blog because the content of the ads is relevant to the blog. For example, ads for kitchen utensils will appear on a blog post about healthy cooking. Google has an extensive inventory of ads for all categories, business, practically for all kinds of content. If Google is unable to display targeted ads on your blog page, you can display a default ad of your choice.</p>
<p>A companion to the Adsense for content is the Adsense for search. It allows you to add a Google search box on your pages. This keeps the visitors on your blog longer since they can search from right on your blog. When a visitor searches the web using the search box, Google shares any ad revenue it makes from those searches with you and you shell nothing to participate.</p>
<p>Another recent addition is the Adsense for feeds. This runs on RSS and Atom feeds. RSS and Atom feeds are standards for publishing regular updates to blog-based content. Ads are displayed in the most suitable feed articles. You are paid for your blog&#8221;s original content; visitors see appropriate advertising and more relevant feeds to choose from.</p>
<p>How to Join</p>
<p>There is no rigid criteria to conform to for acceptance into the Google Adsense program, unlike other online ad networks that place minimum traffic requirement to be accepted. The only real criterion is acceptable content. Of course, any ad program wants to attract quality content blogs only. Assuming you already have a blog on which you can include Adsense links, you first need to be accepted into the program. The first step is to go to sign up. Google will review your blog to find out if you have the necessary traffic and the content that would bring in sufficient clicks to make your taking part in the program beneficial to Google and to you.</p>
<p>Once you are accepted, all you need is a bit of javascript code to incorporate the advertisements into the accepted blog site. Google does the rest like providing appropriate ad links from its inventory of clients to your blog. Targeted ads will start showing up on your blog.</p>
<p>How It Works</p>
<p>There are two sides to Google advertising ? one for advertisers selling a product or service called Adwords and Adsense for blog publishers. Advertisers pay Google to have their ads designed using Adwords appear next to the search page results in Google and a list of significant keywords for their offerings. Google will display an ad only if the provided keywords conform to a visitor search. An advertiser pays Google on a cost per click (CPC) basis. This means an advertiser pays only for that ad if the visitor clicks on the ad and visits the advertiser’s site. Advertisers compete with one another to buy search keywords usually from five cents and above. Nevertheless, Google also takes into consideration the search engine ranking of the advertiser blog, so no one site can just buy keywords. For example, a purchase of the keywords &#8220;digital camera&#8221; produces ads next to Google search result in its home page. Said purchase also shows Adsense ads for digital cameras on other blogs where digital cameras are mentioned.</p>
<p>For their part, blog publishers using Adsense create relevant pages. Google sends out Mediabots (digital robots) which use special algorithms to crawl the host blog page and evaluate the content to determine what keywords are relevant and report the result to Google’s ad server which then serves the appropriate ads. Blog publishers get paid a percentage of the fee that Google receives from the advertiser. This is done through a combination of a pay per click (PPC) and pay per impression basis. Impression is the number of times a specific ad has been displayed. A blog publisher is reimbursed at a fixed rate per thousand impressions. If a page isn’t significant enough, a blog publisher doesn’t get paid as much. There is no charge for the blog publisher to join Adsense. All costs are covered by the advertiser who participates in Adwords.</p>
<p>How Much Money It Makes</p>
<p>The amount of money you (blog publisher) can expect from Google Adsense depends upon several factors. If your blog draws tons of traffic and you focus on a particular niche, Google will serve ads that appeal to visitors of your site. For instance, if you maintain a popular blog devoted to portable media player, you can make a windfall because of the high level of competition for related keywords. Rates for competitive keywords can exceed $1 which impacts your blog&#8221;s earning potential. Conversely, if you are in a less competitive niche, you get occasional traffic only, thus less visitors click on your ads which equates to less money earned.</p>
<p>How much each advertisement pays per generated click is also another important factor. Each Adsense ad is not worth the same. An ad may give you ten cents while another may give you $1 per click. It depends on the demand for that kind of ad. If a number of advertisers are bidding for the same advertising space, the advertiser offering the most per click will get their ad displayed first.</p>
<p>Ad formats and placements influence revenue. Placing ads on the right part of the blog page is significant so that visitors looking at your page will see the ad, at the same time it will be not be overly intrusive to put visitors off.</p>
<p>Fundamentally though, it is all about content. To make money from Adsense, you have to know what your visitors are looking for. It may be information on a topic, a product they want to buy or a service they want to avail of and entertainment. Offering visitors good content will generate highly relevant ads which in turn will draw more clicks on the ads displayed. To optimize content, the same basic rules for search engine optimization apply.</p>
<p>Google doesn’t publish the percentage it takes as a commission and only displays what the blog owner receives in member reports. However, you can make a rough estimate. The average click through rate (CTR) for online advertising is generally around 0.5 to 1%. CTR is the rate at which visitors click an advertisement usually calculated as a percentage of ad impressions (number of times a specific ad has been displayed). What each click pays is dependent on the content and keywords that are generating the ads being served.</p>
<p>Although Google doesn’t release the amount it pays for keywords, you can sign up as an advertiser on top of being a participant in the Adsense program for $5 and see for yourself how much advertisers are paying Google for various click through. For example, a thousand page views with Google ads on them per day, at 1% click through rate and 25 cents per click will yield $2.50 per day. Not a lot but it can cover hosting fees or service fees.</p>
<p>Google Adsense is not a get rich quick program. But there are documented cases of bloggers earning as much as $5,000 a month and more. In fact, Jason Calacanis sold his blog network, Weblogs Inc. for a whopping $25 &#8211; $40 million on Google Adsense revenues of $1 million yearly. There isn’t any sense why a blogger can’t earn much from Google Adsense program. Definitely, there are thousands of dollars worth of reasons to make money from Google Adsense.</p>
<p>Did you find this article useful? For more useful tips &amp; hints, Points to ponder and keep in mind, techniques &amp; insights pertaining to Google Adsense, Do please browse for more information at our website :-<!-- google_ad_section_end --></p>
<p class="author"><a href="http://www.articledashboard.com/profile/Kawajit-Kaur/64801"><br />
</a>
</p>
<p class="articletext"><a href="http://www.articledashboard.com/">Article Directory</a>: <a href="http://www.articledashboard.com" rel="nofollow">http://www.articledashboard.com</a></p>
<p class="articletext">
<p class="articletext">For more useful tips &amp; hints, please browse for more information at our website: &#8211;                                        <a href="http://www.thegooglefund.com/" target="_blank">www.thegooglefund.com</a> <a href="http://www.adsense.reprintarticlesite.com/" target="_blank">www.adsense.reprintarticlesite.com</a></p><br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/experiencesharing.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/experiencesharing.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/55/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=55&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2008/08/26/about-google-adsense-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenNMS &#8211; Email Notification</title>
		<link>http://experiencesharing.wordpress.com/2008/08/25/opennms-email-notification/</link>
		<comments>http://experiencesharing.wordpress.com/2008/08/25/opennms-email-notification/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 07:27:49 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Discovery]]></category>
		<category><![CDATA[email Notification]]></category>
		<category><![CDATA[NMS]]></category>
		<category><![CDATA[Open NMS]]></category>
		<category><![CDATA[openNMS]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=36</guid>
		<description><![CDATA[Hi All, From last week I just started to work with OpenNMS. It’s such a wonderful web based network discovery tool. It has lot of features then other NMS products. I downloaded the version 1.5.91 from OpenNMS download server. Compiled with maven and added with eclipse workbench. Every thing works fine except mail notification. After [&#8230;]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=36&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p class="MsoNormal">Hi All,</p>
<p class="MsoNormal">From last week I just started to work with <a title="OpenNMS" href="http://www.opennms.org/index.php/Main_Page">OpenNMS</a>. It’s such a wonderful web based network discovery tool. It has lot of features then other NMS products.</p>
<p class="MsoNormal">I downloaded the version 1.5.91 from OpenNMS <a href="http://www.opennms.org/index.php/Checkout_the_Source_Code">download server</a>. Compiled with maven and added with eclipse workbench. Every thing works fine except mail notification. After some RND on this, finally i solved the problem.  I used gmail smtp server.</p>
<p class="MsoNormal">
<p class="MsoNormal">All open NMS configurations related files are found under <strong>etc</strong> folder of openNMS. To enable mail notification we need to do some changes in the configuration files.<span style="color:blue;"> </span><strong><span style="text-decoration:underline;"><span style="text-decoration:none;"> </span></span></strong></p>
<p class="MsoNormal"><strong><span style="text-decoration:underline;">Edit Javamail-configuration.xml to set SMTP information<span style="text-decoration:none;"> </span></span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.fromAddress=frommailid@gmail.com</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.useJMTA=false</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.transport=smtp</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.mailHost=smtp.gmail.com</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.smtpport=587</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.smtpssl.enable=false</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.authenticate=true</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.authenticateUser=tomailid@gmail.com</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.authenticatePassword=password</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.starttls.enable=true</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.messageContentType=text/html</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;">org.opennms.core.utils.charset=UTF-8</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;"> </span><strong></strong></p>
<p class="MsoNormal"><strong><span style="text-decoration:underline;">Edit notifd-configuration.xml to enable notification</span></strong></p>
<p>status=&#8221;on&#8221;</p>
<p>E<strong>xample: </strong><br />
notifd-configuration<br />
status=<span style="color:#ff0000;">&#8220;on&#8221;</span><br />
pages-sent=&#8221;SELECT * FROM notifications&#8221;<br />
next-notif-id=&#8221;SELECT nextval(&#8216;notifynxtid&#8217;)&#8221;<br />
next-group-id=&#8221;SELECT nextval(&#8216;notifygrpid&#8217;)&#8221;</p>
<p class="MsoNormal">
<p><strong><span style="text-decoration:underline;">User mail configuration for notification:</span></strong></p>
<p><strong><span style="text-decoration:underline;"> </span></strong></p>
<p>As per your need you can configure the duty schedules.</p>
<p><strong>Example:</strong></p>
<p><img class="aligncenter size-full wp-image-37" src="http://experiencesharing.files.wordpress.com/2008/08/open1.jpg?w=455" alt=""   /></p>
<p><img class="aligncenter size-medium wp-image-39" src="http://experiencesharing.files.wordpress.com/2008/08/open2.jpg?w=300&#038;h=91" alt=""   /></p>
<p><strong> </strong></p>
<p><strong><!--[if gte vml 1]&gt; &lt;![endif]--></strong></p>
<p><strong> </strong></p>
<p><strong><span style="text-decoration:underline;">Group configuration for notify: </span></strong></p>
<p><strong><span style="text-decoration:underline;"> </span></strong></p>
<p>As per your need you can configure the duty schedules.</p>
<p><strong>Example:</strong></p>
<p><img class="aligncenter size-large wp-image-42" src="http://experiencesharing.files.wordpress.com/2008/08/open32.jpg?w=455&#038;h=181" alt=""   /></p>
<p><img class="alignnone size-large wp-image-44" src="http://experiencesharing.files.wordpress.com/2008/08/open4.jpg?w=455&#038;h=134" alt=""   /></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>When my node is down, i got a email notification. please see the below mail.</strong></p>
<p><strong> </strong></p>
<p><img class="alignnone size-large wp-image-43" src="http://experiencesharing.files.wordpress.com/2008/08/open5.jpg?w=455&#038;h=157" alt=""   /></p>
<p><strong> </strong></p>
<p class="MsoNormal">
<p><strong><span style="font-size:12pt;font-family:&quot;"><!--[endif]--></span></strong></p><br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/experiencesharing.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/experiencesharing.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/36/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=36&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2008/08/25/opennms-email-notification/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>

		<media:content url="http://experiencesharing.files.wordpress.com/2008/08/open1.jpg" medium="image" />

		<media:content url="http://experiencesharing.files.wordpress.com/2008/08/open2.jpg?w=300" medium="image" />

		<media:content url="http://experiencesharing.files.wordpress.com/2008/08/open32.jpg?w=500" medium="image" />

		<media:content url="http://experiencesharing.files.wordpress.com/2008/08/open4.jpg?w=500" medium="image" />

		<media:content url="http://experiencesharing.files.wordpress.com/2008/08/open5.jpg?w=500" medium="image" />
	</item>
		<item>
		<title>Google 411</title>
		<link>http://experiencesharing.wordpress.com/2008/08/11/google-411/</link>
		<comments>http://experiencesharing.wordpress.com/2008/08/11/google-411/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 13:26:54 +0000</pubDate>
		<dc:creator><![CDATA[iamsananth]]></dc:creator>
				<category><![CDATA[Common]]></category>

		<guid isPermaLink="false">http://experiencesharing.wordpress.com/?p=33</guid>
		<description><![CDATA[Hi All, 2Day i got a good information about GOOGLE 411. Its really a amazing product form Google. Google&#8217;s new 411 service is free, fast and easy to use. Give it a try now and see how simple it is to find and connect with local businesses for free. 4 Easy steps tyo connect Dial [&#8230;]<img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=33&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Hi All,</p>
<p>2Day i got a good information about GOOGLE 411. Its really a amazing product form Google.</p>
<p>Google&#8217;s new 411 service is free, fast and easy to use. Give it a try now and see how simple it is to find and connect with local businesses for free.<br />
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='455' height='286' src='http://www.youtube.com/embed/cN0q8SvlQAk?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0' allowfullscreen='true'></iframe></span><br />
<strong>4 Easy steps tyo connect</strong></p>
<ol>
<li>Dial 1-800-GOOG-411 from any phone</li>
<li>State the location and business type</li>
<li>Connect to the business for free</li>
<li>Done!</li>
</ol><br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/experiencesharing.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/experiencesharing.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/experiencesharing.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/experiencesharing.wordpress.com/33/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=experiencesharing.wordpress.com&#038;blog=4256754&#038;post=33&#038;subd=experiencesharing&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://experiencesharing.wordpress.com/2008/08/11/google-411/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ba0524e8d1b06bfbcf2347fb0b34193?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Annu</media:title>
		</media:content>
	</item>
	</channel>
</rss>
