This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pre-requisites: | |
# - installed NVM via Homebrew | |
# - follow the projects README initial setup | |
# !/bin/bash | |
docker stop $(docker ps -a -q) || true | |
echo "====================" | |
echo "setting up events..." | |
echo "--------------------" | |
cd events | |
. $(brew --prefix nvm)/nvm.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* How to use? | |
* | |
* - Install Node.JS | |
* - Install NPM | |
* - Via terminal from here: | |
* -- Browse to the Pictures folder | |
* -- Save this script in a file called `index.js` (1st execution only) | |
* -- Execute `npm i` (1st execution only) | |
* -- Execute `node ./index.js` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
namespace Your.Namespace.Here // <=== update the namespace! | |
{ | |
/// <summary> | |
/// Time manipulation tools. | |
/// </summary> | |
public static class TimeUtil |