<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/massy/">
    <title>massy @ ウィキ</title>
    <link>http://w.atwiki.jp/massy/</link>
    <atom:link href="https://w.atwiki.jp/massy/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>massy @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2015-07-18T16:17:00+09:00</dc:date>
    <utime>1437203820</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/massy/pages/8.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/massy/pages/17.html">
    <title>test3</title>
    <link>https://w.atwiki.jp/massy/pages/17.html</link>
    <description>
      env COMPRESSION=NONE  ./create_table.sh
sudo tsdb tsd


sudo tsdb mkmetric speed
sudo tsdb import ~/a

sudo tsdb query 2000/01/01-00:00 sum speed
sudo tsdb query 2000/01/01-00:00 sum speed reqtype=*

sudo tsdb scan --import 0 sum speed
# delete
sudo tsdb scan --import 0 sum speed --delete    </description>
    <dc:date>2015-07-18T16:17:00+09:00</dc:date>
    <utime>1437203820</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/16.html">
    <title>test2</title>
    <link>https://w.atwiki.jp/massy/pages/16.html</link>
    <description>
      package test.encode;

import java.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
import java.nio.charset.CodingErrorAction;

public class TestEncode {
    static CharsetEncoder encoder = Charset.forName(&quot;US-ASCII&quot;).newEncoder()
            .onMalformedInput(CodingErrorAction.REPORT)
            .onUnmappableCharacter(CodingErrorAction.REPORT);
    static Charset charset = Charset.forName(&quot;US-ASCII&quot;);
    
    public static void main(String[] args) throws UnsupportedEncodingException {
        int n = 1000000;
        for (int i = 0; i &lt; 100; i++) {
            f0(n);
            f1(n);
            f2(n);
            f3(n);
        }
    }
    
    static void f0(int n) {
        long s1 = System.nanoTime();
        for (int i = 0; i &lt; n; i++) {
            String.valueOf(i);
        }
            </description>
    <dc:date>2014-08-23T22:54:42+09:00</dc:date>
    <utime>1408802082</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/15.html">
    <title>test1</title>
    <link>https://w.atwiki.jp/massy/pages/15.html</link>
    <description>
      package test.nonblock;

import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.util.Arrays;
import java.util.List;

public class TestServer {

    private static int port = 10000;
    private static String group;
    private static String name;
    private static List&lt;String&gt; types = Arrays.asList(new String[]{&quot;aa&quot;, &quot;bb&quot;});
    /**
     * @param args
     */
    public static void main(String[] args) {
        ServerSocketChannel serverChannel = null;
        try {
            serverChannel = ServerSocketChannel.open();
            serverChannel.socket().bind(new InetSocketAddress(port));
            while (true) {
                SocketChannel channel = serverChannel.accept();
                SocketAddress addr = channel.socket().getRemoteSocketAddress();
                </description>
    <dc:date>2014-08-23T15:33:13+09:00</dc:date>
    <utime>1408775593</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/14.html">
    <title>hash関数</title>
    <link>https://w.atwiki.jp/massy/pages/14.html</link>
    <description>
          static int getHash(int key, int seed) {
        int c1 = 0xcc9e2d51;
        int c2 = 0x1b873593;
        int r1 = 15;
        int r2 = 13;
        int m = 5;
        int n = 0xe6546b64;
        
        int hash = seed;

        int k = key;
        k *= c1;
        k = (k &lt;&lt; r1) | (k&gt;&gt;&gt;(32-r1));
        k *= c2;
        hash ^= k;
        hash = ((hash &lt;&lt; r2) | (hash &gt;&gt;&gt; (32 - r2))) * m + n;        
     
        hash ^= 4;
        hash ^= (hash &gt;&gt;&gt; 16);
        hash *= 0x85ebca6b;
        hash ^= (hash &gt;&gt;&gt; 13);
        hash *= 0xc2b2ae35;
        hash ^= (hash &gt;&gt;&gt; 16);
        
        return hash;
    }    </description>
    <dc:date>2014-07-27T19:23:24+09:00</dc:date>
    <utime>1406456604</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/13.html">
    <title>JAXBメモ</title>
    <link>https://w.atwiki.jp/massy/pages/13.html</link>
    <description>
      スキーマからxjcコマンドを使ってJavaのクラスを生成した。
ただし、一部エラーが出たためスキーマを編集している。


RMIのサンプル添付。    </description>
    <dc:date>2014-03-23T22:35:19+09:00</dc:date>
    <utime>1395581719</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/12.html">
    <title>プラグイン/人気商品一覧</title>
    <link>https://w.atwiki.jp/massy/pages/12.html</link>
    <description>
      * 人気商品一覧
@wikiのwikiモードでは
 #price_list(カテゴリ名)
と入力することで、あるカテゴリの売れ筋商品のリストを表示することができます。

カテゴリには以下のキーワードがご利用できます。
|キーワード|表示される内容|
|ps3|PlayStation3|
|ps2|PlayStation3|
|psp|PSP|
|wii|Wii|
|xbox|XBOX|
|nds|Nintendo DS|
|desctop-pc|デスクトップパソコン|
|note-pc|ノートパソコン|
|mp3player|デジタルオーディオプレイヤー|
|kaden|家電|
|aircon|エアコン|
|camera|カメラ|
|game-toy|ゲーム・おもちゃ全般|
|all|指定無し|

空白の場合はランダムな商品が表示されます。

※このプラグインは[[価格比較サイト@PRICE&gt;&gt;http://atprice.jp]]のデータを利用しています。

-----

たとえば、
 #price_list(game-toy)
と入力すると以下のように表示されます。

ゲーム・おもちゃ全般の売れ筋商品
#price_list(game-toy)

ノートパソコンの売れ筋商品
#price_list(game-toy)

人気商品リスト
#price_list()
    </description>
    <dc:date>2011-08-03T22:25:14+09:00</dc:date>
    <utime>1312377914</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/11.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/massy/pages/11.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment    </description>
    <dc:date>2011-08-03T22:25:14+09:00</dc:date>
    <utime>1312377914</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/10.html">
    <title>プラグイン/関連ブログ</title>
    <link>https://w.atwiki.jp/massy/pages/10.html</link>
    <description>
      * 関連ブログ
@wikiのwikiモードでは
 #bf(興味のある単語)
と入力することで、あるキーワードに関連するブログ一覧を表示することができます

詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_161_ja.html

-----


たとえば、#bf(ゲーム)と入力すると以下のように表示されます。


#bf(ゲーム)
    </description>
    <dc:date>2011-08-03T22:25:14+09:00</dc:date>
    <utime>1312377914</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/9.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/massy/pages/9.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2011-08-03T22:25:14+09:00</dc:date>
    <utime>1312377914</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/massy/pages/8.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/massy/pages/8.html</link>
    <description>
      * 動画(youtube)
@wikiのwikiモードでは
 #video(動画のURL)
と入力することで、動画を貼り付けることが出来ます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_209_ja.html

また動画のURLはYoutubeのURLをご利用ください。
＝＞http://www.youtube.com/

-----


たとえば、#video(http://youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。


#video(http://youtube.com/watch?v=kTV1CcS53JQ)

    </description>
    <dc:date>2011-08-03T22:25:14+09:00</dc:date>
    <utime>1312377914</utime>
  </item>
  </rdf:RDF>
