jq is useful to slice, filter, map and transform structured json data.
brew install jq
# PARAMETERS | |
#cfg <- '{"url":"https://devbotcc:[email protected]/mil2041/netboxr.git", "quick":true, "dependencies":true}' | |
#pkg <- "netboxr" | |
#url <- Sys.getenv("URL") | |
pkg <- Sys.getenv("PKG") | |
cfg <- Sys.getenv("CFG") | |
# FUNCTIONS | |
processTap <- function(inputFile) { |
Author: Yotam Gingold
License: Public Domain (CC0)
This document is intended as a reference or introduction to JavaScript for someone familiar with a language like C/C++/Java or Python. It follows best practices and gathers the scattered wisdom from matny stackoverflow questions and in-depth JavaScript essays. It relies on no external libraries.