<?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://nyanyan.to/archives/category/%e6%9c%aa%e5%88%86%e9%a1%9e/feed" rel="self" type="application/rss+xml" />
	<link>http://nyanyan.to</link>
	<description>ヽ(´ー｀)ノにゃにゃんとやって行こうよヽ(´ー｀)ノ</description>
	<lastBuildDate>Thu, 18 Feb 2010 13:06:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google GOのライブラリ（http）</title>
		<link>http://nyanyan.to/archives/412</link>
		<comments>http://nyanyan.to/archives/412#comments</comments>
		<pubDate>Fri, 13 Nov 2009 14:14:32 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=412</guid>
		<description><![CDATA[ライブラリっていうか標準パッケージね。
Google GO Package Directory
現状にしては結構充実かも。
結局のところサーバサイドでいくらNativeバイナリ作ったところで、
apacheからプロセス生成して実行じゃオーバーヘッドが・・・、
プロセス内で実行されるapxとかのプラグインでスクリプトのほうがって
思ったけど、標準でhttpサーバが入ってます。
HTTP/1.1対応、マルチスレッドでそこそこ使える感じ。
package main
import (
	&#8220;http&#8221;;
	&#8220;io&#8221;;
)
// hello world, the web server
func HelloServer(c *http.Conn, req *http.Request) {
	io.WriteString(c, &#8220;hello, world!\n&#8221;);
}
func main() {
	http.Handle(&#8221;/hello&#8221;, http.HandlerFunc(HelloServer));
	err := http.ListenAndServe(&#8221;:12345&#8243;, nil);
	if err != nil {
		panic(&#8221;ListenAndServe: &#8220;, err.String())
	}
}

]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/412/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google GOでクロージャ</title>
		<link>http://nyanyan.to/archives/409</link>
		<comments>http://nyanyan.to/archives/409#comments</comments>
		<pubDate>Fri, 13 Nov 2009 14:07:54 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=409</guid>
		<description><![CDATA[ま、やってるでしょうってことで。

package main
import "fmt"
func getCounter() (func() int) {
	var value int;
	value = 0;
	return func() int { value = value + 1; return value;};
}
func main() {
	var f func() int;
	f = getCounter();
	fmt.Printf("hello, world %d\n", f() );
	fmt.Printf("hello, world %d\n", f() );
	fmt.Printf("hello, world %d\n", f() );
	fmt.Printf("hello, world %d\n", f() );
	fmt.Printf("hello, world %d\n", f() );
	fmt.Printf("hello, world %d\n", f() );
}

スクリプト言語触っててCで出来れば・・・と思ってたことが出来る感じ。
とりあえず、最近中島さんのところでよく出るクロージャw
Python Hack : 噛めば噛むほどおいしくなるクロージャの話
実行環境が必要ないってことでバイナリ生成は有利なんだけど、
Cとかしか無かったし、
GCJとかだととっても巨大なバイナリに成ってたことを考えるといい感じ。
とはいえ、Cで生成したオブジェクトよりかは大きいんだけど。
# [...]]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/409/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sqlite3-rubyのruby-1.9.1-mswin32用</title>
		<link>http://nyanyan.to/archives/406</link>
		<comments>http://nyanyan.to/archives/406#comments</comments>
		<pubDate>Sat, 04 Apr 2009 06:20:05 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=406</guid>
		<description><![CDATA[何となく見つけられなかったのでビルド。
sqlite3-ruby-1.9.1-mswin32.tar.gz
]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/406/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skype 4.0 and &#8230;</title>
		<link>http://nyanyan.to/archives/402</link>
		<comments>http://nyanyan.to/archives/402#comments</comments>
		<pubDate>Wed, 11 Mar 2009 13:39:14 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=402</guid>
		<description><![CDATA[もうなんかリリースされてたのねって感じで（汗
個人的にはメインマシンがOSXに成った事もあってというか、
Skype使う事も無くなってある意味忘却の彼方です（ｗ
４．０に成って３．８に有った機能の幾つかが無くなりました。
SkypeCastとかPublicChatとかSkypeMeとか。
この辺、また復活する機能も有るかもしれないけど可能性は低いかなぁと。
不特定の誰かとのコミュニケーションという分野より、
特定の誰かとのコミュニケーションという分野に重きを置いてる気がします。
あと企業利用よりも個人利用。
Joostの苦戦を見てSkypeもSkypeが有効に使える分野に重点を置いてるのかと。
そういった方向性を昔は語ってくれる人が居たけど、
最近は語ってくれる人が居なくなったのも変化の一つ。
VirtualDesktopCameraですが、OSXだとSkype本体のScreen Sharing が有るし、
Windows版にもそのうち機能追加されそうな気がするので、
これまた終焉の時かなぁとも思ったり。
まー、寂しいような、アレなような。
mumbleとかTS2とかもうちょっと流行っても良いのになぁと
思わなくもなかったり。
mumbleはmurmurがQt4.3以降を要求するのが…orzですが（ｗ
]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/402/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>また移転〜</title>
		<link>http://nyanyan.to/archives/391</link>
		<comments>http://nyanyan.to/archives/391#comments</comments>
		<pubDate>Tue, 06 Jan 2009 15:02:56 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=391</guid>
		<description><![CDATA[だってAWS高いんだもの。
今回は日本に戻ってきてVPS STOCK使ってます。
適当〜に半日ぐらいで移行したので不備等有ればお知らせください。
]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/391/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CheckPod R1(&gt;_</title>
		<link>http://nyanyan.to/archives/377</link>
		<comments>http://nyanyan.to/archives/377#comments</comments>
		<pubDate>Wed, 23 Jul 2008 14:55:03 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=377</guid>
		<description><![CDATA[ゃくちゃくと（笑
色々大変ながら・・・
]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/377/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>とりあえずSkypeオープンチャット（ｗ</title>
		<link>http://nyanyan.to/archives/373</link>
		<comments>http://nyanyan.to/archives/373#comments</comments>
		<pubDate>Mon, 30 Jun 2008 11:40:34 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=373</guid>
		<description><![CDATA[自分が今できること・・・というとこんなことぐらいか（ｗ

iPhone開発者支援 hosted by ryuusei.k.
Join now

Chat about what&#8217;s on your mind. More about public chats.

まぁ、それもよし。
]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/373/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ふぬ〜</title>
		<link>http://nyanyan.to/archives/368</link>
		<comments>http://nyanyan.to/archives/368#comments</comments>
		<pubDate>Thu, 29 May 2008 15:55:47 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=368</guid>
		<description><![CDATA[と。
思い立ってサイト移行中。
Skypeのグラフも何とか。
Windowsで出来ることはLinuxでも出来るサという信念で頑張ったらホントに何とかなりました。
よーし、この勢いでDNS切り替えちゃうぞと思った物の、
WWW系の設定は後メイン以外の細かいサイトのみながら、
DNS/MAIL系の設定がまだ。
うへ〜。
今日はランニングの意味もかねて立ち上げておくとするか。
&#8211;
と、思ったら手違いでおとしちゃったorz
また明日〜。
]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/368/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>久しぶりに献本頂きました</title>
		<link>http://nyanyan.to/archives/365</link>
		<comments>http://nyanyan.to/archives/365#comments</comments>
		<pubDate>Thu, 22 May 2008 11:26:53 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=365</guid>
		<description><![CDATA[
何の関係が・・・と思いつつも微妙にＳｋｙｐｅ＋Ｔｗｉｔｔｅｒで関係してます（笑
]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/365/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>「あわせて読みたい」と「SBM Popular Entry」</title>
		<link>http://nyanyan.to/archives/356</link>
		<comments>http://nyanyan.to/archives/356#comments</comments>
		<pubDate>Tue, 22 Apr 2008 15:25:38 +0000</pubDate>
		<dc:creator>ryu</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://nyanyan.to/?p=356</guid>
		<description><![CDATA[ま、最近の潮流にあわせて設置（w
あわせて読みたいはまだこなれてないからか微妙（笑
うちのBlog観てくれてる人の嗜好が・・・orz
モバイル系は解るんだけどフィギュア系とかアイドル系・・・誰だよ（笑
設置してみて解る意外な読者層・・・。
と、それはともかく「SBM Popular Entry」はちょっと色々。
もちろん、SBM Popular Entryプラグインは当たり前なんだけど、
サイドバーをwidget化してるから、PHPのコード埋め込むのが難ありで。
しかも2.5系って言うのがまた微妙。
Executable PHP widget
しかも、php.iniのshort-open-tag​=falseがまたややこしい事に成ってて・・・。
ま、設置出来たからこんなもんで（笑
]]></description>
		<wfw:commentRss>http://nyanyan.to/archives/356/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

