Skip to content

Instantly share code, notes, and snippets.

View leejarvis's full-sized avatar

Lee Jarvis leejarvis

View GitHub Profile
package main
import (
"fmt"
"bufio"
"os"
"strings"
)
func askYes(question string) (answer string, ok bool) {
@leejarvis
leejarvis / raskell.rb
Created August 15, 2012 10:23 — forked from andkerosine/raskell.rb
Haskell-like list comprehensions in Ruby
$stack, $draws = [], {}
def method_missing *args
return if args[0][/^to_/]
$stack << args.map { |a| a or $stack.pop }
$draws[$stack.pop(2)[0][0]] = args[1] if args[0] == :<
end
class Array
def +@
package main
import "fmt"
type Array struct {
Elems []interface{}
}
func (a *Array) push(object interface{}) {
a.Elems = append(a.Elems, object)
package main
import (
_ "github.com/bmizerany/pq"
"database/sql"
"log"
"fmt"
"encoding/json"
)
package main
import (
"io"
"os"
"fmt"
"bufio"
)
func printlines(linechannel chan string) {
package main
import (
_ "github.com/bmizerany/pq"
"database/sql"
"log"
"fmt"
)
func main() {
package github
import (
"encoding/json"
"errors"
"fmt"
"net/http"
)
const (
package main
import "fmt"
type Person struct {
Name string
}
func (p *Person) String() string {
return fmt.Sprintf("%s @ %p", p.Name, &p)
package main
import (
"fmt"
"time"
)
type GetError struct {
Stamp time.Time
Message string
## Chronic next
Chronic.configure do |config|
config.time = 3.days.ago
config.context = :past
end
Chronic.parse("3 days") #=> 10th July 2012
Chronic.tokens_for("3 days") #=> [:scalar_day, :repeater_day]