├── .gitignore ├── Haskell ├── AlternativeTest.hs ├── AzureCLICodegen.hs ├── Conduits.hs ├── Deployment.hs ├── ForceSSL.hs ├── Java.hs ├── Pyfi.hs ├── PythonImports.hs ├── Retry.hs ├── SBV.hs ├── Strategies.hs ├── Stratos.hs ├── THProlog │ ├── Main.hs │ ├── README.md │ ├── THProlog.hs │ └── insurance.pl ├── Terraform.hs ├── TestReflex.hs ├── UnagiBloom.hs └── WebBlog.hs ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /Haskell/AlternativeTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/AlternativeTest.hs -------------------------------------------------------------------------------- /Haskell/AzureCLICodegen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/AzureCLICodegen.hs -------------------------------------------------------------------------------- /Haskell/Conduits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/Conduits.hs -------------------------------------------------------------------------------- /Haskell/Deployment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/Deployment.hs -------------------------------------------------------------------------------- /Haskell/ForceSSL.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/ForceSSL.hs -------------------------------------------------------------------------------- /Haskell/Java.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/Java.hs -------------------------------------------------------------------------------- /Haskell/Pyfi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/Pyfi.hs -------------------------------------------------------------------------------- /Haskell/PythonImports.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/PythonImports.hs -------------------------------------------------------------------------------- /Haskell/Retry.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/Retry.hs -------------------------------------------------------------------------------- /Haskell/SBV.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/SBV.hs -------------------------------------------------------------------------------- /Haskell/Strategies.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/Strategies.hs -------------------------------------------------------------------------------- /Haskell/Stratos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/Stratos.hs -------------------------------------------------------------------------------- /Haskell/THProlog/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/THProlog/Main.hs -------------------------------------------------------------------------------- /Haskell/THProlog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/THProlog/README.md -------------------------------------------------------------------------------- /Haskell/THProlog/THProlog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/THProlog/THProlog.hs -------------------------------------------------------------------------------- /Haskell/THProlog/insurance.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/THProlog/insurance.pl -------------------------------------------------------------------------------- /Haskell/Terraform.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/Terraform.hs -------------------------------------------------------------------------------- /Haskell/TestReflex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/TestReflex.hs -------------------------------------------------------------------------------- /Haskell/UnagiBloom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/UnagiBloom.hs -------------------------------------------------------------------------------- /Haskell/WebBlog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/Haskell/WebBlog.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atidot/snippets/HEAD/README.md --------------------------------------------------------------------------------