Skip to content

Instantly share code, notes, and snippets.

View davidvanleeuwen's full-sized avatar
✌️
Sharing is caring

David van Leeuwen davidvanleeuwen

✌️
Sharing is caring
View GitHub Profile
@davidvanleeuwen
davidvanleeuwen / Preferences.sublime-settings
Last active September 11, 2015 08:41
Sublime settings
{
"bold_folder_labels": true,
"caret_extra_width": 1,
"caret_style": "smooth",
"close_windows_when_empty": false,
"color_scheme": "Packages/Oceanic Next Color Scheme/Oceanic Next.tmTheme",
"file_exclude_patterns":
[
"smart.lock",
".DS_Store",
{
"body": $input.json("$"),
"resourceId": "$input.params('id')",
"header": {
"Authorization": "$input.params('Authorization')"
},
"info": {
"sourceIp": "$context.identity.sourceIp",
"userAgent": "$context.identity.userAgent"
}
@davidvanleeuwen
davidvanleeuwen / gulpfile.babel.js
Last active February 29, 2016 14:03
Deployment package for AWS Lambda (multi-stage w/ versioning)
require('babel-polyfill')
import gulp from 'gulp'
import zip from 'gulp-zip'
import babel from 'gulp-babel'
import dox from 'dox'
import glob from 'glob'
import minimist from 'minimist'
import async from 'async'
import fs from 'fs'