- ClojureScript https://clojurescript.org/
- Clojure https://clojure.org
- Deps and CLI: https://clojure.org/guides/deps_and_cli
- Figwheel https://figwheel.org/
- Flappy Bird video: https://www.youtube.com/watch?v=KZjFVdU8VLI
- figwheel-main template: https://github.com/bhauman/figwheel-main-template
- Devcards https://github.com/bhauman/devcards
- Strange Loop talk: https://www.youtube.com/watch?v=G7Z_g2fnEDg
- Intro video: https://vimeo.com/97078905
This file contains hidden or 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
| FROM alpine:3.13 | |
| LABEL maintainer="Ville ([email protected])" | |
| RUN apk add git perl | |
| RUN git clone https://github.com/schacon/cowsay.git /cowsay | |
| ENV COWPATH /cowsay/cows | |
| ENTRYPOINT ["perl", "/cowsay/cowsay"] |
This file contains hidden or 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
| git log --shortstat --no-merges --pretty=format:"%h %ae" | awk '{ if (NF == 2) { commit=$1; author=$2 }; if (NF == 7) { removed=$6; if (deletions[author] < removed) {deletions[author]=removed; commits[author]=commit;}; }; if (NF == 5 && $5~/deletions/) { removed=$4; if (deletions[author] < removed) {deletions[author]=removed; commits[author]=commit;}; }; } END { for (author in deletions) { print "-"deletions[author]"\t"commits[author]"\t"author;} }' | sort -n | head -n10 |