Author: Sean Gillies Version: 1.0
This document describes a GeoJSON-like protocol for geo-spatial (GIS) vector data.
| :+1: | |
| :-1: | |
| :airplane: | |
| :art: | |
| :bear: | |
| :beer: | |
| :bike: | |
| :bomb: | |
| :book: | |
| :bulb: |
| %!TEX TS-program = xelatex | |
| \documentclass[12pt]{scrartcl} | |
| % The declaration of the document class: | |
| % The second line here, i.e. | |
| % \documentclass[12pt]{scrartcl} | |
| % is a standard LaTeX document class declaration: | |
| % we say what kind of document we are making in curly brackets, | |
| % and specify any options in square brackets. |
| Vector = {} | |
| Vector.__index = Vector | |
| function Vector.__add(a, b) | |
| if type(a) == "number" then | |
| return Vector.new(b.x + a, b.y + a) | |
| elseif type(b) == "number" then | |
| return Vector.new(a.x + b, a.y + b) | |
| else | |
| return Vector.new(a.x + b.x, a.y + b.y) |
| #!/usr/bin/env ruby | |
| # Usage: gitio URL [CODE] | |
| # | |
| # Turns a github.com URL | |
| # into a git.io URL | |
| # | |
| # Copies the git.io URL to your clipboard. | |
| url = ARGV[0] | |
| code = ARGV[1] |
| --[[ | |
| ProFi v1.3, by Luke Perkin 2012. MIT Licence http://www.opensource.org/licenses/mit-license.php. | |
| Example: | |
| ProFi = require 'ProFi' | |
| ProFi:start() | |
| some_function() | |
| another_function() | |
| coroutine.resume( some_coroutine ) | |
| ProFi:stop() |
| local ffi = require("ffi") | |
| ffi.cdef[[ | |
| typedef long time_t; | |
| typedef struct timeval { | |
| time_t tv_sec; | |
| time_t tv_usec; | |
| } timeval; | |
| int gettimeofday(struct timeval* t, void* tzp); |
| <?php | |
| /** | |
| * Implements hook_drush_command(). | |
| */ | |
| function custom_local_drush_command() { | |
| $items['files-fix-permissions'] = array( | |
| 'description' => 'Fix file permissions', | |
| 'options' => array( | |
| 'owner' => "The name of the user to assign ownership of all files with chown(). Defaults to \$USER.", |
| -- Author: Michael-Keith Bernard | |
| -- Date: August 10, 2012 | |
| -- | |
| -- Notes: This Trie implementation is a port of the Clojure implementation | |
| -- below. I had to implement quite a few functions from clojure.core to keep the | |
| -- same basic functionality. Probably very little if any of this code is | |
| -- production worthy, but it's interesting all the same. Finally, all of the | |
| -- documentation strings are pulled directly from clojure.core and may not | |
| -- accurately reflect the Lua implementation. | |
| -- |
| upstream thumborbe { | |
| server thumbor.myhost.com:8090 ; | |
| server thumbor.myhost.com:8091 ; | |
| server thumbor.myhost.com:8092 ; | |
| server thumbor.myhost.com:8093 ; | |
| server thumbor.myhost.com:8094 ; | |
| server thumbor.myhost.com:8095 ; | |
| } | |
| location ~* "^/.{28}/.*(jpg|jpeg|gif|png)(#.*)?$" { |