Skip to content

Instantly share code, notes, and snippets.

/assets/airports/airportLoadList.js 3,400
/assets/airports/ksea.json 2,910
/assets/airports/terrain/ksea.geojson 2,903
/assets/airports/eidw.json 631
/assets/airports/terrain/eidw.geojson 613
/assets/airports/kbos.json 410
/assets/airports/terrain/kbos.geojson 400
/assets/airports/terrain/mdsd.geojson 345
/assets/airports/mdsd.json 343
/assets/airports/ksfo.json 156
using System.Collections.Generic;
public class FormationModel
{
public string formationType;
public List<FormationPointModel> pointList = new List<FormationPointModel>();
public FormationModel(string type, List<FormationPointModel> pointsToAdd)
{
formationType = type;
@n8rzz
n8rzz / Gemfile
Last active August 29, 2015 14:21
Gemfile
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'devise', '3.4.1'
gem 'pg'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'omniauth', '~> 1.2.2'
# Use ActiveModel has_secure_password
@n8rzz
n8rzz / Guardfile
Last active August 29, 2015 14:21
Guardfile
#!/usr/bin/env ruby
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
## Uncomment and set this to only include directories you want to watch
# directories %w(app lib config spec)
## Uncomment to clear the screen before every task
clearing :on