<?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:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>橋本雄の技術ブログ</title>
	<atom:link href="http://labs.asunochikara.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.asunochikara.com</link>
	<description>橋本雄がvim、ubuntu、phpなどの技術情報をまとめています</description>
	<lastBuildDate>Tue, 09 Mar 2010 03:10:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/feed/" />
		<item>
		<title>csvの編集に使うエディタは？</title>
		<link>http://labs.asunochikara.com/2010/03/csv-edito/</link>
		<comments>http://labs.asunochikara.com/2010/03/csv-edito/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 03:10:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[vim]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[editor]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=264</guid>
		<description><![CDATA[今更かもしれませんが、CSVファイルの編集に適したエディタって何でしょう？
Excel
一番楽かもしれませんが、Excel自体の起動時間コストがかかることと、保存すると何か付加価値を押し付けられそうな予感もあって、少し怖 [...]]]></description>
			<content:encoded><![CDATA[<p>今更かもしれませんが、CSVファイルの編集に適したエディタって何でしょう？</p>
<p><strong>Excel</strong><br />
一番楽かもしれませんが、Excel自体の起動時間コストがかかることと、保存すると何か付加価値を押し付けられそうな予感もあって、少し怖さもあります。</p>
<p><strong>cassava</strong><br />
<a href="http://www.asukaze.net/soft/cassava/">http://www.asukaze.net/soft/cassava/<br />
</a><br />
現実的には一番いいかも。フリーソフトで公開されています。</p>
<p><strong>vim</strong><br />
vimを常用している私の個人的な意見としては、</p>
<p>http://vim-users.jp/2009/09/hack78/</p>
<p>これで、以下のようにありのまま編集できます。便利です</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">:Csvhl <span style="color: #000000;">1</span>  <span style="color: #7a0874; font-weight: bold;">&#40;</span>数字はカラム番号（左から<span style="color: #000000;">0</span>,<span style="color: #000000;">1</span>,<span style="color: #000000;">2</span>と数える）</pre></div></div>

<p>本当は、その部分だけを別ウインドウで、それぞれのfiletypeにて編集できるとさらにいいんですけれどね。<br />
ついでに、引用符がついているCSVなどをうまく認識してもらえると良いんですけれど。</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/03/csv-edito/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/03/csv-edito/" />
	</item>
		<item>
		<title>gmailの複雑な検索</title>
		<link>http://labs.asunochikara.com/2010/03/gmail-3/</link>
		<comments>http://labs.asunochikara.com/2010/03/gmail-3/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 07:11:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=252</guid>
		<description><![CDATA[会社でもプライベートでもグーグルのappsを利用しております。
とっても検索が便利なんですが、特殊な検索方法をメモしておきます。

特定のラベルから検索
例えば、迷惑メールのみ

l:spam
label:spam

 [...]]]></description>
			<content:encoded><![CDATA[<p>会社でもプライベートでもグーグルのappsを利用しております。<br />
とっても検索が便利なんですが、特殊な検索方法をメモしておきます。</p>
<ul>
<li><strong>特定のラベルから検索</strong><br />
例えば、迷惑メールのみ</p>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">l:spam
label:spam</pre></div></div>

<p>とか、自分が送ったもののみ</p>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">l:sent</pre></div></div>

</li>
<li><strong>件名から検索</strong>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">subject:</pre></div></div>

</li>
<li><strong>チャット履歴から検索</strong>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">is:chat</pre></div></div>

</li>
<li><strong>特定の日付から検索</strong>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">after:2008/1/1 before:2008/5/1</pre></div></div>

</li>
<li>
<strong>添付ファイル付きメールだけを検索</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">has:attachment</pre></div></div>

<p>もしくは</p>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">has:attachment xls</pre></div></div>

<p>さらに</p>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">filename:readme.txt</pre></div></div>

</li>
<li><strong>受信トレイのみ</strong>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">in:inbox
label:inbox
l:^i</pre></div></div>

</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/03/gmail-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/03/gmail-3/" />
	</item>
		<item>
		<title>テキストエディタ特集！</title>
		<link>http://labs.asunochikara.com/2010/02/editor/</link>
		<comments>http://labs.asunochikara.com/2010/02/editor/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 03:32:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=247</guid>
		<description><![CDATA[社内でエディタはどれがいいのか？という話があり、いくらでも話せるネタでしたが、まとめてみたいと思います。

vim（フリー）
komodo edit（フリー）

emeditor（フリー・有償）

uneditor（フリ [...]]]></description>
			<content:encoded><![CDATA[<p>社内でエディタはどれがいいのか？という話があり、いくらでも話せるネタでしたが、まとめてみたいと思います。</p>
<ol>
<li><a href="http://vim.org">vim（フリー）</a>
<li><a href="http://www.activestate.com/komodo_edit/">komodo edit（フリー）</a>
</li>
<li><a href="http://jp.emeditor.com/modules/download2/rewrite/tc_5.html">emeditor（フリー・有償）</a>
</li>
<li><a href="http://www.yokkasoft.net/">uneditor（フリー）</a>
</li>
<li>html系　<a href="http://www.kashim.com/eve/">cressent eve（フリー）</a>
</li>
<li><a href="http://sakura_editor.at.infoseek.co.jp/">サクラエディタ（フリー）</a>
</li>
<li><a href="http://www5f.biglobe.ne.jp/t-susumu/library/tpad.html">TeraPad（フリー）</a>
</li>
<li><a href="http://www.poedit.net/">PoEdit（フリー）</a>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/02/editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/02/editor/" />
	</item>
		<item>
		<title>ネットワーク上の場所にあるファイルを開く際に Office プログラムの動作が遅いか応答を停止した (ハングした) ように見える</title>
		<link>http://labs.asunochikara.com/2010/02/office/</link>
		<comments>http://labs.asunochikara.com/2010/02/office/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 04:05:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=245</guid>
		<description><![CDATA[たまたま見つけたのですが、
ネットワーク上の場所にあるファイルを開く際に Office プログラムの動作が遅いか応答を停止した (ハングした) ように見える
http://support.microsoft.com/kb [...]]]></description>
			<content:encoded><![CDATA[<p>たまたま見つけたのですが、<br />
ネットワーク上の場所にあるファイルを開く際に Office プログラムの動作が遅いか応答を停止した (ハングした) ように見える<br />
<a href="http://support.microsoft.com/kb/833041/ja">http://support.microsoft.com/kb/833041/ja</a></p>
<p>確かに、たまに気になったりしていました。<br />
かなり良い感じになります。</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/02/office/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/02/office/" />
	</item>
		<item>
		<title>wordpress気になるテーマたち</title>
		<link>http://labs.asunochikara.com/2010/02/wordpress%e6%b0%97%e3%81%ab%e3%81%aa%e3%82%8b%e3%83%86%e3%83%bc%e3%83%9e%e3%81%9f%e3%81%a1/</link>
		<comments>http://labs.asunochikara.com/2010/02/wordpress%e6%b0%97%e3%81%ab%e3%81%aa%e3%82%8b%e3%83%86%e3%83%bc%e3%83%9e%e3%81%9f%e3%81%a1/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:03:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=242</guid>
		<description><![CDATA[アクセサリーショップなどに使えそうなデザイン
デモ画面　http://equilibrium.madebyon.com/
ダウンロードは、http://madebyon.com/equilibrium-wordpress [...]]]></description>
			<content:encoded><![CDATA[<p>アクセサリーショップなどに使えそうなデザイン<br />
デモ画面　<a href="http://equilibrium.madebyon.com/">http://equilibrium.madebyon.com/</a><br />
ダウンロードは、<a href="http://madebyon.com/equilibrium-wordpress-theme/">http://madebyon.com/equilibrium-wordpress-theme/</a></p>
<p>マガジン風なテーマ<br />
デモ：<a href="http://www.wp-themes.der-prinz.com/branfordmagazine/">http://www.wp-themes.der-prinz.com/branfordmagazine/</a><br />
ダウンロードは、<a href="http://www.der-prinz.com/downloads">http://www.der-prinz.com/downloads</a></p>
<p>これもけっこういけそう<br />
<a href="http://michaelhutagalung.com/arthemia/">http://michaelhutagalung.com/arthemia/</a><br />
<a href="http://michaelhutagalung.com/2008/08/arthemia-20-released-the-updates/">http://michaelhutagalung.com/2008/08/arthemia-20-released-the-updates/</a></p>
<p>アフィリ用ということで、<br />
<a href="http://www.af-joho.com/">http://www.af-joho.com/</a><br />
<a href="http://www.af-joho.com/tmp10_25/">http://www.af-joho.com/tmp10_25/<br />
</a></p>
<p>商用向けにつくられています<br />
<a href="http://www.10press.net/">http://www.10press.net/</a><br />
デモ：<a href="http://magazine.10press.net/">http://magazine.10press.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/02/wordpress%e6%b0%97%e3%81%ab%e3%81%aa%e3%82%8b%e3%83%86%e3%83%bc%e3%83%9e%e3%81%9f%e3%81%a1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/02/wordpress%e6%b0%97%e3%81%ab%e3%81%aa%e3%82%8b%e3%83%86%e3%83%bc%e3%83%9e%e3%81%9f%e3%81%a1/" />
	</item>
		<item>
		<title>中古車査定や中古車購入は、そろそろ動いたほうが良さげです</title>
		<link>http://labs.asunochikara.com/2010/01/chukosha/</link>
		<comments>http://labs.asunochikara.com/2010/01/chukosha/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 04:25:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=239</guid>
		<description><![CDATA[マッシュアップで中古車のサイトを作っていますが、
いろいろと業界の方からお話を伺うと、税金を安くするために、3月中が良いそうです。
査定を考えると、だいたい30日程度は見ておかないといけません。
ということで、今の時期か [...]]]></description>
			<content:encoded><![CDATA[<p>マッシュアップで中古車のサイトを作っていますが、<br />
いろいろと業界の方からお話を伺うと、税金を安くするために、3月中が良いそうです。<br />
査定を考えると、だいたい30日程度は見ておかないといけません。</p>
<p>ということで、今の時期から情報を収集して、年度内に成約させましょう。<br />
<a href="http://www.e-usedcar.net">中古車購入</a>や、<a href="http://www.e-usedcar.net">中古車査定</a>はコチラからどうぞ。</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/01/chukosha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/01/chukosha/" />
	</item>
		<item>
		<title>XREAにmercurialをインストールして利用する方法</title>
		<link>http://labs.asunochikara.com/2010/01/mercurial/</link>
		<comments>http://labs.asunochikara.com/2010/01/mercurial/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:07:28 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[XREA]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=233</guid>
		<description><![CDATA[いろいろとやりたくなってmercurialをインストールしてみました
まずは、
http://www.selenic.com/mercurial/release/
から、最新のバージョンを確認してダウンロードします。

 [...]]]></description>
			<content:encoded><![CDATA[<p>いろいろとやりたくなってmercurialをインストールしてみました</p>
<p>まずは、</p>
<p>http://www.selenic.com/mercurial/release/</p>
<p>から、最新のバージョンを確認してダウンロードします。</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> ~<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>src
<span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>src
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>www.selenic.com<span style="color: #000000; font-weight: bold;">/</span>mercurial<span style="color: #000000; font-weight: bold;">/</span>release<span style="color: #000000; font-weight: bold;">/</span>mercurial-1.4.1.tar.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> xvzf mercurial-1.4.1.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> mercurial-1.4.1</pre></div></div>

<p>すぐにインストールを開始したいところですが、pythonの実行環境を準備しないといけません。<br />
.bashrcに以下を記載します</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PATH</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$HOME</span>/local/bin:<span style="color: #007800;">$PATH</span>&quot;</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">TERM</span>=xterm-256color
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PYTHONPATH</span>=<span style="color: #000000; font-weight: bold;">/</span>virtual<span style="color: #000000; font-weight: bold;">/</span>ユーザーID<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>python
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">view</span>=<span style="color: #ff0000;">&quot;vim -R&quot;</span></pre></td></tr></table></div>

<p>これで実行環境が準備できました。インストール実行します</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">source</span> .bashrc
python sup.py <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #660033;">--home</span>=<span style="color: #000000; font-weight: bold;">/</span>virtual<span style="color: #000000; font-weight: bold;">/</span>ユーザーID<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span></pre></div></div>

<p>これで、完了です。<br />
続いてHTTPで公開するため、公開ディレクトリに　~/local/src/mercurial-1.4.1にできた<br />
hgwebdir.cgi<br />
をコピー、新たに<br />
hgweb.configを以下のように作成します</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>collections<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">;;</span> レポジトリを作ってから、ここに記載します。
<span style="color: #000000; font-weight: bold;">/</span>virtual<span style="color: #000000; font-weight: bold;">/</span>ユーザーID<span style="color: #000000; font-weight: bold;">/</span>xxxx = <span style="color: #000000; font-weight: bold;">/</span>virtual<span style="color: #000000; font-weight: bold;">/</span>ユーザーID<span style="color: #000000; font-weight: bold;">/</span>xxxx<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span>web<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #007800;">style</span>=gitweb
<span style="color: #7a0874; font-weight: bold;">&#91;</span>extensions<span style="color: #7a0874; font-weight: bold;">&#93;</span>
hgext.keyword =
<span style="color: #007800;">color</span>=
<span style="color: #7a0874; font-weight: bold;">&#91;</span>keyword<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">*</span> =
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>ui<span style="color: #7a0874; font-weight: bold;">&#93;</span>
username = My Name <span style="color: #000000; font-weight: bold;">&lt;</span>email at example dot com<span style="color: #000000; font-weight: bold;">&gt;</span></pre></td></tr></table></div>

<p>を作成します<br />
さらに、便利に使うため、.htaccessを作成</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">Options +ExecCGI
RewriteEngine on
RewriteRule ^hgwebdir.cgi - <span style="color: #7a0874; font-weight: bold;">&#91;</span>L<span style="color: #7a0874; font-weight: bold;">&#93;</span>
RewriteRule ^<span style="color: #7a0874; font-weight: bold;">&#40;</span>.<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000; font-weight: bold;">/</span>hgwebdir.cgi<span style="color: #000000; font-weight: bold;">/</span>$<span style="color: #000000;">1</span>
&nbsp;
AuthUserFile <span style="color: #000000; font-weight: bold;">/</span>virtual<span style="color: #000000; font-weight: bold;">/</span>ユーザーID<span style="color: #000000; font-weight: bold;">/</span>.htpasswd
AuthGroupFile <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null
AuthName MembersOnly
AuthType Basic
<span style="color: #000000; font-weight: bold;">&lt;</span>limit GET POST PUT<span style="color: #000000; font-weight: bold;">&gt;</span>
require valid-user
<span style="color: #000000; font-weight: bold;">&lt;/</span>limit<span style="color: #000000; font-weight: bold;">&gt;</span></pre></td></tr></table></div>

<p>基本認証のパスワードを.htpasswdとして、<br />
/virtual/ユーザーID/<br />
に保存します<br />
以上で、インストールと環境は完成です！</p>
<p>つづいてレポジトリを作成<br />
管理したいディレクトリにて、</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">hg init</pre></div></div>

<p>これで完成です<br />
レポジトリごとにいろいろな設定が可能です。<br />
バージョン管理から除外するファイルの設定を<br />
レポジトリの管理ディレクトリに、.hgignore　というファイルを作成します。以下はサンプル</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="ini" style="font-family:monospace;">syntax: glob
*.log
.htaccess
*/tmp/*
*/config/*</pre></td></tr></table></div>

<p>これでOKです。<br />
あとは、hgコマンドを使って操作してください。</p>
<p>続いてクライアント側の操作です<br />
クライアント側にも同様にして、mercurialのインストールが必要です。まあ、クライアントもサーバーもないのがmercurialなんですけれど。<br />
インストールが終わったら、サーバー側のレポジトリから情報を引っ張ってきます</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> hg clone http:<span style="color: #000000; font-weight: bold;">//</span>example.com<span style="color: #000000; font-weight: bold;">/</span>xxxxxx yyyy
<span style="color: #000000; font-weight: bold;">//</span> xxxxxxxには、設定したレポジトリ名が入ります
<span style="color: #000000; font-weight: bold;">//</span>yyyyには、クライアント側に作成するレポジトリ名が入ります</pre></div></div>

<p>これでOKです。<br />
あとは、hg add hg ci などとやっていけばバージョン管理完成です</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/01/mercurial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/01/mercurial/" />
	</item>
		<item>
		<title>OK Wave API</title>
		<link>http://labs.asunochikara.com/2010/01/ok-wave-api/</link>
		<comments>http://labs.asunochikara.com/2010/01/ok-wave-api/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 11:10:09 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[api]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=230</guid>
		<description><![CDATA[OK WaveのAPIを使おうかと思って探したのですが、中々見つからず、
苦労した挙句、見つけたサイトが以下、
http://zerosp.com/mt/archives/okwave-websearvice.php
一 [...]]]></description>
			<content:encoded><![CDATA[<p>OK WaveのAPIを使おうかと思って探したのですが、中々見つからず、<br />
苦労した挙句、見つけたサイトが以下、<br />
<a href="http://zerosp.com/mt/archives/okwave-websearvice.php">http://zerosp.com/mt/archives/okwave-websearvice.php</a></p>
<p>一応、念のため一部転記させて頂きます。詳しくは、上記サイトを。</p>
<p>アクセスするURL</p>
<p>http://search.okwave.jp/search?</p>
<p>必須パラメータ</p>
<ul>
<li>mode : モード指定。searchにすること。</li>
<li>
word : 検索文字列(UTF8)</li>
</ul>
<p>省略可のパラメータ()内がデフォルト値です。</p>
<ul>
<li>type : 検索タイプ。keyword : キーワード検索。 word : 自然文検索。(keyword)</li>
<li>start : 検索結果取得開始位置。(0)</li>
<li>items : 検索結果取得数。(20)</li>
<li>booleam : 複数キーワード時の検索条件。and : AND検索。or : OR検索(and)</li>
<li>sort : ソート条件。(score)</li>
<li>order : 並び順。asc : 昇順。desc : 降順。(desc)</li>
<li>before_date : 日付での絞り込み[yyyy-MM-dd] (以前全て)</li>
<li>after_date : 日付での絞り込み[yyyy-MM-dd] (当日)</li>
<li>ques_stat : 質問ステータス絞込み条件。all : 全ての質問。before : 受付中。after : 締め切済み。(all)</li>
<li>ans_stat : 回答ステータスでの絞り込み。all : 全て。before : 回答無し。after : 回答あり。best : 良回答・次点あり (all)</li>
<li>thank_stat : お礼ステータスでの絞り込み。all : 全て。before : お礼無し。after : お礼あり。(all)</li>
<li>remak_stat : 補足ステータス日付での絞り込み。all : 全て。before : 補足無し。after : 補足あり。(all)</li>
<li>c : カテゴリ絞込み。(all)</li>
<li>target : 検索対象、複数指定可能。ques_title : タイトル。ques_text : 質問本文。answer : 回答本文。thank : お礼。remark : 補足。best_answer : 良回答。（デフォルト すべての項目）</li>
<li>take : データ取得対象、複数指定可能。（デフォルト すべての項目）</li>
</ul>
<p>ソートパラメータで使用できる値</p>
<ul>
<li>score : スコア順</li>
<li>date : 日時順</li>
<li>answer_count : 回答数順</li>
<li>remark_count : 補足数順</li>
<li>thank_count : お礼数順</li>
<li>pv : アクセス数順</li>
<li>qst_instructive : 役に立った順</li>
<li>instructive : 参考になった順</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/01/ok-wave-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/01/ok-wave-api/" />
	</item>
		<item>
		<title>FTP先へ自動接続する方法</title>
		<link>http://labs.asunochikara.com/2010/01/ftp/</link>
		<comments>http://labs.asunochikara.com/2010/01/ftp/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 03:31:18 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[ftp]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=224</guid>
		<description><![CDATA[あけまして、おめでとうございます。
今年もよろしくお願いします。
さて、以前から気にはなっていましたが、多くのサイトを抱えるようになると、FTPソフトを利用しても、どこに接続するのを選ぶことが面倒になってしまいます。そこ [...]]]></description>
			<content:encoded><![CDATA[<p>あけまして、おめでとうございます。<br />
今年もよろしくお願いします。</p>
<p>さて、以前から気にはなっていましたが、多くのサイトを抱えるようになると、FTPソフトを利用しても、どこに接続するのを選ぶことが面倒になってしまいます。そこで、自動的に指定した接続先に接続できるといいなぁと思っておりましたが、どうやらできそうです。<br />
こちらから、<br />
<a href="http://wiki.filezilla-project.org/Command-line_arguments_(Client)">http://wiki.filezilla-project.org/Command-line_arguments_(Client)</a><br />
をみると、</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">filezilla <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000; font-weight: bold;">&lt;</span><span style="color: #c20cb9; font-weight: bold;">ftp</span> URL<span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>
filezilla <span style="color: #660033;">-s</span>
filezilla <span style="color: #660033;">-c</span></pre></div></div>

<p>と実は起動オプションが指定できるようです。</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">filezilla <span style="color: #c20cb9; font-weight: bold;">ftp</span>:<span style="color: #000000; font-weight: bold;">//</span>user:pass<span style="color: #000000; font-weight: bold;">@</span>host:port<span style="color: #000000; font-weight: bold;">/</span>path</pre></div></div>

<p>でうまくできました。</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2010/01/ftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2010/01/ftp/" />
	</item>
		<item>
		<title>PDFファイルに書き込む方法</title>
		<link>http://labs.asunochikara.com/2009/12/pdf/</link>
		<comments>http://labs.asunochikara.com/2009/12/pdf/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 15:37:56 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://labs.asunochikara.com/?p=218</guid>
		<description><![CDATA[PDF-XChangeというプログラムがあるようです。
これのタイプライター機能を使うと、PDFファイルに直接文字を入力することができるようです。
お試しを。
http://www.docu-track.com/
こちら [...]]]></description>
			<content:encoded><![CDATA[<p>PDF-XChangeというプログラムがあるようです。<br />
これのタイプライター機能を使うと、PDFファイルに直接文字を入力することができるようです。<br />
お試しを。<br />
<a href="http://www.docu-track.com/">http://www.docu-track.com/</a><br />
こちらのPDF-XChange Viewerを使うといいみたいです。</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.asunochikara.com/2009/12/pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://labs.asunochikara.com/2009/12/pdf/" />
	</item>
	</channel>
</rss>
