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
require 'formula' | |
class TmuxForIterm2 < Formula | |
url 'http://iterm2.googlecode.com/files/tmux-for-iTerm2-20120203.tar.gz' | |
sha1 'b0c78e3f142cc735f0518951c04eab947ca7c95b' | |
homepage 'http://code.google.com/p/iterm2/wiki/TmuxIntegration' | |
depends_on 'libevent' | |
def install |
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
<head> | |
<title>Time Test</title> | |
</head> | |
<body> | |
{{> time_test}} | |
</body> | |
<template name="time_test"> | |
<h1>Time Test</h1> |
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
var helloMiddleware = function(name) { | |
return 'Hello ' + + '!'; | |
}; | |
var hiMiddleware = function(name) { | |
return 'Hi ' + + '!'; | |
}; | |
var counts = {}; | |
var countMiddleware = function(name) { |
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
setTimeout(function() { | |
console.log(FOTOMOTO.API.isBasketEmpty()); // -> true | |
}, 1000); | |
setTimeout(function() { | |
console.log(FOTOMOTO.API.isBasketEmpty()); // -> true | |
}, 2000); | |
setTimeout(function() { | |
console.log(FOTOMOTO.API.isBasketEmpty()); // -> false | |
}, 3000); | |
setTimeout(function() { |
OlderNewer