<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" >
   <channel>
    <atom:link href="http://shareyourknowledge.webnode.com/rss/all.xml" rel="self" type="application/rss+xml" />
      <title><![CDATA[share-your-knowledge.com]]></title>
      <link>http://shareyourknowledge.webnode.com/archive/news/</link>
      <description></description>
      <language>en</language>
      <pubDate>Thu, 08 Sep 2011 11:17:00 +0200</pubDate>
      <lastBuildDate>Thu, 08 Sep 2011 11:17:00 +0200</lastBuildDate>
      <category><![CDATA[Programs]]></category>
      <category><![CDATA[Articles]]></category>
      <category><![CDATA[Sample Resignation Letter]]></category>
      <category><![CDATA[fun]]></category>
      <category><![CDATA[News]]></category>
      <category><![CDATA[Blog]]></category>
      <category><![CDATA[Events Calendar]]></category>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs>
      <generator>Rubicus v2.0</generator>
      <managingEditor><![CDATA[saiyansharwan@gmail.com (Sharwan Sharwan)]]></managingEditor>
      <webMaster><![CDATA[saiyansharwan@gmail.com (Sharwan Sharwan)]]></webMaster>
      <item>
         <title><![CDATA[LDAP authentication in active directory]]></title>
         <link>http://www.share-your-knowledge.com/news/ldap-authentication-in-active-directory/</link>
         <description><![CDATA[
	This is a sample program allows to authenticate the user in windows active directory .

	&nbsp;

	public static HashMap authenticateUser(String userName, String password,String doaminName, String LDAPIPAddress, String LDAPPort)

	{

	&nbsp; &nbsp;System.out.println("LDAP Authentication Started");

	&nbsp; &nbsp;String firstName = null, lastName = null, LDAPuserName = null;

	&nbsp; &nbsp;ArrayList&lt;String&gt; memberOf = null;

	&nbsp;

	&nbsp; &nbsp;HashMap userAttributes = new...]]></description>
         <pubDate>Thu, 08 Sep 2011 11:17:00 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/ldap-authentication-in-active-directory/</guid>
         <category>Programs</category>
      </item>
      <item>
         <title><![CDATA[JVM Memory Overview]]></title>
         <link>http://www.share-your-knowledge.com/news/jvm-memory-overview/</link>
         <description><![CDATA[
	METHOD AREA


	
		Inside a Java virtual machine instance, information about loaded types is stored in a logical area of memory called the method area.
	
		When the JVM loads a type, it uses a class loader to locate the appropriate class file.
	
		The class loader reads in the class file in a linear stream of binary data and passes it to the virtual machine.
	
		The virtual machine extracts information about the type from the binary data and stores the information in the method...]]></description>
         <pubDate>Tue, 23 Aug 2011 22:55:00 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/jvm-memory-overview/</guid>
         <category>Articles</category>
      </item>
      <item>
         <title><![CDATA[Java md5 example with MessageDigest]]></title>
         <link>http://www.share-your-knowledge.com/news/java-md5-example-with-messagedigest/</link>
         <description><![CDATA[
	Overview OF MD5
	Message-Digest algorithm 5 is cryptographic hash function with a 128-bit hash value. As an internet standard (RFC:1321),MD5 has been employed in a wide variety of security applications, and is also commonly used to check the integrity of files.The 128-bit (16-byte) MD5 hashes are typically represented as a sequence of 32 hexadecimal digits. The following demonstrates a 43-byte ASCII input and the corresponding MD5 hash:
	
	MD5 in Java
	This is a quick tip for implementing md5...]]></description>
         <pubDate>Tue, 23 Aug 2011 22:54:00 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/java-md5-example-with-messagedigest/</guid>
         <category>Programs</category>
      </item>
      <item>
         <title><![CDATA[sample resignation letter]]></title>
         <link>http://www.share-your-knowledge.com/news/sample-resignation-letter/</link>
         <description><![CDATA[
	Hi,
	
	I hereby tender my resignation from [ COMPANY NAME], effective on [ DATE ].
	
	I want to express my gratitude for a rewarding employment experience with [ COMPANY NAME ] and with you personally. This decision to pursue another opportunity was not an easy one. But it is right for me as I work toward fulfilling career goals. I hope you will respect my position in this matter. Kindly accept my resignation and relieve me on or before [RELIEVING DATE].
	
	My efforts until my end date will...]]></description>
         <pubDate>Tue, 23 Aug 2011 22:47:00 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/sample-resignation-letter/</guid>
         <category>Sample Resignation Letter</category>
      </item>
      <item>
         <title><![CDATA[Who is the BEST - Infosys, CTS or TCS?  (Really Nice)]]></title>
         <link>http://www.share-your-knowledge.com/news/who-is-the-best-infosys-cts-or-tcs-really-nice-/</link>
         <description><![CDATA[
	
	One day, three consultan&nbsp;ts, one from CTS, one from Infosys and one from TCS, went out for a walk.&nbsp;
	
	"Why don't we prove who is the best among ourselves?"&nbsp; &nbsp; &nbsp; &nbsp;
	
	Why not, said the other two.&nbsp;
	
	The Infoscion said "Let's have a test. Whoever makes this monkey laugh, works for the best firm".&nbsp;
	
	Being a pure logical strategis&nbsp;t, the person from TCS tried to make the monkey Laugh by telling jokes. The monkey stayed still.&nbsp;
	
	As a more...]]></description>
         <pubDate>Tue, 23 Aug 2011 16:21:00 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/who-is-the-best-infosys-cts-or-tcs-really-nice-/</guid>
         <category>fun</category>
      </item>
      <item>
         <title><![CDATA[How the Java Virtual Machine (JVM) Works]]></title>
         <link>http://www.share-your-knowledge.com/news/how-the-java-virtual-machine-jvm-works/</link>
         <description><![CDATA[
	&nbsp;

	In high-level programming languages such as C and C++, we write a program in a human-readable format, and a program called a compiler translates it to a binary format called executable code that the computer can understand and execute. The executable code depends upon the computer machine that we use to execute our program; it is machine dependent. In Java, this process of writing to executing a program is very similar, but with one important difference that allows us to write Java...]]></description>
         <pubDate>Mon, 22 Aug 2011 15:39:00 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/how-the-java-virtual-machine-jvm-works/</guid>
         <category>Articles</category>
      </item>
      <item>
         <title><![CDATA[Visitors notice]]></title>
         <link>http://www.share-your-knowledge.com/news/visitors-notice/</link>
         <description><![CDATA[Let your visitors know about news and events on your website as often as possible. You need to keep your website up-to-date so that your visitors will get used to visiting your pages regularly. You can use RSS feeds to deliver new articles directly to your readers.]]></description>
         <pubDate>Sun, 21 Aug 2011 16:38:10 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/visitors-notice/</guid>
         <category>News</category>
      </item>
      <item>
         <title><![CDATA[Website launched]]></title>
         <link>http://www.share-your-knowledge.com/news/website-launched/</link>
         <description><![CDATA[Our new website has been launched today.
	Tell your visitors why you have started a new presentation and how it benefits them. Mention your goals and project advantages. Try to briefly give your visitors reasons why they should return to your pages.]]></description>
         <pubDate>Sun, 21 Aug 2011 16:37:10 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/website-launched/</guid>
         <category>News</category>
      </item>
      <item>
         <title><![CDATA[First blog]]></title>
         <link>http://www.share-your-knowledge.com/news/first-blog/</link>
         <description><![CDATA[Our new blog has been launched today. Stay focused on it and we will try to keep you informed. You can read new posts on this blog via the RSS feed.]]></description>
         <pubDate>Sun, 21 Aug 2011 16:37:10 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/first-blog/</guid>
         <category>Blog</category>
      </item>
      <item>
         <title><![CDATA[New event]]></title>
         <link>http://www.share-your-knowledge.com/news/new-event/</link>
         <description><![CDATA[This is a sample event description. You can edit this description as you wish or remove the entire event.]]></description>
         <pubDate>Sun, 21 Aug 2011 16:37:10 +0200</pubDate>
         <guid isPermaLink="true">http://www.share-your-knowledge.com/news/new-event/</guid>
         <category>Events Calendar</category>
      </item>
   </channel>
</rss>
