Skip to content

Instantly share code, notes, and snippets.

View zgotsch's full-sized avatar

Zach Gotsch zgotsch

  • Palo Alto, CA
View GitHub Profile
@olih
olih / jq-cheetsheet.md
Last active July 16, 2024 23:02
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

@tranquan
tranquan / xcode-keybindings-as-vscode.md
Last active July 16, 2024 17:20
Xcode KeyBindings as VSCode
@rmcelreath
rmcelreath / prior_likelihood_conflict.r
Created September 11, 2023 11:29
Demonstration of how normal and student-t distributions interact in Bayesian updating
# prior - likelihood conflict
library(rethinking)
yobs <- 0
mtt <- ulam(
alist(
y ~ dstudent(2,mu,1),
mu ~ dstudent(2,10,1)