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
Java のコードを | |
pythonista に持ち込む:まぁ、Java も書けなくはないけどね | |
rubyist に持ち込む:ツマラン、どこかに細工してやろうか・・・ | |
CTO川崎 に持ち込む:出てけゴルァァァァァァァァァァァ!! | |
Python のコードを | |
Java エンジニアに持ち込む:おぅ、Python のコードか | |
rubyist に持ち込む:スクリプト言語の僚友だ、バッチリ直してやるぜ | |
CTO川崎 に持ち込む:けっ、優等生か |
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
Tohru, | |
I thought you'd be interested by this: | |
http://stoic.com/javascript | |
It has a quite interesting architecture, and it's entirely written in Javascript. | |
I'd love to get your take on it! |
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
% cat Makefile | |
compile: | |
make lint | |
make updatedeps | |
make compilejs | |
lint: | |
gjslint --strict -r src/xxx | |
updatedeps: |
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
/** | |
* @param {Function} func . | |
* @param {Function} . | |
*/ | |
function decorator(func, begin, end) { | |
return function() { | |
var time = begin(arguments); | |
var result = func.apply(this, arguments); | |
setTimeout(function(){ | |
end(arguments, time); |
NewerOlder