<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="rss.css" type="text/css"?>
<rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:xhtml="http://www.w3.org/1999/xhtml" xml:lang="ja-JP">
	<channel rdf:about="http://www.pshared.net/diary/index.rdf">
	<title>Ussy Diary</title>
	<link>http://www.pshared.net/diary/</link>
	<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/" />
	<description></description>
	<dc:creator>Ussy</dc:creator>
	<dc:rights>Copyright 2012 Ussy, copyright of comments by respective authors</dc:rights>
	<image rdf:resource="http://www.pshared.net/image/banner.png" />
<items><rdf:Seq>
<rdf:li rdf:resource="http://www.pshared.net/diary/20120116.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20120110.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20100109.html#c01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20120104.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20091123.html#c01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20111225.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20111219.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20111128.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20111029.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20111011.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20111010.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20100127.html#c01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20110918.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20110917.html#p01"/>
<rdf:li rdf:resource="http://www.pshared.net/diary/20110910.html#p01"/>
</rdf:Seq></items>
</channel>
<image rdf:about="http://www.pshared.net/image/banner.png">
	<title>Ussy Diary</title>
	<url>http://www.pshared.net/image/banner.png</url>
	<link>http://www.pshared.net/diary/</link>
	</image>
	<item rdf:about="http://www.pshared.net/diary/20120116.html#p01">
<link>http://www.pshared.net/diary/20120116.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20120116.html#p01" />
<dc:date>2012-01-17T03:17:02+09:00</dc:date>
<title>プロジェクトのライブラリに更新ライブラリがないか確認し更新する</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Maven</dc:subject>
<description>ずっとこういう機能ないのかなと、探していたところ Mojo Codehaus にありました。 Versions Maven Plugin を使用すればよかったのでした。 プロジェクトライブラリに更新がないか確認したい場合は、以下のコマンドを叩きます。 $ mvn versions:display-dependency-updates [INFO] The following dependencies in Dependencies have newer versions: [INFO]   ch.qos.logback:logback-classic ....................... 0.9.29 - 1.0.0 [INFO]   ch.qos.logback:logback-core .......................... 0.9.29 - 1.0.0 [INFO]   com.google.code.gson:gson ............................... 1.7.1 - 2.1 [INFO]   com.google.gu..</description>
<content:encoded><![CDATA[<h3>プロジェクトのライブラリに更新ライブラリがないか確認し更新する</h3><p>ずっとこういう機能ないのかなと、探していたところ Mojo Codehaus にありました。</p>
<p><a href="http://mojo.codehaus.org/versions-maven-plugin/">Versions Maven Plugin</a> を使用すればよかったのでした。</p>
<p>プロジェクトライブラリに更新がないか確認したい場合は、以下のコマンドを叩きます。</p>
<pre>$ mvn versions:display-dependency-updates</pre>
<pre>[INFO] The following dependencies in Dependencies have newer versions:
[INFO]   ch.qos.logback:logback-classic ....................... 0.9.29 -&gt; 1.0.0
[INFO]   ch.qos.logback:logback-core .......................... 0.9.29 -&gt; 1.0.0
[INFO]   com.google.code.gson:gson ............................... 1.7.1 -&gt; 2.1
[INFO]   com.google.guava:guava ................................. r09 -&gt; 11.0.1
[INFO]   commons-codec:commons-codec ............................... 1.5 -&gt; 1.6
[INFO]   junit:junit ............................................ 4.8.2 -&gt; 4.10</pre>
<p>イケイケな感じで、すべて最新リリースライブラリにしたい場合は、以下のコマンドを叩きます。</p>
<pre>$ mvn versions:use-latest-release</pre>
<p>そうすると pom.xml.versionsBackup ファイルが出来上がるので、やっぱりやめたいときは以下のコマンドを実行します。</p>
<pre>$ mvn versions:revert</pre>
<p>確定したいときはコミットします。</p>
<pre>$ mvn versions:commit</pre>
<p>なお特定のライブラリを更新対象から外したい場合は、オプションを指定すれば外せます。毎回指定するのもあれなので、プロパティファイルみたいなのに書けるんでしょうか？</p>
<pre>$ mvn versions:use-latest-release -Dexcludes=junit:junit</pre>
<p><a href="http://www.pshared.net/diary/20120116.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20120110.html#p01">
<link>http://www.pshared.net/diary/20120110.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20120110.html#p01" />
<dc:date>2012-01-10T22:02:15+09:00</dc:date>
<title>Backlog を maven リポジトリにする</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Java</dc:subject>
<description>すべて公開したいところなのですが、仕事上オープンにできないライブラリは存在します。 うちの会社には専用の maven リポジトリサーバーがありますが、 そういったものを管理したくない場合には Backlog のファイル共有を利用してみるのもひとつの手かもしれません。 契約している Backlog のスペースにアクセスし、 repository プロジェクトを作成します。 repository プロジェクトのファイル共有のルートディレクトリに maven2 ディレクトリを作成します。 例えば以下のような URL でアクセスができるかと思います。 https://ussy.backlog.jp/dav/repository/maven2 あとは maven の設定を記述していきます。 まずは settings.xml に Backlog のユーザ名、パスワードを記述します。 settings.xml    server      idussy.backlog/id      usernameXXXX/username      passwordXXXX/password      fi..</description>
<content:encoded><![CDATA[<h3>Backlog を maven リポジトリにする</h3><p>すべて公開したいところなのですが、仕事上オープンにできないライブラリは存在します。</p>
<p>うちの会社には専用の maven リポジトリサーバーがありますが、
そういったものを管理したくない場合には Backlog のファイル共有を利用してみるのもひとつの手かもしれません。</p>
<p>契約している Backlog のスペースにアクセスし、 repository プロジェクトを作成します。
repository プロジェクトのファイル共有のルートディレクトリに maven2 ディレクトリを作成します。</p>
<p>例えば以下のような URL でアクセスができるかと思います。</p>
<p><a href="https://ussy.backlog.jp/dav/repository/maven2">https://ussy.backlog.jp/dav/repository/maven2</a></p>
<p>あとは maven の設定を記述していきます。
まずは settings.xml に Backlog のユーザ名、パスワードを記述します。</p>
<p>settings.xml</p>
<pre>   &lt;server&gt;
     &lt;id&gt;ussy.backlog&lt;/id&gt;
     &lt;username&gt;XXXX&lt;/username&gt;
     &lt;password&gt;XXXX&lt;/password&gt;
     &lt;filePermissions&gt;664&lt;/filePermissions&gt;
     &lt;directoryPermissions&gt;775&lt;/directoryPermissions&gt;
   &lt;/server&gt;</pre>
<p>続いて pom.xml にファイルアップロードの URL の指定と webdav プラグインの指定を行います。
maven3 の場合は webdav アップロードには wagon プラグインの jackrabbit を指定する必要があります。</p>
<p>pom.xml</p>
<pre>   &lt;distributionManagement&gt;
       &lt;repository&gt;
           &lt;id&gt;ussy.backlog&lt;/id&gt;
           &lt;name&gt;Local Repository&lt;/name&gt;
           &lt;url&gt;dav:https://ussy.backlog.jp/dav/repository/maven2&lt;/url&gt;
       &lt;/repository&gt;
   &lt;/distributionManagement&gt;

    &lt;build&gt;
        &lt;extensions&gt;
            &lt;extension&gt;
                &lt;groupId&gt;org.apache.maven.wagon&lt;/groupId&gt;
                &lt;artifactId&gt;wagon-webdav-jackrabbit&lt;/artifactId&gt;
            &lt;/extension&gt;
        &lt;/extensions&gt;</pre>
<p>あとは mvn deploy を実行すれば、リポジトリにアップロード完了です。</p>
<pre>$ mvn deploy</pre>
<p>ネットワークアクセスがあるので、ダウンロード/アップロードに時間は
かかるかもしれませんが一度試してみるといいかもしれません。</p>
<p><a href="http://www.pshared.net/diary/20120110.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20100109.html#c01">
<link>http://www.pshared.net/diary/20100109.html#c01</link>
<dc:date>2012-01-06T15:17:56+09:00</dc:date>
<title>2010-01-09のツッコミ[1] (kimkou_26)</title>
<dc:creator>kimkou_26</dc:creator>
<description>Cookieを使ったJSを使う時は 「file:///android_asset/」 では駄目で 「http://localhost」の指定でないと以下のエラーが出てしまいます。  http://stackoverflow.com/questions/2704929/uncaught-error-security-err-dom-exception-18</description>
<content:encoded><![CDATA[Cookieを使ったJSを使う時は 「file:///android_asset/」 では駄目で 「<a href="http://localhost">http://localhost</a>」の指定でないと以下のエラーが出てしまいます。<br><br><a href="http://stackoverflow.com/questions/2704929/uncaught-error-security-err-dom-exception-18">http://stackoverflow.com/questions/2704929/uncaught-error-security-err-dom-exception-18</a>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20120104.html#p01">
<link>http://www.pshared.net/diary/20120104.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20120104.html#p01" />
<dc:date>2012-01-04T22:34:22+09:00</dc:date>
<title>ミニコンポ X-SMC5-K</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Life</dc:subject>
<description>人生で初めてミニコンポを購入しました。というのも音楽に興味を持った中学には兄が一人暮らしを始めて、購入していたコンポを譲り受け、自分が一人暮らしを始めてからは PC で済ませていたからです。 家でしばらくノート PC にイヤホンを差して聞いていたものの、最近心寂しくなり部屋に音楽をオープンに流そうということでミニコンポです。去年 iPhone を購入して音楽を持ち歩く(Android のときはなぜか持ち歩かなかった)ようになって、音楽に触れ合う時間が増えてきました。 iPhone を Dock に差すより、今なら AirPlay(DLNA) でしょうということで、購入したのはパイオニアの X-SMC5-K。 http://pioneer.jp/audio_sys/stylish_sys/smc5.html ネットワーク対応が進んでいる中、面白そうなのが専用アプリ「Air Jam」 http://pioneer.jp/product/soft/iapp_airjam/jp.html これはみんなでプレイリストをつくりあげて再生できるもので、 Android 向けにもアプリがリリースさ..</description>
<content:encoded><![CDATA[<h3>ミニコンポ X-SMC5-K</h3><p><a href="http://www.amazon.co.jp/%E3%83%91%E3%82%A4%E3%82%AA%E3%83%8B%E3%82%A2-X-SMC5-K-Pioneer-%E3%82%B9%E3%82%BF%E3%82%A4%E3%83%AA%E3%83%83%E3%82%B7%E3%83%A5AV%E3%83%9F%E3%83%8B%E3%82%B3%E3%83%B3%E3%83%9D/dp/B005N6JRF0%3FSubscriptionId%3D0J9Z9W8W4CJ3TQ5VWY02%26tag%3Dpsharednet02-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB005N6JRF0"><img class="amazon" src="http://ecx.images-amazon.com/images/I/418gbmaLYQL._SL160_.jpg"
height="120" width="160" alt="Pioneer スタイリッシュAVミニコンポ X-SMC5-K">
</a></p>
<p>人生で初めてミニコンポを購入しました。というのも音楽に興味を持った中学には兄が一人暮らしを始めて、購入していたコンポを譲り受け、自分が一人暮らしを始めてからは PC で済ませていたからです。</p>
<p>家でしばらくノート PC にイヤホンを差して聞いていたものの、最近心寂しくなり部屋に音楽をオープンに流そうということでミニコンポです。去年 iPhone を購入して音楽を持ち歩く(Android のときはなぜか持ち歩かなかった)ようになって、音楽に触れ合う時間が増えてきました。 iPhone を Dock に差すより、今なら AirPlay(DLNA) でしょうということで、購入したのはパイオニアの X-SMC5-K。</p>
<p><a href="http://pioneer.jp/audio_sys/stylish_sys/smc5.html">http://pioneer.jp/audio_sys/stylish_sys/smc5.html</a></p>
<p>ネットワーク対応が進んでいる中、面白そうなのが専用アプリ「Air Jam」</p>
<p><a href="http://pioneer.jp/product/soft/iapp_airjam/jp.html">http://pioneer.jp/product/soft/iapp_airjam/jp.html</a></p>
<p>これはみんなでプレイリストをつくりあげて再生できるもので、 Android 向けにもアプリがリリースされています。サーバーに置いて再生するんじゃなくて、モバイルからプッシュして共有するっていうのが良いです。</p>
<p>軽く使ってみたところ難点は起動に 1 分弱かかるところと、 AirPlay をするにはコンポ側は有線 LAN で接続しないと途切れてしまうところでしょうか。</p>
<p>次は NAS の構築をしたいところですけど、お金ないので我慢です。 TimeCapsule が DLNA に対応してくれれば・・・！</p>
<p><a href="http://www.pshared.net/diary/20120104.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20091123.html#c01">
<link>http://www.pshared.net/diary/20091123.html#c01</link>
<dc:date>2011-12-29T16:20:44+09:00</dc:date>
<title>2009-11-23のツッコミ[1] (wontea)</title>
<dc:creator>wontea</dc:creator>
<description>a.ri.ga.to</description>
<content:encoded><![CDATA[a.ri.ga.to]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20111225.html#p01">
<link>http://www.pshared.net/diary/20111225.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20111225.html#p01" />
<dc:date>2011-12-25T16:43:24+09:00</dc:date>
<title>Like 文の前方後方一致条件の書き方</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Android</dc:subject>
<dc:subject>SQL</dc:subject>
<description>_% を含む文字を検索したい場合は、こんな感じでいいんでしょうか？ db.rawQuery(     &quot;select _id, name from user where name like ? escape '$'&quot;,     new String[] { &quot;%&quot; + name.replaceAll(&quot;[$_%]&quot;, &quot;\\$$0&quot;) + &quot;%&quot; }); テストを書きましょう。</description>
<content:encoded><![CDATA[<h3>Like 文の前方後方一致条件の書き方</h3><p>_% を含む文字を検索したい場合は、こんな感じでいいんでしょうか？</p>
<pre>db.rawQuery(
    "select _id, name from user where name like ? escape '$'",
    new String[] { "%" + name.replaceAll("[$_%]", "\\$$0") + "%" });</pre>
<p>テストを書きましょう。</p>
<p><a href="http://www.pshared.net/diary/20111225.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20111219.html#p01">
<link>http://www.pshared.net/diary/20111219.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20111219.html#p01" />
<dc:date>2011-12-20T01:39:13+09:00</dc:date>
<title>Cacoo FullScreen Extension</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Chrome</dc:subject>
<dc:subject>Cacoo</dc:subject>
<description>Cacoo の図形詳細画面で、画像をフルスクリーンで表示できるようにする拡張を作成しました。 https://chrome.google.com/webstore/detail/gnfemamphjljdnmncgcnhnhagaachpgf Chrome15 からフルスクリーン API が提供されるようになり、 Cacoo で画像をフルスクリーンで表示できたら、プレゼンにも使えるのではないかと思い実装しました。 フルスクリーン時に j/k キーで次、前のシートに移動できるようにしたかったのですが、最初は Page Down/Up などの特殊キーしか受け付けてくれず困っていたところ JavaScriptで動画をフルスクリーン表示する方法 - 強火で進め に webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT); と指定しているのを見つけ、試してみると通常キーも受け付けてくれました。 FullScreen API はベンダープレフィックスの接頭辞がついている段階で、 Chrome であったり、 Firefox の Nightly ..</description>
<content:encoded><![CDATA[<h3>Cacoo FullScreen Extension</h3><p>Cacoo の図形詳細画面で、画像をフルスクリーンで表示できるようにする拡張を作成しました。</p>
<p><a href="https://chrome.google.com/webstore/detail/gnfemamphjljdnmncgcnhnhagaachpgf">https://chrome.google.com/webstore/detail/gnfemamphjljdnmncgcnhnhagaachpgf</a></p>
<p>Chrome15 からフルスクリーン API が提供されるようになり、 Cacoo で画像をフルスクリーンで表示できたら、プレゼンにも使えるのではないかと思い実装しました。</p>
<p>フルスクリーン時に j/k キーで次、前のシートに移動できるようにしたかったのですが、最初は Page Down/Up などの特殊キーしか受け付けてくれず困っていたところ <a href="http://d.hatena.ne.jp/nakamura001/20111111/1321030087">JavaScriptで動画をフルスクリーン表示する方法 - 強火で進め</a> に</p>
<pre>webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);</pre>
<p>と指定しているのを見つけ、試してみると通常キーも受け付けてくれました。</p>
<p>FullScreen API はベンダープレフィックスの接頭辞がついている段階で、 Chrome であったり、 Firefox の Nightly 版でないと使えなかったりします。サイト上で UserAgent や機能が実装されていることを確認して機能を満たすだけでなく、今回のように拡張をインストールしてもらって、要件を満たす方法もひとつのアプローチとして面白そうだなと感じました。</p>
<p><a href="http://www.pshared.net/diary/20111219.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20111128.html#p01">
<link>http://www.pshared.net/diary/20111128.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20111128.html#p01" />
<dc:date>2011-11-29T01:17:17+09:00</dc:date>
<title>Named Capture</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Java</dc:subject>
<description>Java7 で Named Capture がサポートされていますね！ openjdk-7-jdk で確認済みです。 public static void main(String[] args) {     Matcher m = Pattern.compile(&quot;^/(?name.+?)/.*$&quot;).matcher(&quot;/ussy/123456789&quot;);     if (!m.find()) {        return;     }      System.out.println(m.group(&quot;name&quot;)); }</description>
<content:encoded><![CDATA[<h3>Named Capture</h3><p>Java7 で Named Capture がサポートされていますね！ openjdk-7-jdk で確認済みです。</p>
<pre>public static void main(String[] args) {
    Matcher m = Pattern.compile("^/(?&lt;name&gt;.+?)/.*$").matcher("/ussy/123456789");
    if (!m.find()) {
       return;
    }

    System.out.println(m.group("name"));
}</pre>
<p><a href="http://www.pshared.net/diary/20111128.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20111029.html#p01">
<link>http://www.pshared.net/diary/20111029.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20111029.html#p01" />
<dc:date>2011-10-29T14:12:23+09:00</dc:date>
<title>㏍キャ keysnail 鴻ッ⒢</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Firefox</dc:subject>
<dc:subject>Keysnail</dc:subject>
<description>㏍キャ激若聽Η闍・ Keysnail 魘サ繝弔肄誓髫key.setGlobalKey(['C-c', 'C-l'], function() {   let cacheService = Components.classes[&quot;@mozilla.org/network/cache-service;1&quot;].getService(Components.interfaces.nsICacheService);   cacheService.evictEntries(Components.interfaces.nsICache.STORE_IN_MEMORY);   cacheService.evictEntries(Components.interfaces.nsICache.STORE_ON_DISK);   cacheService.evictEntries(Components.interfaces.nsICache.STORE_OFFLINE); }, '㏍キャッ⒢「');  ＜⒢」鴻ッェゃ若ソゃ障/p&gt;</description>
<content:encoded><![CDATA[<h3>㏍キャ keysnail 鴻ッ⒢</h3><p>㏍キャ激若聽Η闍・ Keysnail 魘サ繝弔肄誓髫/p>
<pre>key.setGlobalKey(['C-c', 'C-l'], function() {
  let cacheService = Components.classes["@mozilla.org/network/cache-service;1"].getService(Components.interfaces.nsICacheService);
  cacheService.evictEntries(Components.interfaces.nsICache.STORE_IN_MEMORY);
  cacheService.evictEntries(Components.interfaces.nsICache.STORE_ON_DISK);
  cacheService.evictEntries(Components.interfaces.nsICache.STORE_OFFLINE);
}, '㏍キャッ⒢「');
</pre>
<p>＜⒢」鴻ッェゃ若ソゃ障/p>
<p><a href="http://www.pshared.net/diary/20111029.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20111011.html#p01">
<link>http://www.pshared.net/diary/20111011.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20111011.html#p01" />
<dc:date>2011-10-12T02:39:53+09:00</dc:date>
<title>pinboard Щ茵</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Etc</dc:subject>
<description>delicious 若「違鋎帥API ｃ綣泣茖若ッ膣≪pinboard Щ茵障鐚聽ヲ潟⒣delicious yahoo 卸ｃ https://pinboard.in/u:ussy pinboard Firefox 「ェ潟冴 https://addons.mozilla.org/ja/firefox/addon/pinboard-extension/ ゃ鴻若翫pinboard 若肛毎魘サ闍・繧ア闍・繧ゥ魘サ繧ス縲∝☎ム∬凶竕ェ縲∵ス溘う闍・繧ュム≫攵驕穂クサム囿/p&gt;  ム繩ァム囿笶シ繝シ髏p&gt;</description>
<content:encoded><![CDATA[<h3>pinboard Щ茵</h3><p>delicious 若「違鋎帥API ｃ綣泣茖若ッ膣≪<a href="https://pinboard.in/">pinboard</a> Щ茵障鐚聽ヲ潟⒣delicious yahoo 卸ｃ</p>
<p><a href="https://pinboard.in/u:ussy">https://pinboard.in/u:ussy</a></p>
<p>pinboard Firefox 「ェ潟冴</p>
<p><a href="https://addons.mozilla.org/ja/firefox/addon/pinboard-extension/">https://addons.mozilla.org/ja/firefox/addon/pinboard-extension/</a></p>
<p>ゃ鴻若翫pinboard 若肛毎魘サ闍・繧ア闍・&gt;繧ゥ魘サ繧ス縲∝☎ム∬凶竕ェ縲∵ス溘う闍・繧ュム≫攵驕穂クサム囿/p>
<p><img class="photo" src="http://www.pshared.net/diary/images/20111011_0.png" alt="竕ヲ螳 title="≦宍" width="803" height="38"></p>
<p>цc㊧ц障❼ー鐚/p>
<p><a href="http://www.pshared.net/diary/20111011.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20111010.html#p01">
<link>http://www.pshared.net/diary/20111010.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20111010.html#p01" />
<dc:date>2011-10-10T21:12:01+09:00</dc:date>
<title>膃2 Play framework 七篌茵</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Java</dc:subject>
<description>Play framework 七篌/a&gt;肴；/p&gt; 域院GAE $筝Heroku ュ若若綺筝ｃHeroku Play! ゃｃ綽с GAE сHeroku  Play! ゥ莠懈ウ」繧ア髫懊竕ェ縲√絎憗綽⒢罘 Heroku+Play! ｃ帥障 Play! 憜 1.2 膤祉＜、潟ケ肛凶竰「ム2.0 謚苓厳Scala 貅占凶繝亜ム∵ス溷ク・蟶・繝」聽∞繧エ奇スユ髫慚夂ッ檎ッ乗渊闕⒦ョエender 懊せムらエ願槙 2.0 ム≫弔闌オ纃ス障罩ｅ⒢с綣隙с＜ャ∝⒥ Rails 鐚с Rails 肅ッ句☎ムJava 繧スッ句☎J2EE 竰「闍・繝エ秘囿/p&gt; e闌オ繧ア蟶・魘サム仝ifi 纃ス笏オ主ョエ邏戊闔「闍・遽＆竰「肛次懃スァ髫/description>
<content:encoded><![CDATA[<h3>膃2 Play framework 七篌茵</h3><p><a href="http://atnd.org/events/19107">Play framework 七篌/a>肴；/p>
<p>域院GAE $筝Heroku ュ若若綺筝ｃHeroku Play! ゃｃ綽с GAE сHeroku  Play! ゥ莠懈ウ」繧ア髫懊竕ェ縲√絎憗綽⒢罘 Heroku+Play! ｃ帥障</p>
<p>Play! 憜 1.2 膤祉＜、潟ケ肛凶竰「ム2.0 謚苓厳Scala 貅占凶繝亜ム∵ス溷ク・蟶・繝」聽∞繧エ奇スユ髫慚夂ッ檎ッ乗渊闕⒦ョエender 懊せムらエ願槙 2.0 ム≫弔闌オ纃ス/p>
<p>髫懃スゥ⒤ム≫弔ム∫カ」髫厶シ懊Ε竏昶徴 Rails 髏墫Rails 竍ッ句☎ムJava 繧スッ句☎J2EE 竰「闍・繝エ秘囿/p>
<p>e闌オ繧ア蟶・魘サム仝ifi 纃ス笏オ主ョエ邏戊闔「闍・遽＆竰「肛次懃スァ髫/p>
<p><a href="http://www.pshared.net/diary/20111010.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20100127.html#c01">
<link>http://www.pshared.net/diary/20100127.html#c01</link>
<dc:date>2011-09-26T08:00:40+09:00</dc:date>
<title>2010-01-27のツッコミ[1] ()</title>
<dc:creator></dc:creator>
<description>Viewavaу臂❼с</description>
<content:encoded><![CDATA[Viewavaу臂❼с &gt;]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20110918.html#p01">
<link>http://www.pshared.net/diary/20110918.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20110918.html#p01" />
<dc:date>2011-09-19T03:51:40+09:00</dc:date>
<title>後聽えURL</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>HTML</dc:subject>
<description>繝」竰「relative protocol URL ム♠竕ェ蜀エム∬闕芯 Twitter Twitpic 蜷セ URL 纃ス闖エ驕募ク・繝」ム紊泣、若ケ㏍潟カ泣、茖≪ッ祉ケ帥 img src=&quot;//twitpic.com/show/large/3g2k5l&quot; / 紊⒢HTTP/HTTPS 宴絲上篏帥⒢с 泣、HTTP ム普聽が繧ォTTP ムエサ貎溘こ遽√が繧ォTTPS 竰、紿TTP ムエ秘エサ竕ェ繝・峨こ竰「肓囿/p&gt; IE ムエサ繧ス繧ソ翫2 ィ鴻軌ф絵/p&gt;  //紮RL - by edvakf in hatena protocol-relative-URL, network-path, file:/// ㍽⑰- think49@scrapi 糸鴻//у篏馹- Webtech Walker  綵荀⒢сｃ頳/p&gt;</description>
<content:encoded><![CDATA[<h3>後聽えURL</h3><p>繝」竰「relative protocol URL ム♠竕ェ蜀エム∬闕芯</p>
<p>Twitter Twitpic 蜷セ URL 纃ス闖エ驕募ク・繝」ム紊泣、若ケ㏍潟カ泣、茖≪ッ祉ケ帥</p>
<pre>&lt;img src="//twitpic.com/show/large/3g2k5l" /&gt;</pre>
<p>紊⒢HTTP/HTTPS 宴絲上篏帥⒢с 泣、HTTP ム普聽が繧ォTTP ムエサ貎溘こ遽√が繧ォTTPS 竰、紿TTP ムエ秘エサ竕ェ繝・峨こ竰「肓囿/p>
<p>IE ムエサ繧ス繧ソ翫2 ィ鴻軌ф絵/p>
<ul>
<li><a href="http://d.hatena.ne.jp/edvakf/20100211/1265914046">//紮RL - by edvakf in hatena</a></li>
<li><a href="http://think49.scrapi.jp/scraps/242">protocol-relative-URL, network-path, file:/// ㍽⑰- think49@scrapi</a></li>
<li><a href="http://webtech-walker.com/archive/2010/03/01214138.html">糸鴻//у篏馹- Webtech Walker</a></li>
</ul>
<p>綵荀⒢сｃ頳/p>
<p><a href="http://www.pshared.net/diary/20110918.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20110917.html#p01">
<link>http://www.pshared.net/diary/20110917.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20110917.html#p01" />
<dc:date>2011-09-17T21:01:26+09:00</dc:date>
<title>eneloop mobile booster</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Life</dc:subject>
<description>SANYO USB出力付きリチウムイオンバッテリー (高容量リチウムイオン3.7V5400mAh電池使用) KBC-L54D 			 			三洋電機 			¥ 3,900 		 	  障鴻若ゥ潟紙罧сSANYO 絎拷筝阪２、若ケ帥卸ｃ帥/p&gt; 弱1230mAh Desire HD 腟30 30% 羆緇❼耜√せ繝ァ繧ア Qi 鄂倥若ケ帥с阪２障/p&gt;</description>
<content:encoded><![CDATA[<h3>eneloop mobile booster</h3><p>	<a class="amazon-detail" href="http://www.amazon.co.jp/%E4%B8%89%E6%B4%8B%E9%9B%BB%E6%A9%9F-KBC-L54D-SANYO-USB%E5%87%BA%E5%8A%9B%E4%BB%98%E3%81%8D%E3%83%AA%E3%83%81%E3%82%A6%E3%83%A0%E3%82%A4%E3%82%AA%E3%83%B3%E3%83%90%E3%83%83%E3%83%86%E3%83%AA%E3%83%BC-%E9%AB%98%E5%AE%B9%E9%87%8F%E3%83%AA%E3%83%81%E3%82%A6%E3%83%A0%E3%82%A4%E3%82%AA%E3%83%B33-7V5400mAh%E9%9B%BB%E6%B1%A0%E4%BD%BF%E7%94%A8/dp/B005DUMNSE%3FSubscriptionId%3D1F9ZB25T785C6BC6EWG2%26tag%3Dpsharednet02-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB005DUMNSE"><span class="amazon-detail">
		<img class="amazon-detail left" src="http://ecx.images-amazon.com/images/I/4183wp7N5bL._SL75_.jpg"
		height="75" width="50"
		alt="">
		<span class="amazon-detail-desc">
			<span class="amazon-title">SANYO USB出力付きリチウムイオンバッテリー (高容量リチウムイオン3.7V5400mAh電池使用) KBC-L54D</span><br>
			<span class="amazon-author"></span><br>
			<span class="amazon-label">三洋電機</span><br>
			<span class="amazon-price">¥ 3,900</span>
		</span><br style="clear: left">
	</span></a>
</p>
<p>障鴻若ゥ潟紙罧сSANYO 絎拷筝阪２、若ケ帥卸ｃ帥/p>
<p>弱1230mAh Desire HD 腟30 30% 羆緇❼耜√せ繝ァ繧ア Qi 鄂倥若ケ帥с阪２障/p>
<p><a href="http://www.pshared.net/diary/20110917.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
<item rdf:about="http://www.pshared.net/diary/20110910.html#p01">
<link>http://www.pshared.net/diary/20110910.html#p01</link>
<xhtml:link xhtml:rel="alternate" xhtml:media="handheld" xhtml:type="text/html" xhtml:href="http://www.pshared.net/diary/20110910.html#p01" />
<dc:date>2011-09-10T17:46:16+09:00</dc:date>
<title>Netty ServerBootstrap ㍾篋羈</title>
<dc:creator>Ussy</dc:creator>
<dc:subject>Java</dc:subject>
<description>ServerBootstrap bootstrap = new ServerBootstrap(     new NioServerSocketChannelFactory(         Executors.newCachedThreadPool(),         Executors.newCachedThreadPool()) ); Channel channel = bootstrap.bind(new InetSocketAddress(10000));  // waitForShutdown  ChannelFuture future = channel.close(); future.awaitUninterruptibly(); bootstrap.releaseExternalResources();</description>
<content:encoded><![CDATA[<h3>Netty ServerBootstrap ㍾篋羈</h3><pre>ServerBootstrap bootstrap = new ServerBootstrap(
    new NioServerSocketChannelFactory(
        Executors.newCachedThreadPool(),
        Executors.newCachedThreadPool())
);
Channel channel = bootstrap.bind(new InetSocketAddress(10000));

// waitForShutdown

ChannelFuture future = channel.close();
future.awaitUninterruptibly();
bootstrap.releaseExternalResources();</pre>
<p><a href="http://www.pshared.net/diary/20110910.html#c">ツッコミを入れる</a></p>]]></content:encoded>
</item>
</rdf:RDF>

