Skip to content

Instantly share code, notes, and snippets.

View diogeneshamilton's full-sized avatar

Matt Hamilton diogeneshamilton

View GitHub Profile
[{
"name": "Quadrantids",
"peakNight": "2016-01-03T00:00:00.000Z",
"location": {
"latitude": "34.999090",
"longitude": "-111.739968"
}
},
{
"name": "Lyrids",
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: developer@venmo.com
version: "1.0"
@diogeneshamilton
diogeneshamilton / Venmo iOS SDK fix for loading 3rd party categories
Created August 10, 2014 12:06
Add this to your Other Linker Flags in Xcode.
-force_load
$(BUILT_PRODUCTS_DIR)/libPods-Venmo-iOS-SDK.a
-force_load
$(BUILT_PRODUCTS_DIR)/libPods-VENCore.a
" 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
[user]
name = Matthew Hamilton
email = diogeneshamilton@gmail.com
[core]
excludesfile = /Users/matthewhamilton/.gitignore_global
editor = vim
[rerere]
enabled = 1
[branch "master"]
remote = origin
@diogeneshamilton
diogeneshamilton / dabblet.css
Created April 18, 2013 05:13
HTML5 / CSS3 Circle with Partial Border
/**
* 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%;