2006-06-01から1ヶ月間の記事一覧
http://www.atmarkit.co.jp/fwin2k/win2ktips/331cellfmt/cellfmt.html メモ。
http://www.showg.net/monoiziri/WMI/FirstStep/ WSHのサンプルってvbsばっかりだなぁ。
http://msdn2.microsoft.com/ja-jp/library/7435xtz6.aspx jscは.NET(のSDK?)に付属してるっぽい。
http://local.joelonsoftware.com/mediawiki/index.php/%E9%96%8B%E7%99%BA%E6%8A%BD%E8%B1%A1%E5%8C%96%E3%83%AC%E3%82%A4%E3%83%A4 メモ。
http://tach.arege.net/ruby1.8-reference-ja/expect_rb.html http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-list/30822 メモ。
http://www-06.ibm.com/jp/developerworks/linux/020614/j_l-sc1.html とりあえず。
http://rbxpcom.mozdev.org/
http://developer.apple.com/internet/webcontent/xmlhttpreq.html http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/ http://www.mozilla-japan.org/newlayout/xml/ XMLHttpRequestがどこで定義されたインターフェースなのか、気になったので。
http://www.fxis.co.jp/xmlcafe/news/w3c.html いちおうメモ。
function hello(){ var obj = Components.classes["@mozilla.org/file/local;1"]. createInstance(Components.interfaces.nsILocalFile); obj.initWithPath("c:\\"); var a = []; var ite = obj.directoryEntries; while(ite.hasMoreElements()) { var e = i…
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <script> function hello(){ var req = new XMLHttpRequest(); req.open("GET", "file:///C:/lan.log/", false); req.send(null); alert(req.res…</window>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <script> <bar> <zoo>ZOOZOO</zoo> <baz>BAZBAZ</baz> </bar> </foo>; var parser = new DOMParse…
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <script> <bar> <zoo>ZOOZOO</zoo> <baz>BAZBAZ</baz> </bar> </foo>; var parser = new DOMParse…
読みつつ、だらだら夜なべ。
http://www.smellman.homelinux.org/mozilla/mozilla-soap.html
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <script> function hello() { var hbox = document.getElementById("hb"); var t = document.createElement("textbox"); hbox.appendChild(t); }…</window>
function hello(){ var file = Components.classes["@mozilla.org/file/local;1"] .createInstance(Components.interfaces.nsILocalFile); file.initWithPath("C:\\lan.log"); var fis = Components.classes["@mozilla.org/network/file-input-stream;1"] .c…
function hello(){ var clip = Components.classes["@mozilla.org/widget/clipboard;1"].createInstance(Components.interfaces.nsIClipboard); var trans = Components.classes["@mozilla.org/widget/transferable;1"].createInstance(Components.interface…
function hello(){ var uri = Components.classes["@mozilla.org/network/standard-url;1"] .createInstance(Components.interfaces.nsIURI); uri.spec = "http://www.google.com/"; var ios = Components.classes["@mozilla.org/network/io-service;1"] .ge…
function hello(){ var uri = Components.classes["@mozilla.org/network/standard-url;1"] .createInstance(Components.interfaces.nsIURI); uri.spec = "http://www.google.com/"; var ios = Components.classes["@mozilla.org/network/io-service;1"] .ge…
function hello(){ var file = Components.classes["@mozilla.org/file/local;1"] .createInstance(Components.interfaces.nsILocalFile); file.initWithPath("C:\\foo.zip"); var zip = Components.classes["@mozilla.org/libjar/zip-reader;1"] .createIns…
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <script> </window>
XULPlanet http://www.xulplanet.com/ (和訳) 一番、ためになっているような。XUL Programmer's Reference Manual http://www.mozilla.org/xpfe/xulref/ (和訳)XUL Applications http://piro.sakura.ne.jp/xul/xul.htmlXUL Tips&Technics http://piro.sakura…
http://www.vieka.com/esqldoc/sql92bnf.htm 正しいのかは不明。
Webアプリでもユーザの操作をトレースしといて、なんかあったら、一切合財情報集めてメール投げてくれると楽だなぁ…と、後の祭り的に思う。 今度から、致命的例外はそーゆー処理を入れてもらうようにしよう…
http://shibuyajs.org/articles/2006/06/15/technical-talk-2 マジで行きたい。 つーか、速攻で40名埋まるんじゃなかろうか…
http://www.jmuk.org/d/?path=2006/05/01#d01t01 IO()さんにおしえてもらったリンクをたどって。 手続き型で書くとこんなかんじらしい。 function tak(x, y, z) { if(x return y; else if(y return z; else return x; }実際に動かしてみると、確かにたらいま…
http://d.hatena.ne.jp/brazil/20060608/1149779210 面白そうな機能が。使ってみようかな?
すごーく、読みやすいし分かりやすい。
関数プログラミングの練習として。確かにreturnはうっとうしいかも。 concat()って破壊的だったっけ? head()でnullを返すのがなんか気になる。いいのかな? function head(l) { return (l.length > 0) ? l[0] : null; }function tail(l) { return (l.length…