Skip to content

Instantly share code, notes, and snippets.

View yurist38's full-sized avatar
💻
Work in progress...

Yuri Drabik yurist38

💻
Work in progress...
View GitHub Profile
@yurist38
yurist38 / lifecycle-cheat-sheet.md
Created August 25, 2021 14:50 — forked from HyperBrain/lifecycle-cheat-sheet.md
Serverless Lifecycle Cheat Sheet

Serverless plugin author's cheat sheet

This cheat sheet provides a detailed overview of the exposed lifecycle events and available commands (and entrypoints) of the Serverless framework, that can be hooked by plugins (internal and external ones). The document is structured by the commands invoked by the user.

Lifecycle events are shown as the globally available outer events (all providers) and sub lifecycle events that are provider specific in the called order. Currently only the AWS provider is shown. If you have information about the other provider,

@yurist38
yurist38 / curl.sh
Created February 3, 2021 11:50 — forked from exAspArk/curl.sh
Test CORS with cURL
curl -I -X OPTIONS \
-H "Origin: http://EXAMPLE.COM" \
-H 'Access-Control-Request-Method: GET' \
http://EXAMPLE.COM/SOMETHING 2>&1 | grep 'Access-Control-Allow-Origin'
@yurist38
yurist38 / introrx.md
Created April 10, 2018 07:58 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing