![dynamics of mob programming][mobprog.svg]
- Make sure you have [whatchexec][] installed
- Checkout the working branch
| #!/usr/bin/env bash | |
| # | |
| # gh-dl-release! It works! | |
| # | |
| # This script downloads an asset from latest or specific Github release of a | |
| # private repo. Feel free to extract more of the variables into command line | |
| # parameters. | |
| # | |
| # PREREQUISITES | |
| # |
| FROM denismakogon/gocv-alpine:4.0.1-buildstage | |
| RUN apk update && apk add brotli-dev expat-dev | |
| RUN cd && \ | |
| curl -L https://github.com/libvips/libvips/releases/download/v8.7.4/vips-8.7.4.tar.gz | tar xz && \ | |
| cd vips-8.7.4 && ./configure && make && make install && \ | |
| curl -L https://raw.githubusercontent.com/golang/dep/master/install.sh | sh && \ | |
| go get -u -d gocv.io/x/gocv && \ | |
| go get github.com/aldor007/mort/cmd/mort |
| alabaster==0.7.12 | |
| appnope==0.1.0 | |
| arrow==0.12.1 | |
| atlassian-python-api==1.11.19 | |
| atomicwrites==1.3.0 | |
| attrs==17.4.0 | |
| autopep8==1.4.3 | |
| aws-sam-cli==0.6.2 | |
| aws-sam-translator==1.8.0 | |
| Babel==2.6.0 |
| fn main() { | |
| for shade in 0..242 { | |
| let opacity = 13f32 / (255f32 - shade as f32); | |
| println!("opacity:{:0.3};fill:#{:06x}", opacity, shade * 65793); | |
| } | |
| } |
| with open("/usr/share/dict/words") as words: | |
| for word in map(str.rstrip, words): | |
| for letter in word: | |
| match letter: | |
| case "a" | "b" | "c" | "d" | "e" | "f": | |
| continue | |
| case _: | |
| break | |
| else: | |
| print(word) |
| from openapi import get_redoc_html | |
| def serve_docs_route(): | |
| return get_redoc_html("openapi_url", "title") |
| defmodule ShortestReach do | |
| def main do | |
| IO.gets("") | |
| |> String.trim() | |
| |> String.to_integer() | |
| |> shortest_reach() | |
| end | |
| defp shortest_reach(0) do | |
| end |