Skip to content

Instantly share code, notes, and snippets.

View jaga-me's full-sized avatar

Jaga-Me jaga-me

View GitHub Profile
@jaga-me
jaga-me / gist:fcc53a198a804cc6491432b28a7371a2
Created February 18, 2017 14:08
Nginx With Let's Encrypt
https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04
@jaga-me
jaga-me / deleteLambdas.sh
Last active July 5, 2018 11:01 — forked from jankei/deleteLambdas.sh
deletes old versions of lambdas that aren't aliased
#!/bin/bash
fnlist=(
'SAMPLE FUNCTION'
'ADD MORE FUNCTIONS HERE'
)
count=0
while [ "x${fnlist[count]}" != "x" ]
do
for (( i=1; i<=$1; i++ ))