- bike about
- synth jam
- play an rpg
- just hang out
- make weird things
- eat a pizza
- make pupusas
- leave alameda
- throw bottles on the rocks
- yank tablecloths from tables full of vases
This file contains 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
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
const ( | |
secondsPerMinute = 60 | |
secondsPerHour = 60 * secondsPerMinute |
This file contains 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
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
func main() { | |
fmt.Printf("%010b", gray(10)) | |
} |
This file contains 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 'rubygems' | |
require 'gpx' | |
require 'httparty' | |
require 'pstore' | |
class Api | |
include HTTParty | |
base_uri 'https://atlas-obscura-api.herokuapp.com' | |
CACHE = PStore.new("cache.pstore") |
This file contains 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
.PHONY .NOTPARALLEL : B K F I T U R Z N S X Y L J G W A H Q M P V O D E C | |
A : W | |
@echo "A" | |
A : U | |
@echo "A" | |
A : J | |
@echo "A" |
This file contains 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
/** | |
SVG parser for the Lasersaur. | |
Converts SVG DOM to a flat collection of paths. | |
Copyright (c) 2011 Nortd Labs | |
Open Source by the terms of the Gnu Public License (GPL3) or higher. | |
Code inspired by cake.js, canvg.js, svg2obj.py, and Squirtle. | |
Thank you for open sourcing your work! |
This file contains 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
Sarah, Alice, John, Bob | |
Sarah -400 | |
--- | |
Sarah -300 | |
Alice 100 | |
John 100 | |
Bob 100 | |
John -100 |
This file contains 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 'io/console' | |
class Game | |
attr_reader :playing | |
def initialize | |
@width = 50 | |
@height = 30 | |
@board = [].tap { |s| @width.times { |x| @height.times { |y| s << [x, y] } } } | |
@snake = [] |
This file contains 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 'io/console' | |
class Game | |
attr_reader :playing | |
def initialize | |
@width = 50 | |
@height = 30 | |
@snake = [] | |
@score = 0 |
This file contains 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
https://gist.github.com/dustMason/487eabfa2cafd2e2b0c4814903c21772 |
NewerOlder