Mix.install([
# Interactive cells in Livenotebooks
{:kino, "~> 0.6.0"},
# VegaLite interactive cells. VegaLite is a very nice charting library/framework
{:kino_vega_lite, "~> 0.1.1"}
])
I hereby claim:
- I am learts on github.
- I am learts (https://keybase.io/learts) on keybase.
- I have a public key ASA8p6pGLLJuweYk1N7w373slhoLKAnG5zV9woZt2xMXOQo
To claim this, I am signing this object:
This file contains 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
(def players | |
[:agostino :alessio :andrea :cesare :domenico :emanuela :fabio | |
:francesco :gennaro :jean-pierre :leonardo :luca :nelson :pierpaolo :rosario :sara]) | |
(def old-teams | |
(set (map sort [[:agostino :rosario], | |
[:alessio :domenico], | |
[:emanuela :fabio], | |
[:francesco :gennaro], | |
[:pierpaolo :cesare], |
This file contains 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
#!/bin/bash | |
EXIT_CODE=0 | |
REFNAME="$1" | |
OLDREV="$2" | |
NEWREV="$3" | |
# find file which have been Added, Copied, Modified or Renamed | |
UPDATED=`git diff-tree -r --diff-filter=ACMR --name-only $OLDREV $NEWREV '*.js'` |