make 2 example apps using mtl and effects that asks password:
- State - number of wrong passwords
- Reader - right password from file
- MonadLog - just log, enterleaving monad (should I implement liftLog? https://www.youtube.com/watch?v=8t8fjkISjus, https://hackage.haskell.org/package/transformers-base-0.4.4/docs/Control-Monad-Base.html)
- MonadThrow - throw on wrong
- MonadIO or MonadMock - tests
MonadLog should be done 2 ways:
- ReaderT - log to file (IO)
- StateT - log to string
https://stackoverflow.com/questions/43375880/how-to-build-a-docker-container-with-nix http://lethalman.blogspot.com/2016/04/cheap-docker-images-with-nix_15.html https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/docker/examples.nix
make script that makes docker images from nix file, uses plain nix-build
if runs in nix host os
and nix-build
inside docker with /var/run/docker.sock:/var/run/docker.sock
if runs not in nix host os
https://zef.me/kubernetes-make-it-so-240b5d2dd36d
https://offlinehacker.github.io/slides.kubernetes_on_nixos
https://blog.codeship.com/one-command-to-kubernetes-with-docker-compose/
https://github.com/matejc/upaas/blob/master/compose.nix
https://github.com/xtruder/nix-sandbox/blob/master/default.nix
http://lethalman.blogspot.com/2015/02/nixos-consul-nginx-and-containers.html
- how to create container with named host instead of number host
- spawn using nix-build, e.g. without import to /etc/configuration.nix (https://nixos.org/nixos/manual/index.html#sec-building-parts)
- how to private network between containers, container group? connect containers?
https://github.com/NixOS/nixpart/blob/master/default.nix#L19
https://github.com/NixOS/nixpkgs/blob/005628a94b314e72100f0400fb7d6bb4a17c8b2b/pkgs/tools/misc/bepasty/default.nix#L28 (python proj, selenum-python in checkInputs)
https://github.com/NixOS/nixpkgs/blob/56904d7c423f2b13b37fbd29f39bbb4b52bc7824/pkgs/applications/version-management/redmine/bootstrap.nix#L8 (redmine, dont use selenium for testing, still useful as rails project)
NixOS/nixpkgs#15316 (selenium is not working, maybe blocking issue)
https://hydra.nixos.org/build/72063575/download/2/manual/#ex-infrastructure-model (what i want)
read later
https://github.com/freifunkMUC/infra
https://github.com/openlab-aux/vuizvui
https://guides.wp-bullet.com/enable-svg-gzip-compression-nginx/
service:
- thumbor (python) http://blog.paulrugelhiatt.com/ec2/thumbor/2014/10/26/image-processing-with-thumbor-behind-nginx-on-ec2.html or
- nginx image_filter - https://www.endpoint.com/blog/2016/05/25/caching-resizing-reverse-proxying-image-server-nginx
js - there is no js library to enhance images, only https://github.com/imgix/imgix.js/, that is tailored for imgix service
systemd job to link files automatically or homa-manager systemd job to make gpg and ssh backups to dotfiles automatically
why all you can npm2nix generate generators (python files?), why not to store this files in nixfromnpm itself? black box
what about
shell.nix
{ pkgs ? <nixpgs> }:
import ./nix/nixfromnpm.nix