Skip to content

Instantly share code, notes, and snippets.

@yig
yig / JavaScript reference.md
Last active April 21, 2024 23:36
An overview of JavaScript best practices. Geared towards someone with a C/C++/Java/Python background.

JavaScript reference for non-JavaScript programmers

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.

@cannin
cannin / jenkins_build_install.R
Last active January 6, 2017 18:44
Generate testthat TAP results compatible with the Jenkins continuous integration TAP plugin
# 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) {
@olih
olih / jq-cheetsheet.md
Last active May 1, 2025 21:51
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@aparrish
aparrish / spacy_intro.ipynb
Last active March 14, 2025 21:43
NLP Concepts with spaCy. Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.