AWS Lambda script to recieve email notifcation when someone stars your GitHub repository.
Set up an AWS Lambda function with an API gateway endpoint (POST method) that triggers this lambda function. The code for the Lambda function is in index.js.
# Clean dist. | |
# We don't want previous release files getting included in this release. | |
rm dist/* | |
# Get git last commit ID | |
lastcommitID=$(git log --format="%H" -n 1) | |
echo "Create zip file release: dist/${lastcommitID}.zip" | |
# Zip quietly |
Here I try to implement a simple pipe forward operator similar to |> operator in Elixir or the andThen operator in Scala
Let's say you have a need for doing something like this
val x = f("something")
val y = g(x)
val z = h(y)
This is also equivalent to saying:
The following are the features that I worked on implementing as part of Google Summer of Code 2016
Sets up a Revision History page to OSEM using which displays a list of changes made to conferences and their associated resources.