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
[{ | |
"name": "Quadrantids", | |
"peakNight": "2016-01-03T00:00:00.000Z", | |
"location": { | |
"latitude": "34.999090", | |
"longitude": "-111.739968" | |
} | |
}, | |
{ | |
"name": "Lyrids", |
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
swagger: "2.0" | |
info: | |
title: Venmo API | |
description: The Venmo API. | |
termsOfService: https://venmo.com/legal/us-user-agreement/ | |
contact: | |
name: Venmo API Support | |
url: https://developer.venmo.com | |
email: [email protected] | |
version: "1.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
-force_load | |
$(BUILT_PRODUCTS_DIR)/libPods-Venmo-iOS-SDK.a | |
-force_load | |
$(BUILT_PRODUCTS_DIR)/libPods-VENCore.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
" Use Vim settings, rather then Vi settings (much better!). | |
" This must be first, because it changes other options as a side effect. | |
set nocompatible | |
" this is all indentation stuff. hm. thanks nathan! | |
set smarttab " smart tab interpretation | |
set expandtab " expand tabs to spaces | |
set softtabstop=4 " 4-space tabs | |
set shiftwidth=4 " 4-space (auto) indent | |
set smartindent " smart indentation |
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
[user] | |
name = Matthew Hamilton | |
email = [email protected] | |
[core] | |
excludesfile = /Users/matthewhamilton/.gitignore_global | |
editor = vim | |
[rerere] | |
enabled = 1 | |
[branch "master"] | |
remote = origin |
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
/** | |
* HTML5 / CSS3 Circle with Partial Border | |
* http://stackoverflow.com/q/13059190/1397351 | |
*/ | |
* { margin: 0; padding: 0; } | |
.circle { | |
position: relative; | |
margin: 5% auto; | |
width: 50%; height: 50%; | |
border-radius: 100%; |