http://kjunichi.cocolog-nifty.com/misc/2011/01/new-activexobje.html
#準備
<script src="http://jashkenas.github.com/coffee-script/extras/coffee-script.js"></script>
#Compile cs2js
var js = CoffeeScript.compile(data);
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IISってaspx.vbファイルを変更した場合どうなんだ! | |
まさにそのxxx.aspxにアクセスしているユーザがいたら、そもそも | |
ファイル使用中で置き換えられないのか? | |
こちらに一番都合がよい動き | |
アクセスしているユーザいたら、そのリクエストにたいするレスポンスを返すまで | |
旧版で動かし、アクセスが来ていても、待たせて、新版に入れ替えて、受付 | |
、待たされていたアクセスの先頭はコンパイルを待つ |
#自分から隠れる(帰ったら試す) NSApp.hide(self)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
amazonで試したら、カートを共有してた。 | |
しかも、非同期で定期的にカートの情報を更新しているページもあるような動きも | |
ページによっては更新されなかったりだったので、何かのトリガーでチェックしているのかもしれないが、 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RubyGems Environment: | |
- RUBYGEMS VERSION: 1.3.6 | |
- RUBY VERSION: 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0] | |
- INSTALLATION DIRECTORY: /Library/Ruby/Gems/1.8 | |
- RUBY EXECUTABLE: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby | |
- EXECUTABLE DIRECTORY: /usr/bin | |
- RUBYGEMS PLATFORMS: | |
- ruby | |
- universal-darwin-12 | |
- GEM PATHS: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==> Downloading http://www.apache.org/dyn/closer.cgi?path=ant/ivy/2.3.0-rc1/apac | |
Error: undefined class/module Timeout:: | |
Please report this bug: | |
https://github.com/mxcl/homebrew/wiki/troubleshooting | |
/usr/local/Library/Homebrew/formula_installer.rb:245:in `load' | |
/usr/local/Library/Homebrew/formula_installer.rb:245:in `build' | |
/usr/local/Library/Homebrew/utils.rb:223:in `ignore_interrupts' | |
/usr/local/Library/Homebrew/formula_installer.rb:241:in `build' | |
/usr/local/Library/Homebrew/formula_installer.rb:115:in `install' | |
/usr/local/Library/Homebrew/cmd/install.rb:79:in `install_formulae' |
this.style.removeAttribute
$(this).removeAttr('filter');
http://stackoverflow.com/questions/1456790/jquery-removeattribute-error-in-ff
#https://api.github.com ここが入口
#俺のgist一覧を取得するには GET /users/kjunichi/gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interpolateNulls:true 間のデータをつないでくれる | |
var chart = new google.visualization.LineChart(document.getElementById('chart_div')); | |
chart.draw(data, { | |
interpolateNulls:true, | |
curveType:"none", | |
width: 600, height: 384, title: 'EUR Performance'}); | |
} | |