<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss1full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="ja">
	<channel rdf:about="http://www.in-vitro.jp/blog/index.cgi/index.rss">
		<title>試験管のなかのコード</title>
		<link>http://www.in-vitro.jp/blog/index.cgi</link>
		<description>ある開発者の私的実験室</description>
		<dc:creator>in-vitro (mailto:)</dc:creator>
		<admin:generatorAgent rdf:resource="http://www.blosxom.com/?v=2.0" />
		<admin:errorReportsTo rdf:resource="mailto:" />
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://www.in-vitro.jp/blog/index.cgi/Apple/20121211_01.htm" />
				<rdf:li rdf:resource="http://www.in-vitro.jp/blog/index.cgi/Misc/20121106_01.htm" />
				<rdf:li rdf:resource="http://www.in-vitro.jp/blog/index.cgi/Misc/20120819_01.htm" />
			</rdf:Seq>
		</items>
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rdf+xml" href="http://feeds.feedburner.com/invitrojp" /><feedburner:info uri="invitrojp" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /></channel>
	<item rdf:about="http://www.in-vitro.jp/blog/index.cgi/Apple/20121211_01.htm">
		<title><![CDATA[OS X Mountain Lion で Apache HTTP Server を有効にする方法]]></title>
		<link>http://feedproxy.google.com/~r/invitrojp/~3/GaghnfMnpUI/20121211_01.htm</link>
		<description><![CDATA[Mountain Lion で Apache HTTP Server を有効にする方法をメモ。Apache HTTP Server の起動  $ httpd -vServer version: Apache/2.2.22 (Unix)Server built:   Aug 24 2012 17:16:58$ sudo apachectl start$  HTML の編集  DocumentRoot は /Library/WebServer/Documents になっている。  $ cat /Library/WebServer/Documents/index.html.en &lt;html&gt;&lt;body&gt;&lt;h1&gt;It works!&lt;/h1&gt;&lt;/body&gt;&lt;/html&gt;  ]]></description>
		<dc:subject>Apple</dc:subject>
		<dc:creator>in-vitro (mailto:)</dc:creator>
		<dc:date>2012-12-11T00:00+09:00</dc:date>
		<content:encoded><![CDATA[
<p>
Mountain Lion で Apache HTTP Server を有効にする方法をメモ。
</p>
<h4>Apache HTTP Server の起動</h4>
<p>
  <blockquote>
<pre>
$ httpd -v
Server version: Apache/2.2.22 (Unix)
Server built:   Aug 24 2012 17:16:58

$ sudo apachectl start
$
</pre>
  </blockquote>
</p>
<h4>HTML の編集</h4>
<p>
  DocumentRoot は /Library/WebServer/Documents になっている。<br />
  <blockquote>
<pre>
$ cat /Library/WebServer/Documents/index.html.en 
&lt;html&gt;&lt;body&gt;&lt;h1&gt;It works!&lt;/h1&gt;&lt;/body&gt;&lt;/html&gt;
</pre>
  </blockquote>
</p><img src="http://feeds.feedburner.com/~r/invitrojp/~4/GaghnfMnpUI" height="1" width="1"/>]]></content:encoded>
		<trackback:ping rdf:resource="http://www.in-vitro.jp/blog/index.cgi/Apple/20121211_01.trackback" />
	<feedburner:origLink>http://www.in-vitro.jp/blog/index.cgi/Apple/20121211_01.htm</feedburner:origLink></item>
	<item rdf:about="http://www.in-vitro.jp/blog/index.cgi/Misc/20121106_01.htm">
		<title><![CDATA[クライアント証明書による ssh 接続設定をメモ]]></title>
		<link>http://feedproxy.google.com/~r/invitrojp/~3/_ab3UbNRPfU/20121106_01.htm</link>
		<description><![CDATA[Server 側の設定  $ ssh-keygen $ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys$ chmod 600 ~/.ssh/authorized_keys  Client 側の設定  Server から Client に ~/.ssh/id_rsa をコピーし、以下を実行。  $ ssh-add ~/.ssh/id_rsa  ]]></description>
		<dc:subject>Misc</dc:subject>
		<dc:creator>in-vitro (mailto:)</dc:creator>
		<dc:date>2012-11-06T00:00+09:00</dc:date>
		<content:encoded><![CDATA[
<h5>Server 側の設定</h5>
<p>
  <blockquote>
<pre>
$ ssh-keygen 
$ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
$ chmod 600 ~/.ssh/authorized_keys
</pre>
  </blockquote>
</p>
<h5>Client 側の設定</h5>
<p>
  Server から Client に ~/.ssh/id_rsa をコピーし、以下を実行。
  <blockquote>
<pre>
$ ssh-add ~/.ssh/id_rsa
</pre>
  </blockquote>
</p><img src="http://feeds.feedburner.com/~r/invitrojp/~4/_ab3UbNRPfU" height="1" width="1"/>]]></content:encoded>
		<trackback:ping rdf:resource="http://www.in-vitro.jp/blog/index.cgi/Misc/20121106_01.trackback" />
	<feedburner:origLink>http://www.in-vitro.jp/blog/index.cgi/Misc/20121106_01.htm</feedburner:origLink></item>
	<item rdf:about="http://www.in-vitro.jp/blog/index.cgi/Misc/20120819_01.htm">
		<title><![CDATA[underscore_notation をお手軽に CamelCase に変換する方法]]></title>
		<link>http://feedproxy.google.com/~r/invitrojp/~3/jyMBR7uwHPg/20120819_01.htm</link>
		<description><![CDATA[正規表現で underscore_notation を CamelCase に変換する方法をメモ。  $ echo "foo_bar_hoge" | gsed 's/_\([a-z]\)/\u\1/g' fooBarHoge    で、これを更にお手軽にするために  pbpaste | gsed 's/_\([a-z]\)/\u\1/g' | pbcopy    OS X では pb* と組み合わせて使うと便利。  Alfred の Extension 化しておくと更に便利。]]></description>
		<dc:subject>Misc</dc:subject>
		<dc:creator>in-vitro (mailto:)</dc:creator>
		<dc:date>2012-08-19T00:00+09:00</dc:date>
		<content:encoded><![CDATA[
<p>
正規表現で underscore_notation を CamelCase に変換する方法をメモ。
  <blockquote>
<pre>
$ echo "foo_bar_hoge" | gsed 's/_\([a-z]\)/\u\1/g' 
fooBarHoge
</pre>
  </blockquote>
</p>
<p>
  で、これを更にお手軽にするために
  <blockquote>
<pre>
pbpaste | gsed 's/_\([a-z]\)/\u\1/g' | pbcopy
</pre>
  </blockquote>
  OS X では pb* と組み合わせて使うと便利。
  Alfred の Extension 化しておくと更に便利。
</p>
<img src="http://feeds.feedburner.com/~r/invitrojp/~4/jyMBR7uwHPg" height="1" width="1"/>]]></content:encoded>
		<trackback:ping rdf:resource="http://www.in-vitro.jp/blog/index.cgi/Misc/20120819_01.trackback" />
	<feedburner:origLink>http://www.in-vitro.jp/blog/index.cgi/Misc/20120819_01.htm</feedburner:origLink></item>
</rdf:RDF>
