Skip to content

Instantly share code, notes, and snippets.

Java のコードを
pythonista に持ち込む:まぁ、Java も書けなくはないけどね
rubyist に持ち込む:ツマラン、どこかに細工してやろうか・・・
CTO川崎 に持ち込む:出てけゴルァァァァァァァァァァァ!!
Python のコードを
Java エンジニアに持ち込む:おぅ、Python のコードか
rubyist に持ち込む:スクリプト言語の僚友だ、バッチリ直してやるぜ
CTO川崎 に持ち込む:けっ、優等生か
@rokujyouhitoma
rokujyouhitoma / gist:4688312
Created February 1, 2013 01:11
on linkedin
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!
% cat Makefile
compile:
make lint
make updatedeps
make compilejs
lint:
gjslint --strict -r src/xxx
updatedeps:
/**
* @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);