├── .editorconfig ├── .gitignore ├── README.md ├── awk ├── long-text.txt ├── obscure.awk ├── patterns.awk ├── program.awk ├── statements.awk └── text.txt ├── bash ├── a.txt ├── alias-boolean.sh ├── args.sh ├── b.txt ├── dangerous-local.sh ├── echo-stderr.sh ├── example.sh ├── exec-and-trap │ ├── busy.sh │ └── main.sh ├── functions.sh ├── hero-cat.sh ├── iterate-over-args.sh ├── or.sh ├── pipe.sh ├── safe-local.sh ├── set-e-and-if.sh ├── trap-err-and-dont-exit.sh ├── trap.sh └── variable-expansion.sh ├── check-ascii └── check_ascii.py ├── deployables ├── .gitignore ├── README.md ├── TODO.org └── python │ ├── README.md │ ├── db │ ├── Dockerfile │ └── init.sql │ ├── docker-compose.override.yml │ ├── docker-compose.prod.yml │ ├── docker-compose.yml │ ├── env │ ├── development.env │ └── production.env │ ├── nginx │ ├── Dockerfile │ ├── sites-enabled │ │ └── flask_project │ └── static │ │ └── css │ │ └── index.css │ └── web │ ├── Dockerfile │ ├── migrations │ ├── 2015-02-14-13-49_messages.sql │ └── 2016-02-14-13-49_messages.sql │ ├── requirements.txt │ └── src │ ├── app.py │ ├── config.py │ ├── message.py │ ├── migrate_db.py │ └── templates │ └── index.html ├── docker-images ├── build-machine │ ├── Dockerfile │ └── Makefile ├── opam-doc │ └── Dockerfile └── python-simple │ └── Dockerfile ├── dotty ├── gadt.scala └── other-gadt-example.scala ├── electron-talks-to-docker ├── .gitignore ├── README.md ├── assets │ ├── feathericons │ │ ├── activity.svg │ │ ├── heart.svg │ │ ├── minus-circle.svg │ │ ├── pause-circle.svg │ │ ├── play-circle.svg │ │ ├── plus.svg │ │ ├── refresh-cw.svg │ │ └── server.svg │ └── icon.png ├── client │ ├── components │ │ ├── Container.js │ │ ├── ContainerList.js │ │ ├── ContainerModal.js │ │ ├── Logs.js │ │ ├── NewContainerModal.js │ │ └── Sidebar.js │ ├── constants │ │ ├── colors.js │ │ └── styles.js │ ├── index.js │ ├── layout │ │ └── Section.js │ └── pages │ │ ├── About.js │ │ └── ManageContainers.js ├── electron │ ├── main.js │ └── templates │ │ └── index.html ├── package-lock.json ├── package.json ├── server │ └── server.js └── webpack.config.js ├── emacs-in-docker ├── Dockerfile ├── Makefile ├── README.md ├── entrypoint.sh ├── init.el └── install-emacs.sh ├── gnuplot ├── data.txt ├── plot.txt └── run.sh ├── go ├── 1.9 │ └── workspace │ │ ├── README.md │ │ ├── go.work │ │ ├── hello │ │ ├── go.mod │ │ └── hello.go │ │ ├── shell.nix │ │ └── util │ │ ├── go.mod │ │ └── util.go └── hello │ ├── README.md │ └── main.go ├── hatch-dotty ├── .gitignore ├── README.md ├── build.sbt ├── project │ ├── build.properties │ └── plugins.sbt └── src │ └── main │ └── scala │ └── echo │ ├── Handler.scala │ └── Lamba.scala ├── hatch-reason ├── .gitignore ├── README.md ├── bsconfig.json ├── package.json └── src │ └── Handler.re ├── kubernetes └── storage │ ├── README.md │ └── persistent-volumes-minikube.yml ├── make ├── makefile-presentation │ ├── Makefile │ ├── index.lol │ ├── index.txt │ ├── lolify.py │ └── setup.mk └── makefile-watch-wait │ ├── Makefile │ ├── bundle.js │ ├── source1.js │ ├── source2.js │ └── wait.py ├── merge-windows └── merge-windows.txt ├── models-in-articles ├── Makefile ├── README.md └── src │ ├── index.css │ ├── index.html │ └── index.js ├── new ├── .gitignore ├── Makefile ├── README.md ├── TODO.md ├── bin │ ├── jbuild │ └── new.re ├── jbuild-workspace.dev ├── lib │ ├── Args.re │ ├── Config.re │ ├── Errors.re │ ├── Main.re │ └── jbuild ├── new.opam ├── test │ ├── jbuild │ └── test.re └── website │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── src │ ├── components │ └── terminal.jsx │ └── pages │ └── index.jsx ├── nix ├── flakes │ ├── best-version │ │ ├── README.md │ │ ├── flake.lock │ │ ├── flake.nix │ │ └── simple-script.sh │ ├── better-script │ │ ├── README.md │ │ ├── flake.lock │ │ └── flake.nix │ ├── simple-go-env │ │ ├── README.md │ │ ├── flake.lock │ │ ├── flake.nix │ │ └── main.go │ └── simple-script │ │ ├── README.md │ │ ├── flake.lock │ │ └── flake.nix ├── nix-build │ ├── simple │ │ ├── README.md │ │ ├── simple.c │ │ ├── simple.nix │ │ └── simple_builder.sh │ └── wiki-search │ │ ├── README.md │ │ ├── shell-usage-example.nix │ │ ├── wiki-search.nix │ │ └── wiki-search.sh ├── nix-instantiate │ ├── README.md │ ├── add.nix │ └── attribute-set.nix └── nix-shell │ ├── README.md │ └── empty.nix ├── node └── dynamic-require │ ├── README.md │ ├── a.js │ ├── b.js │ └── c.js ├── notes ├── Makefile ├── index.css ├── index.html └── index.js ├── notion └── notion-db-csv-processing │ ├── README.md │ ├── flake.lock │ ├── flake.nix │ └── main.go ├── observability └── open-census │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ ├── etc │ ├── ocagent-service-a.yml │ ├── occollector-service-b.yml │ └── prometheus.yml │ ├── package-lock.json │ ├── package.json │ ├── sh │ └── send-requests.sh │ └── src │ ├── instrument.js │ ├── metrics.js │ ├── middleware.js │ ├── service-a.js │ └── service-b.js ├── ocaml ├── cli-tool │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── jbuild │ └── main.ml └── webserver │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── jbuild │ └── main.ml ├── oh-my-zsh-archive ├── aliases.zsh ├── keybindings.zsh ├── plugins │ ├── aws-switch │ │ ├── _aws-switch │ │ └── aws-switch.plugin.zsh │ ├── config-cheat │ │ └── config-cheat.plugin.zsh │ ├── config-dive │ │ └── config-dive.plugin.zsh │ ├── config-fzf │ │ └── config-fzf.plugin.zsh │ ├── config-go │ │ └── config-go.plugin.zsh │ ├── config-opam │ │ └── config-opam.plugin.zsh │ ├── config-php │ │ └── config-php.plugin.zsh │ ├── danger-danger │ │ └── danger-danger.plugin.zsh │ ├── git-fzf │ │ └── git-fzf.plugin.zsh │ ├── git-pr │ │ ├── _git-pr │ │ └── git-pr.plugin.zsh │ ├── iterm-theme │ │ ├── _iterm-theme │ │ └── iterm-theme.plugin.zsh │ ├── project │ │ └── project.plugin.zsh │ ├── reload-function │ │ ├── _reload-function │ │ └── reload-function.plugin.zsh │ └── switch-project │ │ └── switch-project.plugin.zsh └── themes │ └── hartmann.zsh-theme ├── openai ├── .gitignore ├── README.md ├── completion.js ├── create-embeddings.ts ├── data │ └── links.db ├── package-lock.json ├── package.json ├── summary.js └── tsconfig.json ├── python └── mysql │ ├── README │ ├── main.py │ └── requirements.txt ├── reading-keyboard-input └── README.md ├── reason ├── bytecode │ ├── Hello.re │ ├── README.md │ ├── bytecode.opam │ └── jbuild ├── extended │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── bin │ │ ├── hello.re │ │ └── jbuild │ ├── hello.opam │ └── lib │ │ ├── Other.re │ │ ├── jbuild │ │ └── message.re ├── minimal │ ├── .gitignore │ ├── Main.re │ ├── Makefile │ ├── Message.re │ ├── README.md │ ├── jbuild │ └── minimal.opam └── webserver │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── bin │ ├── jbuild │ └── webserver.re │ ├── jbuild-workspace.docker │ ├── lib │ ├── hello.re │ └── jbuild │ └── webserver.opam ├── rust ├── gadt-exercise │ ├── .envrc │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── devenv.lock │ ├── devenv.nix │ ├── devenv.yaml │ └── src │ │ └── main.rs └── hello-world │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ └── main.rs ├── scala ├── GADT │ └── GADT.scala ├── doobie │ ├── .gitignore │ ├── .metals │ │ ├── buildinfo │ │ │ └── doobie │ │ │ │ ├── compile.properties │ │ │ │ └── test.properties │ │ └── metals.log │ ├── README.md │ ├── build.sbt │ └── src │ │ └── main │ │ └── scala │ │ └── example │ │ └── Main.scala ├── graphql │ ├── .gitignore │ ├── .scalafmt.conf │ ├── README.md │ ├── build.sbt │ ├── project │ │ └── build.properties │ └── src │ │ ├── main │ │ └── scala │ │ │ ├── graphql │ │ │ ├── Arg.scala │ │ │ ├── Json.scala │ │ │ └── Schema.scala │ │ │ ├── hack │ │ │ └── Hack.scala │ │ │ └── util │ │ │ ├── ApplyConverter.scala │ │ │ ├── ApplyConverterInstances.scala │ │ │ ├── Tuple.scala │ │ │ ├── TupleAppendInstances.scala │ │ │ └── TupleOps.scala │ │ └── test │ │ └── scala │ │ └── graphql │ │ └── SchemaSpecification.scala └── sangria │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ └── src │ └── main │ └── scala │ ├── Data.scala │ ├── SchemaDefinition.scala │ └── Server.scala ├── structured-ocaml ├── README.md └── structured-ocaml.el ├── terraform └── s3-read-role │ ├── README.md │ └── main.tf ├── textdocs ├── index.html ├── main.css └── main.js ├── todo ├── Makefile └── src │ └── todo.sh ├── tree-sitter-experiment ├── .gitignore ├── README.md ├── examples │ ├── bunch-of-errors.sh │ └── tiny.sh ├── index.js ├── package-lock.json └── package.json ├── watch-sh └── watch.sh └── zsh └── compsys ├── completions └── _foobar ├── local.zsh └── zshrc /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/README.md -------------------------------------------------------------------------------- /awk/long-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/awk/long-text.txt -------------------------------------------------------------------------------- /awk/obscure.awk: -------------------------------------------------------------------------------- 1 | # 2 | {gsub(/a*/, "_")}1 3 | -------------------------------------------------------------------------------- /awk/patterns.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/awk/patterns.awk -------------------------------------------------------------------------------- /awk/program.awk: -------------------------------------------------------------------------------- 1 | {print $4} 2 | -------------------------------------------------------------------------------- /awk/statements.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/awk/statements.awk -------------------------------------------------------------------------------- /awk/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/awk/text.txt -------------------------------------------------------------------------------- /bash/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/a.txt -------------------------------------------------------------------------------- /bash/alias-boolean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/alias-boolean.sh -------------------------------------------------------------------------------- /bash/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/args.sh -------------------------------------------------------------------------------- /bash/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/b.txt -------------------------------------------------------------------------------- /bash/dangerous-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/dangerous-local.sh -------------------------------------------------------------------------------- /bash/echo-stderr.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | >&2 echo "error" 4 | -------------------------------------------------------------------------------- /bash/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/example.sh -------------------------------------------------------------------------------- /bash/exec-and-trap/busy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/exec-and-trap/busy.sh -------------------------------------------------------------------------------- /bash/exec-and-trap/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/exec-and-trap/main.sh -------------------------------------------------------------------------------- /bash/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/functions.sh -------------------------------------------------------------------------------- /bash/hero-cat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/hero-cat.sh -------------------------------------------------------------------------------- /bash/iterate-over-args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/iterate-over-args.sh -------------------------------------------------------------------------------- /bash/or.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/or.sh -------------------------------------------------------------------------------- /bash/pipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/pipe.sh -------------------------------------------------------------------------------- /bash/safe-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/safe-local.sh -------------------------------------------------------------------------------- /bash/set-e-and-if.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/set-e-and-if.sh -------------------------------------------------------------------------------- /bash/trap-err-and-dont-exit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/trap-err-and-dont-exit.sh -------------------------------------------------------------------------------- /bash/trap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/trap.sh -------------------------------------------------------------------------------- /bash/variable-expansion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/bash/variable-expansion.sh -------------------------------------------------------------------------------- /check-ascii/check_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/check-ascii/check_ascii.py -------------------------------------------------------------------------------- /deployables/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /deployables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/README.md -------------------------------------------------------------------------------- /deployables/TODO.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/TODO.org -------------------------------------------------------------------------------- /deployables/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/README.md -------------------------------------------------------------------------------- /deployables/python/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/db/Dockerfile -------------------------------------------------------------------------------- /deployables/python/db/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/db/init.sql -------------------------------------------------------------------------------- /deployables/python/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/docker-compose.override.yml -------------------------------------------------------------------------------- /deployables/python/docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/docker-compose.prod.yml -------------------------------------------------------------------------------- /deployables/python/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/docker-compose.yml -------------------------------------------------------------------------------- /deployables/python/env/development.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/env/development.env -------------------------------------------------------------------------------- /deployables/python/env/production.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/env/production.env -------------------------------------------------------------------------------- /deployables/python/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/nginx/Dockerfile -------------------------------------------------------------------------------- /deployables/python/nginx/sites-enabled/flask_project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/nginx/sites-enabled/flask_project -------------------------------------------------------------------------------- /deployables/python/nginx/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/nginx/static/css/index.css -------------------------------------------------------------------------------- /deployables/python/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/Dockerfile -------------------------------------------------------------------------------- /deployables/python/web/migrations/2015-02-14-13-49_messages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/migrations/2015-02-14-13-49_messages.sql -------------------------------------------------------------------------------- /deployables/python/web/migrations/2016-02-14-13-49_messages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/migrations/2016-02-14-13-49_messages.sql -------------------------------------------------------------------------------- /deployables/python/web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/requirements.txt -------------------------------------------------------------------------------- /deployables/python/web/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/src/app.py -------------------------------------------------------------------------------- /deployables/python/web/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/src/config.py -------------------------------------------------------------------------------- /deployables/python/web/src/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/src/message.py -------------------------------------------------------------------------------- /deployables/python/web/src/migrate_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/src/migrate_db.py -------------------------------------------------------------------------------- /deployables/python/web/src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/deployables/python/web/src/templates/index.html -------------------------------------------------------------------------------- /docker-images/build-machine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/docker-images/build-machine/Dockerfile -------------------------------------------------------------------------------- /docker-images/build-machine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/docker-images/build-machine/Makefile -------------------------------------------------------------------------------- /docker-images/opam-doc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/docker-images/opam-doc/Dockerfile -------------------------------------------------------------------------------- /docker-images/python-simple/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM python:2.7 2 | 3 | RUN pip install Flask==0.10.1 4 | -------------------------------------------------------------------------------- /dotty/gadt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/dotty/gadt.scala -------------------------------------------------------------------------------- /dotty/other-gadt-example.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/dotty/other-gadt-example.scala -------------------------------------------------------------------------------- /electron-talks-to-docker/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /electron-talks-to-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/README.md -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/feathericons/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/feathericons/activity.svg -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/feathericons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/feathericons/heart.svg -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/feathericons/minus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/feathericons/minus-circle.svg -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/feathericons/pause-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/feathericons/pause-circle.svg -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/feathericons/play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/feathericons/play-circle.svg -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/feathericons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/feathericons/plus.svg -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/feathericons/refresh-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/feathericons/refresh-cw.svg -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/feathericons/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/feathericons/server.svg -------------------------------------------------------------------------------- /electron-talks-to-docker/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/assets/icon.png -------------------------------------------------------------------------------- /electron-talks-to-docker/client/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/components/Container.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/components/ContainerList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/components/ContainerList.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/components/ContainerModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/components/ContainerModal.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/components/Logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/components/Logs.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/components/NewContainerModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/components/NewContainerModal.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/components/Sidebar.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/constants/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/constants/colors.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/constants/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/constants/styles.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/index.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/layout/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/layout/Section.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/pages/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/pages/About.js -------------------------------------------------------------------------------- /electron-talks-to-docker/client/pages/ManageContainers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/client/pages/ManageContainers.js -------------------------------------------------------------------------------- /electron-talks-to-docker/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/electron/main.js -------------------------------------------------------------------------------- /electron-talks-to-docker/electron/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/electron/templates/index.html -------------------------------------------------------------------------------- /electron-talks-to-docker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/package-lock.json -------------------------------------------------------------------------------- /electron-talks-to-docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/package.json -------------------------------------------------------------------------------- /electron-talks-to-docker/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/server/server.js -------------------------------------------------------------------------------- /electron-talks-to-docker/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/electron-talks-to-docker/webpack.config.js -------------------------------------------------------------------------------- /emacs-in-docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/emacs-in-docker/Dockerfile -------------------------------------------------------------------------------- /emacs-in-docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/emacs-in-docker/Makefile -------------------------------------------------------------------------------- /emacs-in-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/emacs-in-docker/README.md -------------------------------------------------------------------------------- /emacs-in-docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/emacs-in-docker/entrypoint.sh -------------------------------------------------------------------------------- /emacs-in-docker/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/emacs-in-docker/init.el -------------------------------------------------------------------------------- /emacs-in-docker/install-emacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/emacs-in-docker/install-emacs.sh -------------------------------------------------------------------------------- /gnuplot/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/gnuplot/data.txt -------------------------------------------------------------------------------- /gnuplot/plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/gnuplot/plot.txt -------------------------------------------------------------------------------- /gnuplot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/gnuplot/run.sh -------------------------------------------------------------------------------- /go/1.9/workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/go/1.9/workspace/README.md -------------------------------------------------------------------------------- /go/1.9/workspace/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/go/1.9/workspace/go.work -------------------------------------------------------------------------------- /go/1.9/workspace/hello/go.mod: -------------------------------------------------------------------------------- 1 | module example.com/hello 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /go/1.9/workspace/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/go/1.9/workspace/hello/hello.go -------------------------------------------------------------------------------- /go/1.9/workspace/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/go/1.9/workspace/shell.nix -------------------------------------------------------------------------------- /go/1.9/workspace/util/go.mod: -------------------------------------------------------------------------------- 1 | module example.com/util 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /go/1.9/workspace/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/go/1.9/workspace/util/util.go -------------------------------------------------------------------------------- /go/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/go/hello/README.md -------------------------------------------------------------------------------- /go/hello/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/go/hello/main.go -------------------------------------------------------------------------------- /hatch-dotty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-dotty/.gitignore -------------------------------------------------------------------------------- /hatch-dotty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-dotty/README.md -------------------------------------------------------------------------------- /hatch-dotty/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-dotty/build.sbt -------------------------------------------------------------------------------- /hatch-dotty/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /hatch-dotty/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-dotty/project/plugins.sbt -------------------------------------------------------------------------------- /hatch-dotty/src/main/scala/echo/Handler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-dotty/src/main/scala/echo/Handler.scala -------------------------------------------------------------------------------- /hatch-dotty/src/main/scala/echo/Lamba.scala: -------------------------------------------------------------------------------- 1 | package echo 2 | 3 | 4 | -------------------------------------------------------------------------------- /hatch-reason/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-reason/.gitignore -------------------------------------------------------------------------------- /hatch-reason/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-reason/README.md -------------------------------------------------------------------------------- /hatch-reason/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-reason/bsconfig.json -------------------------------------------------------------------------------- /hatch-reason/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-reason/package.json -------------------------------------------------------------------------------- /hatch-reason/src/Handler.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/hatch-reason/src/Handler.re -------------------------------------------------------------------------------- /kubernetes/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/kubernetes/storage/README.md -------------------------------------------------------------------------------- /kubernetes/storage/persistent-volumes-minikube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/kubernetes/storage/persistent-volumes-minikube.yml -------------------------------------------------------------------------------- /make/makefile-presentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/make/makefile-presentation/Makefile -------------------------------------------------------------------------------- /make/makefile-presentation/index.lol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/make/makefile-presentation/index.lol -------------------------------------------------------------------------------- /make/makefile-presentation/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/make/makefile-presentation/index.txt -------------------------------------------------------------------------------- /make/makefile-presentation/lolify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/make/makefile-presentation/lolify.py -------------------------------------------------------------------------------- /make/makefile-presentation/setup.mk: -------------------------------------------------------------------------------- 1 | PYTHON ?= python 2 | -------------------------------------------------------------------------------- /make/makefile-watch-wait/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/make/makefile-watch-wait/Makefile -------------------------------------------------------------------------------- /make/makefile-watch-wait/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /make/makefile-watch-wait/source1.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /make/makefile-watch-wait/source2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /make/makefile-watch-wait/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/make/makefile-watch-wait/wait.py -------------------------------------------------------------------------------- /merge-windows/merge-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/merge-windows/merge-windows.txt -------------------------------------------------------------------------------- /models-in-articles/Makefile: -------------------------------------------------------------------------------- 1 | run: 2 | (cd src && python -m SimpleHTTPServer 8080) 3 | -------------------------------------------------------------------------------- /models-in-articles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/models-in-articles/README.md -------------------------------------------------------------------------------- /models-in-articles/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/models-in-articles/src/index.css -------------------------------------------------------------------------------- /models-in-articles/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/models-in-articles/src/index.html -------------------------------------------------------------------------------- /models-in-articles/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/models-in-articles/src/index.js -------------------------------------------------------------------------------- /new/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/.gitignore -------------------------------------------------------------------------------- /new/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/Makefile -------------------------------------------------------------------------------- /new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/README.md -------------------------------------------------------------------------------- /new/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/TODO.md -------------------------------------------------------------------------------- /new/bin/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/bin/jbuild -------------------------------------------------------------------------------- /new/bin/new.re: -------------------------------------------------------------------------------- 1 | Lib.Main.run(); -------------------------------------------------------------------------------- /new/jbuild-workspace.dev: -------------------------------------------------------------------------------- 1 | 2 | (context ((switch 4.04.1) (merlin))) 3 | -------------------------------------------------------------------------------- /new/lib/Args.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/lib/Args.re -------------------------------------------------------------------------------- /new/lib/Config.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/lib/Config.re -------------------------------------------------------------------------------- /new/lib/Errors.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/lib/Errors.re -------------------------------------------------------------------------------- /new/lib/Main.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/lib/Main.re -------------------------------------------------------------------------------- /new/lib/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/lib/jbuild -------------------------------------------------------------------------------- /new/new.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/new.opam -------------------------------------------------------------------------------- /new/test/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/test/jbuild -------------------------------------------------------------------------------- /new/test/test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/test/test.re -------------------------------------------------------------------------------- /new/website/README.md: -------------------------------------------------------------------------------- 1 | # new.sh 2 | 3 | npm run watch 4 | -------------------------------------------------------------------------------- /new/website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/website/package-lock.json -------------------------------------------------------------------------------- /new/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/website/package.json -------------------------------------------------------------------------------- /new/website/src/components/terminal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/website/src/components/terminal.jsx -------------------------------------------------------------------------------- /new/website/src/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/new/website/src/pages/index.jsx -------------------------------------------------------------------------------- /nix/flakes/best-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/best-version/README.md -------------------------------------------------------------------------------- /nix/flakes/best-version/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/best-version/flake.lock -------------------------------------------------------------------------------- /nix/flakes/best-version/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/best-version/flake.nix -------------------------------------------------------------------------------- /nix/flakes/best-version/simple-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/best-version/simple-script.sh -------------------------------------------------------------------------------- /nix/flakes/better-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/better-script/README.md -------------------------------------------------------------------------------- /nix/flakes/better-script/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/better-script/flake.lock -------------------------------------------------------------------------------- /nix/flakes/better-script/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/better-script/flake.nix -------------------------------------------------------------------------------- /nix/flakes/simple-go-env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/simple-go-env/README.md -------------------------------------------------------------------------------- /nix/flakes/simple-go-env/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/simple-go-env/flake.lock -------------------------------------------------------------------------------- /nix/flakes/simple-go-env/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/simple-go-env/flake.nix -------------------------------------------------------------------------------- /nix/flakes/simple-go-env/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/simple-go-env/main.go -------------------------------------------------------------------------------- /nix/flakes/simple-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/simple-script/README.md -------------------------------------------------------------------------------- /nix/flakes/simple-script/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/simple-script/flake.lock -------------------------------------------------------------------------------- /nix/flakes/simple-script/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/flakes/simple-script/flake.nix -------------------------------------------------------------------------------- /nix/nix-build/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-build/simple/README.md -------------------------------------------------------------------------------- /nix/nix-build/simple/simple.c: -------------------------------------------------------------------------------- 1 | void main() { 2 | puts("Simple!"); 3 | } -------------------------------------------------------------------------------- /nix/nix-build/simple/simple.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-build/simple/simple.nix -------------------------------------------------------------------------------- /nix/nix-build/simple/simple_builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-build/simple/simple_builder.sh -------------------------------------------------------------------------------- /nix/nix-build/wiki-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-build/wiki-search/README.md -------------------------------------------------------------------------------- /nix/nix-build/wiki-search/shell-usage-example.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-build/wiki-search/shell-usage-example.nix -------------------------------------------------------------------------------- /nix/nix-build/wiki-search/wiki-search.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-build/wiki-search/wiki-search.nix -------------------------------------------------------------------------------- /nix/nix-build/wiki-search/wiki-search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-build/wiki-search/wiki-search.sh -------------------------------------------------------------------------------- /nix/nix-instantiate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-instantiate/README.md -------------------------------------------------------------------------------- /nix/nix-instantiate/add.nix: -------------------------------------------------------------------------------- 1 | 2 + 2 2 | -------------------------------------------------------------------------------- /nix/nix-instantiate/attribute-set.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-instantiate/attribute-set.nix -------------------------------------------------------------------------------- /nix/nix-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-shell/README.md -------------------------------------------------------------------------------- /nix/nix-shell/empty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/nix/nix-shell/empty.nix -------------------------------------------------------------------------------- /node/dynamic-require/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/node/dynamic-require/README.md -------------------------------------------------------------------------------- /node/dynamic-require/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/node/dynamic-require/a.js -------------------------------------------------------------------------------- /node/dynamic-require/b.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | message: 'hello from b.js' 3 | }; 4 | -------------------------------------------------------------------------------- /node/dynamic-require/c.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | message: 'hello from c.js' 3 | }; 4 | -------------------------------------------------------------------------------- /notes/Makefile: -------------------------------------------------------------------------------- 1 | start: 2 | python -m SimpleHTTPServer 8888 3 | -------------------------------------------------------------------------------- /notes/index.css: -------------------------------------------------------------------------------- 1 | #editor { 2 | width: 80%; 3 | margin: 0 auto; 4 | } 5 | -------------------------------------------------------------------------------- /notes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/notes/index.html -------------------------------------------------------------------------------- /notes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/notes/index.js -------------------------------------------------------------------------------- /notion/notion-db-csv-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/notion/notion-db-csv-processing/README.md -------------------------------------------------------------------------------- /notion/notion-db-csv-processing/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/notion/notion-db-csv-processing/flake.lock -------------------------------------------------------------------------------- /notion/notion-db-csv-processing/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/notion/notion-db-csv-processing/flake.nix -------------------------------------------------------------------------------- /notion/notion-db-csv-processing/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/notion/notion-db-csv-processing/main.go -------------------------------------------------------------------------------- /observability/open-census/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | node_modules 3 | -------------------------------------------------------------------------------- /observability/open-census/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/README.md -------------------------------------------------------------------------------- /observability/open-census/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/docker-compose.yml -------------------------------------------------------------------------------- /observability/open-census/etc/ocagent-service-a.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/etc/ocagent-service-a.yml -------------------------------------------------------------------------------- /observability/open-census/etc/occollector-service-b.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/etc/occollector-service-b.yml -------------------------------------------------------------------------------- /observability/open-census/etc/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/etc/prometheus.yml -------------------------------------------------------------------------------- /observability/open-census/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/package-lock.json -------------------------------------------------------------------------------- /observability/open-census/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/package.json -------------------------------------------------------------------------------- /observability/open-census/sh/send-requests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/sh/send-requests.sh -------------------------------------------------------------------------------- /observability/open-census/src/instrument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/src/instrument.js -------------------------------------------------------------------------------- /observability/open-census/src/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/src/metrics.js -------------------------------------------------------------------------------- /observability/open-census/src/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/src/middleware.js -------------------------------------------------------------------------------- /observability/open-census/src/service-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/src/service-a.js -------------------------------------------------------------------------------- /observability/open-census/src/service-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/observability/open-census/src/service-b.js -------------------------------------------------------------------------------- /ocaml/cli-tool/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | .DS_Store 3 | .merlin 4 | -------------------------------------------------------------------------------- /ocaml/cli-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/ocaml/cli-tool/Makefile -------------------------------------------------------------------------------- /ocaml/cli-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/ocaml/cli-tool/README.md -------------------------------------------------------------------------------- /ocaml/cli-tool/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/ocaml/cli-tool/jbuild -------------------------------------------------------------------------------- /ocaml/cli-tool/main.ml: -------------------------------------------------------------------------------- 1 | 2 | let () = 3 | print_endline "Hello, world!!!" 4 | -------------------------------------------------------------------------------- /ocaml/webserver/.dockerignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /ocaml/webserver/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | .DS_Store 3 | .merlin 4 | -------------------------------------------------------------------------------- /ocaml/webserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/ocaml/webserver/Dockerfile -------------------------------------------------------------------------------- /ocaml/webserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/ocaml/webserver/Makefile -------------------------------------------------------------------------------- /ocaml/webserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/ocaml/webserver/README.md -------------------------------------------------------------------------------- /ocaml/webserver/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/ocaml/webserver/jbuild -------------------------------------------------------------------------------- /ocaml/webserver/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/ocaml/webserver/main.ml -------------------------------------------------------------------------------- /oh-my-zsh-archive/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/aliases.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/keybindings.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/keybindings.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/aws-switch/_aws-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/aws-switch/_aws-switch -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/aws-switch/aws-switch.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/aws-switch/aws-switch.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/config-cheat/config-cheat.plugin.zsh: -------------------------------------------------------------------------------- 1 | export CHEATCOLORS=true 2 | -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/config-dive/config-dive.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/config-dive/config-dive.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/config-fzf/config-fzf.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/config-fzf/config-fzf.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/config-go/config-go.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/config-go/config-go.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/config-opam/config-opam.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/config-opam/config-opam.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/config-php/config-php.plugin.zsh: -------------------------------------------------------------------------------- 1 | # export PATH="/usr/local/opt/php71:$PATH" 2 | -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/danger-danger/danger-danger.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/danger-danger/danger-danger.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/git-fzf/git-fzf.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/git-fzf/git-fzf.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/git-pr/_git-pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/git-pr/_git-pr -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/git-pr/git-pr.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/git-pr/git-pr.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/iterm-theme/_iterm-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/iterm-theme/_iterm-theme -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/iterm-theme/iterm-theme.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/iterm-theme/iterm-theme.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/project/project.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/project/project.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/reload-function/_reload-function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/reload-function/_reload-function -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/reload-function/reload-function.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/reload-function/reload-function.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/plugins/switch-project/switch-project.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/plugins/switch-project/switch-project.plugin.zsh -------------------------------------------------------------------------------- /oh-my-zsh-archive/themes/hartmann.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/oh-my-zsh-archive/themes/hartmann.zsh-theme -------------------------------------------------------------------------------- /openai/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /openai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/openai/README.md -------------------------------------------------------------------------------- /openai/completion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/openai/completion.js -------------------------------------------------------------------------------- /openai/create-embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/openai/create-embeddings.ts -------------------------------------------------------------------------------- /openai/data/links.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/openai/data/links.db -------------------------------------------------------------------------------- /openai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/openai/package-lock.json -------------------------------------------------------------------------------- /openai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/openai/package.json -------------------------------------------------------------------------------- /openai/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/openai/summary.js -------------------------------------------------------------------------------- /openai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/openai/tsconfig.json -------------------------------------------------------------------------------- /python/mysql/README: -------------------------------------------------------------------------------- 1 | pip3 install -r requirements.txt 2 | python3 main.py 3 | -------------------------------------------------------------------------------- /python/mysql/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/python/mysql/main.py -------------------------------------------------------------------------------- /python/mysql/requirements.txt: -------------------------------------------------------------------------------- 1 | PyMySQL===0.7.11 2 | -------------------------------------------------------------------------------- /reading-keyboard-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reading-keyboard-input/README.md -------------------------------------------------------------------------------- /reason/bytecode/Hello.re: -------------------------------------------------------------------------------- 1 | print_endline "Hi there"; 2 | -------------------------------------------------------------------------------- /reason/bytecode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/bytecode/README.md -------------------------------------------------------------------------------- /reason/bytecode/bytecode.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reason/bytecode/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/bytecode/jbuild -------------------------------------------------------------------------------- /reason/extended/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | .DS_Store 3 | .merlin 4 | *.install 5 | -------------------------------------------------------------------------------- /reason/extended/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/extended/Makefile -------------------------------------------------------------------------------- /reason/extended/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/extended/README.md -------------------------------------------------------------------------------- /reason/extended/bin/hello.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/extended/bin/hello.re -------------------------------------------------------------------------------- /reason/extended/bin/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/extended/bin/jbuild -------------------------------------------------------------------------------- /reason/extended/hello.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/extended/hello.opam -------------------------------------------------------------------------------- /reason/extended/lib/Other.re: -------------------------------------------------------------------------------- 1 | let text = "WHAT"; 2 | -------------------------------------------------------------------------------- /reason/extended/lib/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/extended/lib/jbuild -------------------------------------------------------------------------------- /reason/extended/lib/message.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/extended/lib/message.re -------------------------------------------------------------------------------- /reason/minimal/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | .DS_Store 3 | .merlin 4 | -------------------------------------------------------------------------------- /reason/minimal/Main.re: -------------------------------------------------------------------------------- 1 | print_endline Message.text; 2 | -------------------------------------------------------------------------------- /reason/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/minimal/Makefile -------------------------------------------------------------------------------- /reason/minimal/Message.re: -------------------------------------------------------------------------------- 1 | let text = "Hi there"; 2 | -------------------------------------------------------------------------------- /reason/minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/minimal/README.md -------------------------------------------------------------------------------- /reason/minimal/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/minimal/jbuild -------------------------------------------------------------------------------- /reason/minimal/minimal.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reason/webserver/.dockerignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /reason/webserver/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | .DS_Store 3 | .merlin 4 | webserver.install 5 | -------------------------------------------------------------------------------- /reason/webserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/webserver/Dockerfile -------------------------------------------------------------------------------- /reason/webserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/webserver/Makefile -------------------------------------------------------------------------------- /reason/webserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/webserver/README.md -------------------------------------------------------------------------------- /reason/webserver/bin/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/webserver/bin/jbuild -------------------------------------------------------------------------------- /reason/webserver/bin/webserver.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/webserver/bin/webserver.re -------------------------------------------------------------------------------- /reason/webserver/jbuild-workspace.docker: -------------------------------------------------------------------------------- 1 | 2 | (context ((switch 4.04.1))) 3 | -------------------------------------------------------------------------------- /reason/webserver/lib/hello.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/webserver/lib/hello.re -------------------------------------------------------------------------------- /reason/webserver/lib/jbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/webserver/lib/jbuild -------------------------------------------------------------------------------- /reason/webserver/webserver.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/reason/webserver/webserver.opam -------------------------------------------------------------------------------- /rust/gadt-exercise/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/.envrc -------------------------------------------------------------------------------- /rust/gadt-exercise/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/.gitignore -------------------------------------------------------------------------------- /rust/gadt-exercise/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/Cargo.lock -------------------------------------------------------------------------------- /rust/gadt-exercise/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/Cargo.toml -------------------------------------------------------------------------------- /rust/gadt-exercise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/README.md -------------------------------------------------------------------------------- /rust/gadt-exercise/devenv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/devenv.lock -------------------------------------------------------------------------------- /rust/gadt-exercise/devenv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/devenv.nix -------------------------------------------------------------------------------- /rust/gadt-exercise/devenv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/devenv.yaml -------------------------------------------------------------------------------- /rust/gadt-exercise/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/gadt-exercise/src/main.rs -------------------------------------------------------------------------------- /rust/hello-world/Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "hello_world" 3 | version = "0.0.1" 4 | 5 | -------------------------------------------------------------------------------- /rust/hello-world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/hello-world/Cargo.toml -------------------------------------------------------------------------------- /rust/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/rust/hello-world/README.md -------------------------------------------------------------------------------- /rust/hello-world/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /scala/GADT/GADT.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/GADT/GADT.scala -------------------------------------------------------------------------------- /scala/doobie/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/doobie/.gitignore -------------------------------------------------------------------------------- /scala/doobie/.metals/buildinfo/doobie/compile.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/doobie/.metals/buildinfo/doobie/compile.properties -------------------------------------------------------------------------------- /scala/doobie/.metals/buildinfo/doobie/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/doobie/.metals/buildinfo/doobie/test.properties -------------------------------------------------------------------------------- /scala/doobie/.metals/metals.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/doobie/.metals/metals.log -------------------------------------------------------------------------------- /scala/doobie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/doobie/README.md -------------------------------------------------------------------------------- /scala/doobie/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/doobie/build.sbt -------------------------------------------------------------------------------- /scala/doobie/src/main/scala/example/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/doobie/src/main/scala/example/Main.scala -------------------------------------------------------------------------------- /scala/graphql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/.gitignore -------------------------------------------------------------------------------- /scala/graphql/.scalafmt.conf: -------------------------------------------------------------------------------- 1 | maxColumn = 80 2 | -------------------------------------------------------------------------------- /scala/graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/README.md -------------------------------------------------------------------------------- /scala/graphql/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/build.sbt -------------------------------------------------------------------------------- /scala/graphql/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.1.6 2 | -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/graphql/Arg.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/graphql/Arg.scala -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/graphql/Json.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/graphql/Json.scala -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/graphql/Schema.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/graphql/Schema.scala -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/hack/Hack.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/hack/Hack.scala -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/util/ApplyConverter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/util/ApplyConverter.scala -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/util/ApplyConverterInstances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/util/ApplyConverterInstances.scala -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/util/Tuple.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/util/Tuple.scala -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/util/TupleAppendInstances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/util/TupleAppendInstances.scala -------------------------------------------------------------------------------- /scala/graphql/src/main/scala/util/TupleOps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/main/scala/util/TupleOps.scala -------------------------------------------------------------------------------- /scala/graphql/src/test/scala/graphql/SchemaSpecification.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/graphql/src/test/scala/graphql/SchemaSpecification.scala -------------------------------------------------------------------------------- /scala/sangria/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/sangria/.gitignore -------------------------------------------------------------------------------- /scala/sangria/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/sangria/README.md -------------------------------------------------------------------------------- /scala/sangria/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/sangria/build.sbt -------------------------------------------------------------------------------- /scala/sangria/src/main/scala/Data.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/sangria/src/main/scala/Data.scala -------------------------------------------------------------------------------- /scala/sangria/src/main/scala/SchemaDefinition.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/sangria/src/main/scala/SchemaDefinition.scala -------------------------------------------------------------------------------- /scala/sangria/src/main/scala/Server.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/scala/sangria/src/main/scala/Server.scala -------------------------------------------------------------------------------- /structured-ocaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/structured-ocaml/README.md -------------------------------------------------------------------------------- /structured-ocaml/structured-ocaml.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/structured-ocaml/structured-ocaml.el -------------------------------------------------------------------------------- /terraform/s3-read-role/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/terraform/s3-read-role/README.md -------------------------------------------------------------------------------- /terraform/s3-read-role/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/terraform/s3-read-role/main.tf -------------------------------------------------------------------------------- /textdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/textdocs/index.html -------------------------------------------------------------------------------- /textdocs/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textdocs/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/todo/Makefile -------------------------------------------------------------------------------- /todo/src/todo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/todo/src/todo.sh -------------------------------------------------------------------------------- /tree-sitter-experiment/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /tree-sitter-experiment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/tree-sitter-experiment/README.md -------------------------------------------------------------------------------- /tree-sitter-experiment/examples/bunch-of-errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/tree-sitter-experiment/examples/bunch-of-errors.sh -------------------------------------------------------------------------------- /tree-sitter-experiment/examples/tiny.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/tree-sitter-experiment/examples/tiny.sh -------------------------------------------------------------------------------- /tree-sitter-experiment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/tree-sitter-experiment/index.js -------------------------------------------------------------------------------- /tree-sitter-experiment/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/tree-sitter-experiment/package-lock.json -------------------------------------------------------------------------------- /tree-sitter-experiment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/tree-sitter-experiment/package.json -------------------------------------------------------------------------------- /watch-sh/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/watch-sh/watch.sh -------------------------------------------------------------------------------- /zsh/compsys/completions/_foobar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/zsh/compsys/completions/_foobar -------------------------------------------------------------------------------- /zsh/compsys/local.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/zsh/compsys/local.zsh -------------------------------------------------------------------------------- /zsh/compsys/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mads-hartmann/random/HEAD/zsh/compsys/zshrc --------------------------------------------------------------------------------