RedCloth-4.2.3 abstract-1.0.0 actionmailer-2.3.10 actionmailer-3.0.3 actionmailer-3.0.5 actionpack-2.3.10 actionpack-3.0.3 actionpack-3.0.5 activemodel-3.0.3 activemodel-3.0.5
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
#!/bin/bash | |
# Settings: edit these as needed | |
PROJECT_NAME="test" | |
OUTPUT_DIRECTORY="~/Documents/MapBox/export/" | |
# first change into TileMill code directory | |
cd /Applications/TileMill.app/Contents/Resources/ | |
# hint: use http://bboxfinder.com/ to get bounds in lon/lat |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title></title> | |
<script src='//api.tiles.mapbox.com/mapbox.js/v1.4.0/mapbox.js'></script> | |
<link href='//api.tiles.mapbox.com/mapbox.js/v1.4.0/mapbox.css' rel='stylesheet' /> | |
<!--[if lte IE 8]> | |
<link href='//api.tiles.mapbox.com/mapbox.js/v1.4.0/mapbox.ie.css' rel='stylesheet'> | |
<![endif]--> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title></title> | |
<script src='//api.tiles.mapbox.com/mapbox.js/v1.4.0/mapbox.js'></script> | |
<link href='//api.tiles.mapbox.com/mapbox.js/v1.4.0/mapbox.css' rel='stylesheet' /> | |
<!--[if lte IE 8]> | |
<link href='//api.tiles.mapbox.com/mapbox.js/v1.4.0/mapbox.ie.css' rel='stylesheet'> | |
<![endif]--> |
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
xcode command line tools updated | |
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0] | |
jekyll 1.0.2 | |
installed pygments | |
Git Status: | |
[mapbox.github.com (spaceship)]$ git st | |
# On branch spaceship | |
# Untracked files: |
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
RedCloth-4.2.3 | |
abstract-1.0.0 | |
actionmailer-2.3.10 | |
actionmailer-3.0.3 | |
actionmailer-3.0.5 | |
actionpack-2.3.10 | |
actionpack-3.0.3 | |
actionpack-3.0.5 | |
activemodel-3.0.3 | |
activemodel-3.0.5 |
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
/Users/grafa/.rvm/gems/ruby-1.9.3-p392/gems/commander-4.1.5/lib/commander/command.rb:169:in `parse_options_and_call_procs': missing argument: --limit_posts (OptionParser::MissingArgument) | |
from /Users/grafa/.rvm/gems/ruby-1.9.3-p392/gems/commander-4.1.5/lib/commander/command.rb:155:in `run' | |
from /Users/grafa/.rvm/gems/ruby-1.9.3-p392/gems/commander-4.1.5/lib/commander/runner.rb:402:in `run_active_command' | |
from /Users/grafa/.rvm/gems/ruby-1.9.3-p392/gems/commander-4.1.5/lib/commander/runner.rb:78:in `run!' | |
from /Users/grafa/.rvm/gems/ruby-1.9.3-p392/gems/commander-4.1.5/lib/commander/delegates.rb:11:in `run!' | |
from /Users/grafa/.rvm/gems/ruby-1.9.3-p392/gems/commander-4.1.5/lib/commander/import.rb:10:in `block in <top (required)>' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
.slider-wrapper | |
#slider | |
.slide1 | |
= image_tag "slider-images/1slide-cropped-tag-line-trans.jpg" | |
.slide2 | |
= image_tag "slider-images/2slide-tag-line-trans.jpg" | |
.slide3 | |
= image_tag "slider-images/3slide-cropped-tag-line.jpg" | |
#slider-direction-nav | |
#slider-control-nav |
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
#!/usr/bin/env python | |
# Haversine formula example in Python for Calculating Bearing | |
# Inspired from http://www.movable-type.co.uk/scripts/latlong.html | |
import math | |
def bearing(origin, destination): | |
lat1, lon1 = origin | |
lat2, lon2 = destination |