Skip to content

Instantly share code, notes, and snippets.

%{
#include <stdio.h> /* printf() */
#include <stdlib.h> /* atoi() */
int vars[26];
%}
Stmt = - e:Expr EOL { printf("%d\n", e); }
| ( !EOL . )* EOL { printf("error\n"); }
Expr = i:ID ASSIGN s:Sum { printf("%s = %d\n", i, s); $$ = vars[i] = s; }
# YYSTYPE is char *
Attribute = '[' n:Id
( '=' v:Value { printf("%s %s\n", n, v) }
| '~=' v:Value
| '^=' v:Value
| '$=' v:Value
| '*=' v:Value
)? ']'
(function($){
$('#datepicker1').datepicker('onSelect', function(dateText, inst){
$('#datepicker2').datepicker('setDate', dateText)
})
})(jQuery)
(function($){
$('#datepicker1').change(function(){
$('#datepicker2').val($(this).val())
})
})(jQuery)
var update = function(id, prev) {
return function(dateText, date) {
$(id).val(dateText.replace(/\/(\d{1,2})\//, function(_, day){
return '/' + (prev ? --day : ++day) + '/'
}))
}
}
$("#datepicker1").datepicker({ onSelect : update('#datepicker2') })
$("#datepicker2").datepicker({ onSelect : update('#datepicker1', true) })
if defined? Growl
method = failures.to_i > 0 ? :notify_error : :notify_ok
Growl.send method, "passes: #{passes} failures: #{failures}", :title => browser.to_s.capitalize
end
module Tags
def tag name, contents = nil, attrs = {}, &block
contents, attrs = nil, contents if contents.is_a? Hash
create_tag name, contents, attrs, &block
end
def create_tag name, contents, attrs, &block
"<#{name} #{attrs.map { |k,v| %(#{k}="#{v}") }.join(' ') }>#{contents}</#{name}>\n"
end
JSpec.include({
afterSpec : function(spec) {
JSpec.fail('something broke')
}
})
load('/Library/Ruby/Gems/1.8/gems/visionmedia-jspec-2.4.2/lib/jspec.js')
load('lib/express.core.js')
load('lib/express.mime.js')
load('lib/express.view.js')
JSpec
.exec('spec/spec.core.js')
.exec('spec/spec.routing.js')
.exec('spec/spec.mime.js')
load('lib/jspec.js')
load('spec/modules.js')
load('spec/spec.grammar-less.js')
JSpec
.exec('spec/spec.grammar.js')
.exec('spec/spec.js')
.exec('spec/spec.matchers.js')
.exec('spec/spec.utils.js')
.exec('spec/spec.shared-behaviors.js')