<?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/"
	>

<channel>
	<title>kb.hurricane-ridge.com &#187; Languages</title>
	<atom:link href="http://kb.hurricane-ridge.com/category/languages/feed" rel="self" type="application/rss+xml" />
	<link>http://kb.hurricane-ridge.com</link>
	<description>My personal - but public - knowledge base</description>
	<lastBuildDate>Mon, 09 Jan 2012 14:49:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Building ri with RVM</title>
		<link>http://kb.hurricane-ridge.com/languages/ruby/building-ri-with-rvm</link>
		<comments>http://kb.hurricane-ridge.com/languages/ruby/building-ri-with-rvm#comments</comments>
		<pubDate>Wed, 18 May 2011 13:29:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[ri]]></category>
		<category><![CDATA[rvm]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=1079</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: plain; light: true; title: ; notranslate">
&gt; rvm docs generate-ri
Generating ri documentation, be aware that this could take a *long* time, and depends heavily on your system resources...
( Errors will be logged to /opt/rvm-base//rvm/log/ruby-1.8.7-p334/docs.log )
</pre>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/languages/ruby/building-ri-with-rvm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Ruby Gems as a non-root user</title>
		<link>http://kb.hurricane-ridge.com/languages/ruby/installing-ruby-gems-as-a-non-root-user</link>
		<comments>http://kb.hurricane-ridge.com/languages/ruby/installing-ruby-gems-as-a-non-root-user#comments</comments>
		<pubDate>Mon, 31 May 2010 22:31:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[gem install]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=952</guid>
		<description><![CDATA[Information from How to install gems when you&#8217;re not root as recorded in Google&#8217;s cache (site appears to be down from here, perhaps permanently). Set the GEM_PATH environment variable: When installing gems, use the &#8220;-i&#8221; flag: You may wish to add ~/gems/bin to your shell&#8217;s path.]]></description>
			<content:encoded><![CDATA[<p>Information from <a href="http://scottstuff.net/blog/2006/07/28/how-to-install-gems-when-youre-not-root">How to install gems when you&#8217;re not root</a> as recorded in Google&#8217;s cache (site appears to be down from here, perhaps permanently).</p>
<p>Set the GEM_PATH environment variable:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
export GEM_PATH=~/gems
</pre>
<p>When installing gems, use the &#8220;-i&#8221; flag:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
gem install -i $GEM_PATH some_random_gem
</pre>
<p>You may wish to add ~/gems/bin to your shell&#8217;s path.</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/languages/ruby/installing-ruby-gems-as-a-non-root-user/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Certificate to a JDK Installation</title>
		<link>http://kb.hurricane-ridge.com/languages/java/add-a-certificate-to-a-jdk-installation</link>
		<comments>http://kb.hurricane-ridge.com/languages/java/add-a-certificate-to-a-jdk-installation#comments</comments>
		<pubDate>Tue, 02 Feb 2010 22:01:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=826</guid>
		<description><![CDATA[&#62; sudo /depot/jdk-1.6/bin/keytool -keystore /depot/jdk-1.6/jre/lib/security/cacerts -import -file example.pem -alias EXAMPLE Password: Enter keystore password: Owner: CN=dc02, DC=example, DC=com Issuer: CN=dc01, DC=example, DC=com Serial number: 70e889ad000000000009 Valid from: Mon Mar 30 15:56:24 PDT 2009 until: Wed Mar 30 16:06:24 PDT 2011 Certificate fingerprints: MD5: 5B:2E:90:C6:2D:3F:C9:9F:8D:E6:9D:15:AD:3C:0A:AD SHA1: B9:0B:62:65:72:72:80:0B:1E:8F:71:B5:87:A7:FB:6D:E8:A5:34:E5 Signature algorithm name: SHA1withRSA Version: 3 Extensions: #1: ObjectId: [...]]]></description>
			<content:encoded><![CDATA[<p><code>&gt; sudo /depot/jdk-1.6/bin/keytool -keystore /depot/jdk-1.6/jre/lib/security/cacerts -import -file example.pem -alias EXAMPLE<br />
Password:<br />
Enter keystore password:<br />
Owner: CN=dc02, DC=example, DC=com<br />
Issuer: CN=dc01, DC=example, DC=com<br />
Serial number: 70e889ad000000000009<br />
Valid from: Mon Mar 30 15:56:24 PDT 2009 until: Wed Mar 30 16:06:24 PDT 2011<br />
Certificate fingerprints:<br />
         MD5:  5B:2E:90:C6:2D:3F:C9:9F:8D:E6:9D:15:AD:3C:0A:AD<br />
         SHA1: B9:0B:62:65:72:72:80:0B:1E:8F:71:B5:87:A7:FB:6D:E8:A5:34:E5<br />
         Signature algorithm name: SHA1withRSA<br />
         Version: 3<br />
Extensions:<br />
#1: ObjectId: 2.5.29.19 Criticality=true<br />
BasicConstraints:[<br />
  CA:true<br />
  PathLen:2147483647<br />
]<br />
#2: ObjectId: 1.3.6.1.4.1.311.21.2 Criticality=false<br />
#3: ObjectId: 2.5.29.15 Criticality=false<br />
KeyUsage [<br />
  DigitalSignature<br />
  Key_CertSign<br />
  Crl_Sign<br />
]<br />
#4: ObjectId: 2.5.29.14 Criticality=false<br />
SubjectKeyIdentifier [<br />
KeyIdentifier [<br />
0000: 23 A9 82 4C 1A EC 2B 6B   61 A4 FE A3 76 67 A0 E3  #..L..+ka...vg..<br />
0010: C8 BF 53 7E                                        ..S.<br />
]<br />
]<br />
#5: ObjectId: 1.3.6.1.4.1.311.21.1 Criticality=false<br />
#6: ObjectId: 1.3.6.1.4.1.311.20.2 Criticality=false<br />
#7: ObjectId: 1.3.6.1.5.5.7.1.1 Criticality=false<br />
AuthorityInfoAccess [<br />
  [<br />
   accessMethod: 1.3.6.1.5.5.7.48.2<br />
   accessLocation: URIName: ldap:///CN=dc01,CN=AIA,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=example,DC=com?cACertificate?base?objectClass=certificationAuthority,<br />
   accessMethod: 1.3.6.1.5.5.7.48.2<br />
   accessLocation: URIName: http://dc01.example.com/CertEnroll/dc01.example.com_dc01.crt]<br />
]<br />
#8: ObjectId: 2.5.29.31 Criticality=false<br />
CRLDistributionPoints [<br />
  [DistributionPoint:<br />
     [URIName: ldap:///CN=dc01,CN=dc01,CN=CDP,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=example,DC=com?certificateRevocationList?base?objectClass=cRLDistributionPoint, URIName: http://dc01.example.com/CertEnroll/dc01.crl]<br />
]]<br />
#9: ObjectId: 2.5.29.35 Criticality=false<br />
AuthorityKeyIdentifier [<br />
KeyIdentifier [<br />
0000: A7 BB 47 5D 87 FE B3 00   06 6D F9 F0 05 E4 E0 02  ..G].....m......<br />
0010: D3 4E BE F3                                        .N..<br />
]<br />
]<br />
Trust this certificate? [no]:  yes<br />
Certificate was added to keystore<br />
</code></p>
<p>The default password is &#8220;changeit&#8221; &#8211; you did <em>change it</em>, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/languages/java/add-a-certificate-to-a-jdk-installation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

