I hereby claim:
- I am wstucco on github.
- I am massimo (https://keybase.io/massimo) on keybase.
- I have a public key whose fingerprint is 4538 9292 4496 E67A 6CE2 BF39 5D2C 6772 9E02 C529
To claim this, I am signing this object:
<?php | |
// Takes the parameter value and validate it against a | |
// list of known validators and throws an exception if it doesn't | |
// | |
// params: | |
// mixed $value | |
// string $validator | |
// |
git filter-branch --commit-filter ' | |
if [ "$GIT_AUTHOR_EMAIL" = "<email>" ]; | |
then | |
GIT_COMMITTER_EMAIL="<new-email>"; | |
GIT_AUTHOR_EMAIL="<new-email>"; | |
git commit-tree "$@"; | |
else | |
git commit-tree "$@"; | |
fi' HEAD |
package main | |
import ( | |
"fmt" | |
"net/http" | |
) | |
func main() { | |
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
interface State { | |
public State nextState(); | |
} | |
class IdleState implements State { | |
public State nextState() { | |
return new ScanState(); | |
} | |
} |
defmodule Brainfuck do | |
# opcodes | |
@op_vinc "+" # increment value at memory address | |
@op_vdec "-" # decrement value at memory address | |
@op_pinc ">" # increment memory address | |
@op_pdec "<" # decrement memory address | |
@op_putc "." # output byte at memory address | |
@op_getc "," # input byte into memory address | |
@op_lbeg "[" # loop begin |
defmodule Brainfuck do | |
# opcodes | |
@op_vinc "+" # increment value at memory address | |
@op_vdec "-" # decrement value at memory address | |
@op_pinc ">" # increment memory address | |
@op_pdec "<" # decrement memory address | |
@op_putc "." # output byte at memory address | |
@op_getc "," # input byte into memory address | |
@op_lbeg "[" # loop begin |
{ | |
"env": "2.0.7.0", | |
"startup_app": { | |
"name": "Hello Open Fin", | |
"url": "http:/localhost:5000/index.html", | |
--> "uuid": "OpenFinHelloWorld", | |
. | |
. | |
. | |
} |
/* | |
* Copyright (C) 2012, Tino Didriksen Consult | |
* Developed by Tino Didriksen <[email protected]> | |
* Modified by Massimo Ronca | |
* | |
* This file is part of Benchmarks | |
* | |
* Benchmarks is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or |
if Meteor.client? | |
user = User.new('Admin') | |
puts user | |
puts user.admin? | |
puts "hello from client #{user.name}!" | |
end | |
if Meteor.server? | |
user = User.new('Massimo') | |
puts user |
I hereby claim:
To claim this, I am signing this object: