I hereby claim:
- I am maikeulb on github.
- I am maikeuls (https://keybase.io/maikeuls) on keybase.
- I have a public key ASDuzVZRrmqd_TCYTi7CHSuG9U0ZMbxOuY4YgZQowy11cwo
To claim this, I am signing this object:
| version: '3' | |
| services: | |
| flask: | |
| restart: always | |
| volumes: | |
| - static:/app/app/static/ | |
| env_file: | |
| - ./src/.env |
| FROM jwilder/nginx-proxy:alpine | |
| COPY proxy.conf /etc/nginx/conf.d/ |
| -- Two datatypes | |
| data Optional a = Some a | Empty deriving (Eq, Show) | |
| data Or a b = A a | B b deriving (Eq, Show) | |
| -- functor instances | |
| instance Functor Optional where | |
| fmap f (Some a) = Some (f a) | |
| fmap _ Empty = Empty | |
| instance Functor (Or a) where |
I hereby claim:
To claim this, I am signing this object:
brew install llvm
ln -s "/usr/local/opt/llvm/bin/clang-format" "/usr/local/bin/clang-format"
ln -s "/usr/local/opt/llvm/bin/clang-tidy" "/usr/local/bin/clang-tidy"use cmake file
find_program(CLANG_TIDY_BIN clang-tidy)
find_program(RUN_CLANG_TIDY_BIN /usr/local/Cellar/llvm/10.0.0_3/share/clang/run-clang-tidy.py)