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
| /** My comments -taw -- Source location of this script: https://gist.github.com/taw00/1c014549dd649c597518e6eb4f1e3969 | |
| * To use in Google Sheets: | |
| * - Open or create Google Spreadsheet | |
| * - Click on Tools -> Script Editor | |
| * - Click Create script for Spreadsheet | |
| * - Delete the placeholder content and paste the code from this script | |
| * - Click the save button and give the project a name | |
| * - Back in the spreadsheet, in a cell, you can type “=ImportJSON()” and begin filling out it’s parameters. | |
| * Original developer: | |
| * - http://blog.fastfedora.com/projects/import-json |
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
| FROM python:3 as build-system | |
| RUN pip install -U pip | |
| COPY requirements.txt requirements.txt | |
| ### create temporary image used to download and vendor packages using private key ### | |
| FROM build-system as intermediate | |
| # add credentials on build |
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
| # Redis Cheatsheet | |
| # All the commands you need to know | |
| redis-server /path/redis.conf # start redis with the related configuration file | |
| redis-cli # opens a redis prompt | |
| # Strings. |