Skip to content

Instantly share code, notes, and snippets.

View monkseal's full-sized avatar

Kevin English monkseal

  • Kenglish.co - Ruby, React.js, Javascript Developer
  • South Lake Tahoe/San Diego/Honolulu
View GitHub Profile
@monkseal
monkseal / uninstall_gems.sh
Last active October 26, 2021 20:52 — forked from IanVaughan/uninstall_gems.sh
Uninstall all rbenv gems
#!/usr/bin/env bash
uninstall() {
list=`gem list | grep -v default | awk '{print $1;}'`
for gem in $list; do
gem uninstall -aIx $gem
done
gem list
gem install bundler
}
@monkseal
monkseal / Policy
Last active January 17, 2018 17:05 — forked from WarlaxZ/Policy
Serverless IAM Requirements
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"apigateway:DELETE",
"apigateway:GET",
"apigateway:GetResources",
"apigateway:POST",