Skip to content

Instantly share code, notes, and snippets.

View carpusherw's full-sized avatar
👶
Making diaper money

carpusherw carpusherw

👶
Making diaper money
View GitHub Profile
@fliedonion
fliedonion / !GIST file list order - summary.md
Last active June 25, 2024 04:32
Understand GIST file list order.
Summary How to control (or Understand) your GIST page's files list order.
Notice not official documentation.
@mikesouza
mikesouza / lifecycle-plugin.js
Created February 20, 2019 11:11 — forked from bwinant/lifecycle-plugin.js
Serverless Plugin Lifecycle Events
'use strict';
// This plugin will bind to all available lifecycle events and print them out as they are invoked
class LifecyclePrinter {
constructor(serverless, options) {
this.serverless = serverless;
this.options = options;
this.provider = this.serverless.getProvider('aws');