Skip to content

Instantly share code, notes, and snippets.

/** 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
@catalinstoica
catalinstoica / Dockerfile
Created May 23, 2020 23:46 — forked from knowsuchagency/Dockerfile
Makefile Docker Git GitHub multi-stage build ssh private key recipe
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
@catalinstoica
catalinstoica / redis_cheatsheet.bash
Created February 9, 2018 13:16 — forked from LeCoupa/redis_cheatsheet.bash
Redis Cheatsheet - Basic Commands You Must Know --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
# 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.