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

<channel>
	<title>noein</title>
	<atom:link href="http://www3.atword.jp/noein/feed/" rel="self" type="application/rss+xml" />
	<link>http://www3.atword.jp/noein</link>
	<description>powershell,vba,javascript,c#,python,groovy,ruby,actionscript,php,javaとかが好き</description>
	<pubDate>Tue, 30 Dec 2008 23:46:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/feed/" />
		<item>
		<title>JRuby関連のリンク集（随時更新）</title>
		<link>http://www3.atword.jp/noein/2008/12/31/jruby%e9%96%a2%e9%80%a3%e3%81%ae%e3%83%aa%e3%83%b3%e3%82%af%e9%9b%86%ef%bc%88%e9%9a%8f%e6%99%82%e6%9b%b4%e6%96%b0%ef%bc%89/</link>
		<comments>http://www3.atword.jp/noein/2008/12/31/jruby%e9%96%a2%e9%80%a3%e3%81%ae%e3%83%aa%e3%83%b3%e3%82%af%e9%9b%86%ef%bc%88%e9%9a%8f%e6%99%82%e6%9b%b4%e6%96%b0%ef%bc%89/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 23:46:26 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[JRuby]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=107</guid>
		<description><![CDATA[
JRuby Users JP :: Home Page
http://jruby-users.jp/

JRubyとWebLogicとの連携(EJB, JMS, UserTransaction) (hsato's weblog)
http://www.fourmeisters.com/blog/hsato/2007/08/jrubybea_weblogic_server.html

JRubyは前途有望であるが、成熟しているわけではない／GrizzlyでJRuby on Rails編 (recompile.net)
http://recompile.net/2007/05/jrubygrizzlyjruby_on_rails.html

JRubyチュートリアル：CodeZine
http://codezine.jp/article/detail/1647?p=2
]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/12/31/jruby%e9%96%a2%e9%80%a3%e3%81%ae%e3%83%aa%e3%83%b3%e3%82%af%e9%9b%86%ef%bc%88%e9%9a%8f%e6%99%82%e6%9b%b4%e6%96%b0%ef%bc%89/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/12/31/jruby%e9%96%a2%e9%80%a3%e3%81%ae%e3%83%aa%e3%83%b3%e3%82%af%e9%9b%86%ef%bc%88%e9%9a%8f%e6%99%82%e6%9b%b4%e6%96%b0%ef%bc%89/" />
	</item>
		<item>
		<title>Pythonの日本語</title>
		<link>http://www3.atword.jp/noein/2008/11/30/python%e3%81%ae%e6%97%a5%e6%9c%ac%e8%aa%9e/</link>
		<comments>http://www3.atword.jp/noein/2008/11/30/python%e3%81%ae%e6%97%a5%e6%9c%ac%e8%aa%9e/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 15:56:48 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=105</guid>
		<description><![CDATA[
Pythonの日本語処理ではまった。。。

BOM付きで保存しないとNG。

import os
import cgi
import wsgiref.handlers

from google.appengine.api import users
from google.appengine.ext import db
from google.appengine.ext import webapp
from google.appengine.ext.webapp import template

from google.appengine.ext import db

class Greeting(db.Model):
author = db.UserProperty()
content = db.StringProperty(multiline=True)
date = db.DateTimeProperty(auto_now_add=True)

greeting = Greeting()
greeting.content = u'あ'
greeting.put()

greetings = Greeting.all()

print 'Content-Type: text/plain'
print greetings.count()
for item in greetings:
print item.content.encode('utf-8')
]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/30/python%e3%81%ae%e6%97%a5%e6%9c%ac%e8%aa%9e/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/30/python%e3%81%ae%e6%97%a5%e6%9c%ac%e8%aa%9e/" />
	</item>
		<item>
		<title>後からPKを設定する方法</title>
		<link>http://www3.atword.jp/noein/2008/11/27/%e5%be%8c%e3%81%8b%e3%82%89pk%e3%82%92%e8%a8%ad%e5%ae%9a%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95/</link>
		<comments>http://www3.atword.jp/noein/2008/11/27/%e5%be%8c%e3%81%8b%e3%82%89pk%e3%82%92%e8%a8%ad%e5%ae%9a%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 13:16:17 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=102</guid>
		<description><![CDATA[
簡単なことだけど忘れがちなので。。。

CREATE TABLE book (
name VARCHAR(50),
author VARCHAR(20),
publish_date DATE
);
ALTER TABLE book
ADD PRIMARY KEY(name);
]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/27/%e5%be%8c%e3%81%8b%e3%82%89pk%e3%82%92%e8%a8%ad%e5%ae%9a%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/27/%e5%be%8c%e3%81%8b%e3%82%89pk%e3%82%92%e8%a8%ad%e5%ae%9a%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95/" />
	</item>
		<item>
		<title>VBAとMSXMLのメモ</title>
		<link>http://www3.atword.jp/noein/2008/11/27/vba%e3%81%a8msxml%e3%81%ae%e3%83%a1%e3%83%a2/</link>
		<comments>http://www3.atword.jp/noein/2008/11/27/vba%e3%81%a8msxml%e3%81%ae%e3%83%a1%e3%83%a2/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 13:08:24 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=100</guid>
		<description><![CDATA[
' ノードが文字列かどうかを確認する
If dom.documentElement.FirstChild.nodeTypeString = "text" Then
Debug.Print dom.documentElement.FirstChild.nodeValue
End If
]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/27/vba%e3%81%a8msxml%e3%81%ae%e3%83%a1%e3%83%a2/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/27/vba%e3%81%a8msxml%e3%81%ae%e3%83%a1%e3%83%a2/" />
	</item>
		<item>
		<title>PowerShellでExcel</title>
		<link>http://www3.atword.jp/noein/2008/11/27/powershell%e3%81%a7excel/</link>
		<comments>http://www3.atword.jp/noein/2008/11/27/powershell%e3%81%a7excel/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 12:59:40 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=98</guid>
		<description><![CDATA[
Excel操作するのも簡単だった。。。

$excel = New-Object -comobject Excel.Application
$excel.Visible = $True
# 新規に作成する場合
$workbook = $excel.workbooks.Add()
# 既存のものを開く場合
$workbook = $excel.workbooks.Open((Get-Location).Path + "\DB.xls");
$worksheets = $workbook.worksheets.Item(1)
$worksheets.Cells.Item(1,1).Text = "AAAA"
$workbook.SaveAs((Get-Location).Path + "ps.xls");
$excel.Quit();
]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/27/powershell%e3%81%a7excel/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/27/powershell%e3%81%a7excel/" />
	</item>
		<item>
		<title>【PowerShell】wget</title>
		<link>http://www3.atword.jp/noein/2008/11/16/%e3%80%90powershell%e3%80%91wget/</link>
		<comments>http://www3.atword.jp/noein/2008/11/16/%e3%80%90powershell%e3%80%91wget/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 09:21:41 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=96</guid>
		<description><![CDATA[
wgetがないので。

param([string]$url, [string]$file)
$client = New-Object System.Net.WebClient
$client.DownloadFile($url,(Get-Location).Path + $file)
]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/16/%e3%80%90powershell%e3%80%91wget/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/16/%e3%80%90powershell%e3%80%91wget/" />
	</item>
		<item>
		<title>【PowerShell】GMailのSMTP経由でメールを送る</title>
		<link>http://www3.atword.jp/noein/2008/11/16/%e3%80%90powershell%e3%80%91gmail%e3%81%aesmtp%e7%b5%8c%e7%94%b1%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e9%80%81%e3%82%8b/</link>
		<comments>http://www3.atword.jp/noein/2008/11/16/%e3%80%90powershell%e3%80%91gmail%e3%81%aesmtp%e7%b5%8c%e7%94%b1%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e9%80%81%e3%82%8b/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 07:29:06 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=90</guid>
		<description><![CDATA[
とっても簡単でした。が、もっと短く書きたいよ。。。

$from = New-Object System.Net.Mail.MailAddress("送り元アドレス","送信者名")
$to = New-Object System.Net.Mail.MailAddress("送り先アドレス","受信者名")
$mail = New-Object System.Net.Mail.MailMessage($from,$to)
$mail.Subject = "件名"
$mail.Body = "本文"
$mailer = New-Object System.Net.Mail.SmtpClient("smtp.gmail.com ",587)
$mailer.EnableSsl=$True
$mailer.Credentials= New-Object System.Net.NetworkCredential("ユーザ名","パスワード")
$mailer.send($mail)
]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/16/%e3%80%90powershell%e3%80%91gmail%e3%81%aesmtp%e7%b5%8c%e7%94%b1%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e9%80%81%e3%82%8b/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/16/%e3%80%90powershell%e3%80%91gmail%e3%81%aesmtp%e7%b5%8c%e7%94%b1%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%82%92%e9%80%81%e3%82%8b/" />
	</item>
		<item>
		<title>テストデータを作るときにExcelを使う</title>
		<link>http://www3.atword.jp/noein/2008/11/16/%e3%83%86%e3%82%b9%e3%83%88%e3%83%87%e3%83%bc%e3%82%bf%e3%82%92%e4%bd%9c%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%abexcel%e3%82%92%e4%bd%bf%e3%81%86/</link>
		<comments>http://www3.atword.jp/noein/2008/11/16/%e3%83%86%e3%82%b9%e3%83%88%e3%83%87%e3%83%bc%e3%82%bf%e3%82%92%e4%bd%9c%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%abexcel%e3%82%92%e4%bd%bf%e3%81%86/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 06:08:02 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=88</guid>
		<description><![CDATA[
テストデータを作るのにExcelを使うと楽だってことを、

最近まで知りませんでした。

たとえばこんな感じ。

="INSERT INTO " &#38; A2 &#38; " (" &#38; B2 &#38; " [...]]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/16/%e3%83%86%e3%82%b9%e3%83%88%e3%83%87%e3%83%bc%e3%82%bf%e3%82%92%e4%bd%9c%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%abexcel%e3%82%92%e4%bd%bf%e3%81%86/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/16/%e3%83%86%e3%82%b9%e3%83%88%e3%83%87%e3%83%bc%e3%82%bf%e3%82%92%e4%bd%9c%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%abexcel%e3%82%92%e4%bd%bf%e3%81%86/" />
	</item>
		<item>
		<title>PowerShellのスクリプトブロック</title>
		<link>http://www3.atword.jp/noein/2008/11/16/powershell%e3%81%ae%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88%e3%83%96%e3%83%ad%e3%83%83%e3%82%af/</link>
		<comments>http://www3.atword.jp/noein/2008/11/16/powershell%e3%81%ae%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88%e3%83%96%e3%83%ad%e3%83%83%e3%82%af/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 04:36:37 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=85</guid>
		<description><![CDATA[
すっごい、RubyとかGroovyに似てるから簡単。

&#38; $args[0] $args[1]

って書いて、Test-Proc.ps1って名前で保存したとする。

PS C:\&#62; Test-Proc { [...]]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/16/powershell%e3%81%ae%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88%e3%83%96%e3%83%ad%e3%83%83%e3%82%af/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/16/powershell%e3%81%ae%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88%e3%83%96%e3%83%ad%e3%83%83%e3%82%af/" />
	</item>
		<item>
		<title>ツール類のリンク集</title>
		<link>http://www3.atword.jp/noein/2008/11/16/%e3%83%84%e3%83%bc%e3%83%ab%e9%a1%9e%e3%81%ae%e3%83%aa%e3%83%b3%e3%82%af%e9%9b%86/</link>
		<comments>http://www3.atword.jp/noein/2008/11/16/%e3%83%84%e3%83%bc%e3%83%ab%e9%a1%9e%e3%81%ae%e3%83%aa%e3%83%b3%e3%82%af%e9%9b%86/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 03:45:51 +0000</pubDate>
		<dc:creator>noein</dc:creator>
		
		<category><![CDATA[ツール]]></category>

		<guid isPermaLink="false">http://www3.atword.jp/noein/?p=80</guid>
		<description><![CDATA[
■ファイル・フォルダ
窓の杜 - Fire File Copy
http://www.forest.impress.co.jp/lib/sys/file/syncbackup/firefilecopy.html
Synkron
http://synkron.sourceforge.net/

■デフラグ
Smart Defrag download and review - automatic disk defragmenter from SnapFiles
http://www.snapfiles.com/get/iobitsmartdefrag.html

あんまなかった。。。
]]></description>
		<wfw:commentRss>http://www3.atword.jp/noein/2008/11/16/%e3%83%84%e3%83%bc%e3%83%ab%e9%a1%9e%e3%81%ae%e3%83%aa%e3%83%b3%e3%82%af%e9%9b%86/feed/</wfw:commentRss>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www3.atword.jp/noein/2008/11/16/%e3%83%84%e3%83%bc%e3%83%ab%e9%a1%9e%e3%81%ae%e3%83%aa%e3%83%b3%e3%82%af%e9%9b%86/" />
	</item>
	</channel>
</rss>

