<?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>さくらたんどっとびーず &#187; ウェブアプリ</title>
	<atom:link href="http://sakuratan.biz/archives/category/%e3%82%a6%e3%82%a7%e3%83%96%e3%82%a2%e3%83%97%e3%83%aa/feed" rel="self" type="application/rss+xml" />
	<link>http://sakuratan.biz</link>
	<description>モロモロ工事中です</description>
	<lastBuildDate>Sun, 25 Jun 2023 12:51:51 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>さくらインターネットスタンダードプランで UTF-8 の MeCab を使う際のメモ</title>
		<link>http://sakuratan.biz/archives/1349</link>
		<comments>http://sakuratan.biz/archives/1349#comments</comments>
		<pubDate>Sun, 25 Oct 2009 10:31:49 +0000</pubDate>
		<dc:creator>さくら</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[ウェブアプリ]]></category>
		<category><![CDATA[MeCab]]></category>
		<category><![CDATA[さくらインターネット]]></category>

		<guid isPermaLink="false">http://sakuratan.biz/?p=1349</guid>
		<description><![CDATA[最近ちーと忙しいもので、ブログの間隔空ちゃってます。サーセン＞＜ あんまりあいだ空けるのもアレなので、今日はさくらインターネットのスタンダード鯖で、MeCab を UTF-8 で使う方法を簡単にご紹介。 まず MeCab は形態素解析のライブラリです。本家サイトはこちら。 MeCab: Yet Another Part-of-Speech and Morphological Analyzer さく... <div style="margin-top:1ex"><a href="http://sakuratan.biz/archives/1349">(続きを読む)</a></div>]]></description>
			<content:encoded><![CDATA[<p>最近ちーと忙しいもので、ブログの間隔空ちゃってます。サーセン＞＜</p>
<p>あんまりあいだ空けるのもアレなので、今日はさくらインターネットのスタンダード鯖で、MeCab を UTF-8 で使う方法を簡単にご紹介。</p>
<p>まず MeCab は形態素解析のライブラリです。本家サイトはこちら。</p>
<blockquote><p>
<a href="http://mecab.sourceforge.net/">MeCab: Yet Another Part-of-Speech and Morphological Analyzer</a>
</p></blockquote>
<p>さくらインターネットのサーバには元から MeCab がインストールされてますので、単に使うだけならそのままでおkです。ただ EUC-JP 版の辞書がインスコされてますので、そのまま UTF-8 なウェブアプリで使用すると<a href="http://www.atmarkit.co.jp/fjava/rensai3/mojibake02/mojibake02.html">〜問題</a>が発生します。今日ご紹介するのはそれを回避する方法です。</p>
<p>回避方法は簡単で、UTF-8 な辞書ファイルを別にインスコするだけです。以下、具体的なやり方。</p>
<ol>
<li><b>辞書のアーカイブをサーバにアップロード</b><br />
<a href="http://mecab.sourceforge.net/#download">MeCab のダウンロードページ</a> から、IPA 辞書の最新版をダウンロードして、サーバにうpします。</li>
<li><b>アーカイブを展開してインスコ</b><br />
以下のコマンドをおもむろに打ち込み、UTF-8 の辞書を $HOME/lib/mecab/dic/ipadic-utf8 にインスコします。インスコ先のパスは適当に変えてください。</p>
<pre>% tar xvzf mecab-ipadic-2.7.0-20070610.tar.gz
% cd mecab-ipadic-2.7.0-20070610
% ./configure --with-charset=utf8 --with-dicdir=$HOME/lib/mecab/dic/ipadic-utf8
% make
% make install</pre>
</li>
<li><b>MeCab を動かす</b><br />
コマンドラインから MeCab を動かす際は、-d オプションで辞書のディレクトリを指定します。</p>
<pre>% mecab -d ~/lib/mecab/dic/ipadic-utf8 utf8.txt
あ      フィラー,*,*,*,*,*,あ,ア,ア
ああ    感動詞,*,*,*,*,*,ああ,アア,アー
EOS</pre>
<p>プログラムから使用する場合も基本的には同じです。以下は Python バインディングでの使用例。</p>
<pre>import os
import MeCab
dicdir = os.path.expanduser('~/lib/mecab/dic/ipadic-utf8')
m = MeCab.Tagger ("-Ochasen -d%s" % dicdir)
print m.parse ("今日もしないとね")</pre>
</li>
</ol>
<p><img src="http://sakuratan.biz/blog/wp-content/plugins/sakura-icons/icon2.png" width="160" height="160" border="0" style="border:0;float:left" /><br />
ということで本日はこの辺にて。<br />
ではでは☆<br clear="left" /></p>
]]></content:encoded>
			<wfw:commentRss>http://sakuratan.biz/archives/1349/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IE6 で Twit Delay がバグってたようなので直しました</title>
		<link>http://sakuratan.biz/archives/1226</link>
		<comments>http://sakuratan.biz/archives/1226#comments</comments>
		<pubDate>Thu, 10 Sep 2009 17:16:59 +0000</pubDate>
		<dc:creator>さくら</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[ウェブアプリ]]></category>
		<category><![CDATA[Twit Delay]]></category>

		<guid isPermaLink="false">http://sakuratan.biz/?p=1226</guid>
		<description><![CDATA[「著作権フリーの素材屋・ＨＰ素材のおすそわけ。BLOG」様の指定時刻にTwitterでつぶやける投稿ツール「Twit Delay」にて Twit Delay をご紹介いただいたのですが、そこに掲載されてるキャプチャを見ますとバグってたようですので修正いたしました。 IE6（IE7もだったっけ？）で Twit Delay にアクセスすると、フッターエリアに何も指定されていないと以下のように null... <div style="margin-top:1ex"><a href="http://sakuratan.biz/archives/1226">(続きを読む)</a></div>]]></description>
			<content:encoded><![CDATA[<p>「著作権フリーの素材屋・ＨＰ素材のおすそわけ。BLOG」様の<a href="http://kanari.info/b/1063.html">指定時刻にTwitterでつぶやける投稿ツール「Twit Delay」</a>にて Twit Delay をご紹介いただいたのですが、そこに掲載されてるキャプチャを見ますとバグってたようですので修正いたしました。</p>
<p>IE6（IE7もだったっけ？）で <a href="http://twitdelay.net/">Twit Delay</a> にアクセスすると、フッターエリアに何も指定されていないと以下のように <q>null</q> と表示されてました。調べましたところブラウザ依存のバグでした。</p>
<p><img src="http://sakuratan.biz/blog/wp-content/uploads/2009/09/footernull.png" alt="Twit Delay フッター null" title="Twit Delay フッター null" width="396" height="136" class="alignnone size-full wp-image-1227 capture" /></p>
<p>もう直しましたので、IE6 でもフッターを指定していない場合は No Footer と表示されると思います。</p>
]]></content:encoded>
			<wfw:commentRss>http://sakuratan.biz/archives/1226/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twit Delay API</title>
		<link>http://sakuratan.biz/archives/1197</link>
		<comments>http://sakuratan.biz/archives/1197#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:22:18 +0000</pubDate>
		<dc:creator>さくら</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[ウェブアプリ]]></category>
		<category><![CDATA[Twit Delay]]></category>

		<guid isPermaLink="false">http://sakuratan.biz/?p=1197</guid>
		<description><![CDATA[Twit Delay に API を付けました。API と言っても、HTTP POST で予約投稿できるだけの簡単なものですが、元からそんな多機能なサービスを目指している訳でもないので、これでいっかなーと思ってますww API の使い方については Twit Delay マニュアルの API キーの発行 をご覧ください。 ちなみに API を実験的機能という位置づけにしていますが、API のインタフ... <div style="margin-top:1ex"><a href="http://sakuratan.biz/archives/1197">(続きを読む)</a></div>]]></description>
			<content:encoded><![CDATA[<p>Twit Delay に API を付けました。API と言っても、HTTP POST で予約投稿できるだけの簡単なものですが、元からそんな多機能なサービスを目指している訳でもないので、これでいっかなーと思ってますww</p>
<p>API の使い方については Twit Delay マニュアルの <a href="http://twitdelay.net/#api">API キーの発行</a> をご覧ください。</p>
<p>ちなみに API を実験的機能という位置づけにしていますが、API のインタフェースがまだ固まってませんよという意味と、あんまり API 経由の利用ばっかり増えちゃうと困るなーという意味の、二通りの意味で実験的としています。とりあえずインタフェースを変えるつもりはありませんが、何かの理由でそうなることもありますのでご注意ください。</p>
<p>ご意見等々につきましては、@<a href="http://twitter.com/sakuratandotbiz">sakuratandotbiz</a> までどうぞ。</p>
]]></content:encoded>
			<wfw:commentRss>http://sakuratan.biz/archives/1197/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter 予約投稿サービス Twit Delay 正式リリースいたしました</title>
		<link>http://sakuratan.biz/archives/1161</link>
		<comments>http://sakuratan.biz/archives/1161#comments</comments>
		<pubDate>Sun, 30 Aug 2009 00:00:26 +0000</pubDate>
		<dc:creator>さくら</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[ウェブアプリ]]></category>
		<category><![CDATA[Twit Delay]]></category>

		<guid isPermaLink="false">http://sakuratan.biz/?p=1161</guid>
		<description><![CDATA[2009年8月30日、Twitter 予約投稿サービス Twit Delay を正式リリースいたしました。 前回までの告知では正式リリースに向けて仕様変更は無いとお伝えしておりましたが、Twitter の POST 規制が1時間以上継続する場合があるようでしたので、POST 規制時のリトライ間隔を1〜2時間に変更しております。リトライ間隔についてはリリース後も変更する可能性がございますので、予めご... <div style="margin-top:1ex"><a href="http://sakuratan.biz/archives/1161">(続きを読む)</a></div>]]></description>
			<content:encoded><![CDATA[<p>2009年8月30日、Twitter 予約投稿サービス <a href="http://twitdelay.net/">Twit Delay</a> を正式リリースいたしました。</p>
<p>前回までの告知では正式リリースに向けて仕様変更は無いとお伝えしておりましたが、Twitter の POST 規制が1時間以上継続する場合があるようでしたので、POST 規制時のリトライ間隔を1〜2時間に変更しております。リトライ間隔についてはリリース後も変更する可能性がございますので、予めご了承ください。その他の変更点はございません。</p>
<p>既にご利用のユーザー様におかれましては、引き続き Twit Delay をご利用頂きますよう、よろしくお願い申し上げます。</p>
]]></content:encoded>
			<wfw:commentRss>http://sakuratan.biz/archives/1161/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter 予約投稿ウェブサービス Twit Delay パブリックベータテストにご協力頂ける方募集中！</title>
		<link>http://sakuratan.biz/archives/1124</link>
		<comments>http://sakuratan.biz/archives/1124#comments</comments>
		<pubDate>Thu, 20 Aug 2009 01:00:44 +0000</pubDate>
		<dc:creator>さくら</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[ウェブアプリ]]></category>
		<category><![CDATA[Twit Delay]]></category>
		<category><![CDATA[ウェブサービス]]></category>

		<guid isPermaLink="false">http://sakuratan.biz/?p=1124</guid>
		<description><![CDATA[さくらです☆ごぶさたブりんこ！ ただ今 sakuratan.biz では、Twitter 予約投稿ウェブサービス Twit Delay を鋭意開発中です。 つきましては、パブリックベータテストに協力頂ける方を募集しております。 Twit Delay ウェブサービスを使用して頂きます。 バグ等の不具合を見つけた方は @sakuratandotbiz まで Twitter 経由でご報告頂きます。 今回... <div style="margin-top:1ex"><a href="http://sakuratan.biz/archives/1124">(続きを読む)</a></div>]]></description>
			<content:encoded><![CDATA[<p>さくらです☆ごぶさたブりんこ！</p>
<p>ただ今 sakuratan.biz では、Twitter 予約投稿ウェブサービス <a href="http://twitdelay.net/">Twit Delay</a> を鋭意開発中です。<br />
つきましては、パブリックベータテストに協力頂ける方を募集しております。</p>
<ol>
<li><a href="http://twitdelay.net/">Twit Delay</a> ウェブサービスを使用して頂きます。</li>
<li>バグ等の不具合を見つけた方は @<a href="http://twitter.com/sakuratandotbiz">sakuratandotbiz</a> まで Twitter 経由でご報告頂きます。</li>
</ol>
<p>今回のテストは Google App Engine でのシステム運用テスト並びにユーザー比コストの把握を目的としております。これらの集計等は自動的に行われますので、テストにご協力頂く皆様の方でテスト目的を意識して頂く必要はございません。ご自由に使っていただき、不具合等があればご報告頂ければと思います。</p>
<p>ご協力頂ける方は、@<a href="http://twitter.com/sakuratandotbiz">sakuratandotbiz</a> まで @ でメッセージをお送りください。メッセージを確認次第お返事いたします。</p>
<p>それと、テストにご協力頂いた皆様の Twitter ユーザー名を、<a href="http://twitdelay.net/">Twit Delay</a> のトップページの謝辞の欄に掲載させて頂きたいと思います。ブログやウェブサイトをお持ちの方については、合わせてそちらの URL も掲載させて頂きたいと思いますので、ご協力頂ける旨のメッセージを頂く際にどこにリンクを貼れば良いかとご希望のアンカーテキスト（ご希望が無ければブログタイトル等になります）をお伝えください。（名前載せたりとかはいらないって方は、こっそりテストにご協力くださいw システム自体は動いてますので、すぐご利用頂けます。）</p>
<p><ins>（8/20 13:38 追記)<br />
特に明記されなかった場合、Twitter のプロフィールに URL を掲載されている方については、そちらの URL を謝辞に掲載させて頂くことにしました。<br />
ご協力表明してくださった方ほとんどから URL とかお教えていただけなかったので（というかいちいちそんなの書くの面倒そうなのでそうなるんじゃないかと思ってたんだけどw）、この追記以降にご協力頂いた方については自動的にそのような形にさせて頂きますのでご了承を。それ以前にご表明頂いた方については今ツイッターでお伺いしていますので、その返事を待ってからさせて頂きます。<br />
</ins></p>
<p>皆様よろしくお願いいたします！</p>
<p>P.S.<br />
当然ながら開発中のシステムですので、若干不安定かもしれません…<br />
ただ、不安定かどうかを調べるのも一応今回のテストの目的の一つですので、既に安定しているかもしれません…</p>
<p>あとどなたかご親切な方…<br />
パブリックベータテストの意味をお教え下されwww</p>
]]></content:encoded>
			<wfw:commentRss>http://sakuratan.biz/archives/1124/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
