Skip to content

Instantly share code, notes, and snippets.

View SarahJaine's full-sized avatar

Sarah-Jaine Szekeresh SarahJaine

View GitHub Profile
@mynamebrody
mynamebrody / drizly-lambda-script.js
Last active October 11, 2016 09:18
The AWS Lambda Function to order alcohol via Drizly
var https = require('https');
var CONFIG = {
base_url: 'sandbox.drizly.com',
partner_token: 'API_TOKEN',
token: 'USER_TOKEN',
delivery_address_id: 654321,
saved_credit_card_id: 123456,
latitude: 40.0155,
longitude: -105.284
@planetoftheweb
planetoftheweb / bootstrapCDN.html
Created July 8, 2015 01:25
Bootstrap 3 CDN Page Code
<!-- HEAD SECTION -->
<!-- IE Edge Meta Tag -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">