├── .github └── workflows │ └── update-tag.yaml ├── .gitignore ├── LICENSE ├── README.md ├── ansible ├── citus │ ├── README.md │ └── install_citus.yml ├── docker-install-centos │ ├── README.md │ ├── inventory │ ├── main.yml │ └── roles │ │ ├── docker_installer │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ └── make_partition │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml ├── docker-install-debian │ ├── README.md │ ├── inventory.ini │ ├── roles │ │ └── docker-install │ │ │ ├── files │ │ │ ├── docker-add-key.sh │ │ │ └── docker-add-repo.sh │ │ │ └── tasks │ │ │ └── main.yaml │ └── setup.yml ├── docker_lemp_stack │ ├── README.md │ ├── copyfiles │ │ ├── .docker │ │ │ ├── mysql │ │ │ │ └── my.cnf │ │ │ └── nginx │ │ │ │ └── conf.d │ │ │ │ └── php.conf │ │ ├── Dockerfile │ │ └── src │ │ │ └── index.php │ ├── inventory │ ├── main.yml │ ├── roles │ │ ├── deploystack │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ ├── main.yml │ │ │ │ └── mischatest │ │ │ │ │ └── hello │ │ │ ├── tests │ │ │ │ ├── inventory │ │ │ │ └── test.yml │ │ │ └── vars │ │ │ │ └── main.yml │ │ └── docker_installer │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ └── main.yml │ │ │ ├── meta │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ └── main.yml │ │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ │ └── vars │ │ │ └── main.yml │ └── stop.sh ├── pocketbase-install │ ├── inventory.ini │ ├── roles │ │ └── pocketbase-install │ │ │ └── tasks │ │ │ └── main.yaml │ └── setup.yml └── trivy │ ├── README.md │ └── install_trivy.yml ├── apps ├── mealie-no-db │ ├── mealie-data-persistentvolumeclaim.yaml │ ├── mealie-deployment.yaml │ └── mealie-service.yaml └── mealie │ ├── database.yaml │ ├── docker-compose.yaml │ ├── mealie-data-persistentvolumeclaim.yaml │ ├── mealie-deployment.yaml │ └── mealie-service.yaml ├── azure-pipelines ├── docker-to-azure-vm │ ├── Dockerfile │ ├── README svelte.md │ ├── README.md │ ├── azure-pipelines.yml │ ├── index.html │ ├── nginx │ │ └── default.conf │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── production.yml │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.svelte │ │ ├── app.css │ │ ├── assets │ │ │ └── svelte.svg │ │ ├── index.css │ │ ├── lib │ │ │ └── Counter.svelte │ │ ├── main.ts │ │ └── vite-env.d.ts │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── keyvault │ ├── azure-pipelines.yml │ ├── keyvault.bicep │ └── keyvault.bicepparam └── static-quote-app │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── app.py │ ├── azure-pipelines.yaml │ ├── requirements.txt │ ├── static │ └── style.css │ └── templates │ └── home.html ├── azure ├── mkdoc │ ├── azure-static-web-apps-blue-flower-050c1d703.yml │ ├── docs │ │ ├── climbing.md │ │ ├── diet │ │ │ ├── calories.md │ │ │ ├── vegan.md │ │ │ └── vegetables.md │ │ ├── index.md │ │ └── running.md │ └── mkdocs.yml └── utils │ └── avm ├── bash ├── ? ├── backup ├── backup-weekly ├── blog ├── duck ├── hello ├── parameter_parsing ├── path ├── pomocalc ├── postgres-db-list ├── pub ├── push ├── scandisks ├── stop.sh ├── sunrise ├── urlencode └── welcome ├── bicep ├── aks-azurecni │ ├── aks-dev.bicepparam │ ├── aks-prod.bicepparam │ ├── aks.bicep │ └── test.bicep ├── avm │ └── aks │ │ └── main.bicep ├── csi-secret-store │ ├── README.md │ ├── aks.bicepparam │ ├── env-secret.yaml │ ├── main.bicep │ ├── pod-env.yaml │ ├── pod.yaml │ ├── secretproviderclass.yaml │ └── setup ├── keyvault-parameters │ ├── keyvault.bicepparam │ ├── main.bicep │ ├── main.parameters.bicepparam │ └── main.parameters.json ├── keyvault │ └── main.bicep ├── microsoft-learn-modules │ ├── advanced-bicep │ │ └── deploymentscript │ │ │ └── main.bicep │ ├── bicep-fundamentals │ │ ├── README.md │ │ ├── loops-conditions │ │ │ ├── main.bicep │ │ │ └── modules │ │ │ │ └── database.bicep │ │ ├── modules-exercise │ │ │ ├── main.bicep │ │ │ └── modules │ │ │ │ ├── app.bicep │ │ │ │ └── cdn.bicep │ │ ├── parameters │ │ │ ├── main.bicep │ │ │ └── main.parameters.dev.json │ │ └── toystore │ │ │ ├── main.bicep │ │ │ └── modules │ │ │ └── appService.bicep │ └── intermediate-bicep │ │ ├── child-resources │ │ └── main.bicep │ │ └── refactor-collaboration │ │ └── main.bicep ├── simple-aks-copilot │ └── main.bicep ├── simple-aks-parameters │ ├── aks.bicepparam │ └── main.bicep └── test-environment │ ├── README.md │ ├── aks.bicepparam │ ├── main.bicep │ └── setup ├── csharp ├── .gitignore ├── .vscode │ ├── launch.json │ └── settings.json ├── fundamentals │ ├── CsharpProjects │ │ ├── CsharpProjects.csproj │ │ ├── Program.cs │ │ └── TestProject │ │ │ ├── Program.cs │ │ │ └── TestProject.csproj │ ├── coinflip │ │ ├── Program.cs │ │ └── coinflip.csproj │ ├── fizzbuzz │ │ ├── Program.cs │ │ └── fizzbuzz.csproj │ └── switch │ │ ├── Program.cs │ │ └── switch.csproj ├── hello-world.sln ├── hello-world │ ├── Program.cs │ └── hello-world.csproj └── webpage │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── webpage │ │ ├── webpage.deps.json │ │ ├── webpage.dll │ │ ├── webpage.pdb │ │ └── webpage.runtimeconfig.json │ ├── obj │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── apphost │ │ │ ├── ref │ │ │ └── webpage.dll │ │ │ ├── refint │ │ │ └── webpage.dll │ │ │ ├── staticwebassets.build.json │ │ │ ├── staticwebassets │ │ │ ├── msbuild.build.webpage.props │ │ │ ├── msbuild.buildMultiTargeting.webpage.props │ │ │ └── msbuild.buildTransitive.webpage.props │ │ │ ├── webpage.AssemblyInfo.cs │ │ │ ├── webpage.AssemblyInfoInputs.cache │ │ │ ├── webpage.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── webpage.GlobalUsings.g.cs │ │ │ ├── webpage.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── webpage.assets.cache │ │ │ ├── webpage.csproj.CoreCompileInputs.cache │ │ │ ├── webpage.csproj.FileListAbsolute.txt │ │ │ ├── webpage.dll │ │ │ ├── webpage.genruntimeconfig.cache │ │ │ ├── webpage.pdb │ │ │ └── webpage.sourcelink.json │ ├── project.assets.json │ ├── project.nuget.cache │ ├── webpage.csproj.nuget.dgspec.json │ ├── webpage.csproj.nuget.g.props │ └── webpage.csproj.nuget.g.targets │ ├── webpage.csproj │ └── webpage.sln ├── devcontainers ├── debian │ └── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json ├── nix-demo │ ├── .devcontainer.json │ └── hello.md └── nvim-brew │ └── setup ├── docker-compose └── lemp-stack │ ├── .docker │ ├── mysql │ │ └── my.cnf │ ├── nginx │ │ └── conf.d │ │ │ └── php.conf │ └── php │ │ └── Dockerfile │ ├── .env │ ├── README.md │ ├── docker-compose.yml │ └── src │ └── index.php ├── github-actions └── update-tag.yaml ├── kubernetes ├── akv2k8s │ └── secret.yaml ├── auth │ ├── authentik │ │ └── values.yaml │ ├── keycloak-path │ │ ├── values-works.yaml │ │ └── values.yaml │ ├── keycloak │ │ ├── README.md │ │ ├── default.yaml │ │ ├── env │ │ ├── nextjs-keycloak │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── next.config.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ │ ├── next.svg │ │ │ │ └── vercel.svg │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── api │ │ │ │ │ │ └── auth │ │ │ │ │ │ │ └── [...nextauth] │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── globals.css │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── components │ │ │ │ │ ├── Login.tsx │ │ │ │ │ └── Logout.tsx │ │ │ ├── tailwind.config.ts │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ └── node-env.d.ts │ │ └── values.yaml │ └── ory │ │ ├── app │ │ ├── deployment.yaml │ │ └── service.yaml │ │ ├── hydra │ │ ├── README.md │ │ ├── cmd │ │ └── values.yaml │ │ ├── kratos │ │ ├── README.md │ │ ├── database.yaml │ │ ├── kratos.md │ │ ├── testingress.yaml │ │ ├── values-example.yaml │ │ └── values.yaml │ │ ├── kustomization.yaml │ │ ├── mailslurper │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ └── service.yaml │ │ ├── self-service-sofi │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ │ └── self-service │ │ └── values.yaml ├── azure-blob-storage │ ├── README.md │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── secret.yaml │ └── storage.yaml ├── azure-csi-secrets-store │ └── service-principal │ │ ├── README.md │ │ ├── pod.yaml │ │ └── secretclass.yaml ├── cks │ ├── README.md │ ├── kube-bench │ │ └── job.yaml │ ├── network-policies │ │ ├── course-content │ │ │ ├── backend.yaml │ │ │ ├── cassandra-default-deny.yaml │ │ │ ├── cassandra.yaml │ │ │ ├── default-deny.yaml │ │ │ ├── egress.yaml │ │ │ └── frontend.yaml │ │ └── killercoda │ │ │ ├── deny-out.yaml │ │ │ ├── ip-block-except.yaml │ │ │ ├── same-namespace.yaml │ │ │ ├── space1.yaml │ │ │ └── space2.yaml │ └── stream.md ├── deployments │ ├── httpd-backend.yaml │ ├── httpd-frontend.yaml │ ├── loadbalancer.yaml │ └── test.yaml ├── edb │ ├── quickstart │ │ ├── db.yaml │ │ ├── example.yaml │ │ └── mealie.yaml │ ├── test │ │ ├── install │ │ ├── taints1.yaml │ │ ├── test1.yaml │ │ └── test2.yaml │ └── zk │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── zk.yaml ├── ergo │ └── docker-compose.yml ├── example-app │ ├── homarr.yaml │ └── loadbalancer.yaml ├── gitops │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── azure-pipelines.yaml │ ├── templates │ │ ├── deployment.k8s.yaml │ │ └── service.yaml │ └── values.yaml ├── grafana │ └── dashboards │ │ └── simple-namespace-overview.json ├── k8smonitoring-secrets │ ├── Chart.yaml │ ├── example-values.yaml │ └── templates │ │ └── secrets │ │ └── secrets.yaml ├── keda │ ├── README.md │ ├── cluster.yaml │ ├── deployment.yaml │ ├── keda.yaml │ └── kustomization.yaml ├── mealie │ └── service.yaml ├── networkpolicies │ ├── commafeed.yaml │ ├── deny-all-ingress.yaml │ ├── deny-all.yaml │ ├── linkding.yaml │ └── ns.yaml ├── nginx-ingress │ ├── demo │ ├── ingress.yaml │ └── test.yaml ├── pdb │ ├── backend.yaml │ └── frontend.yaml └── prometheus │ └── add-cluster-label.yaml ├── lua ├── autorun.lua ├── hello.py ├── new └── second_brain_file.lua ├── python ├── Utilities │ ├── README.md │ ├── color.py │ ├── combine_markdown.py │ ├── download_lydbok.py │ ├── pandas_lesson.py │ └── yaml_convert.py ├── automatetheboringstuff │ ├── Chapter9 │ │ ├── grammar.txt │ │ ├── mad libs final.py │ │ ├── madlibs old.py │ │ ├── new_grammar.txt │ │ └── regex.py │ ├── README.md │ ├── chapter10 │ │ ├── copiedfiles │ │ │ ├── .DS_Store │ │ │ ├── dagger.txt │ │ │ ├── flamberge.txt │ │ │ ├── halberd.txt │ │ │ ├── poleaxe.txt │ │ │ ├── spirit.txt │ │ │ ├── stormshield.txt │ │ │ ├── twohandsword.txt │ │ │ └── zakarum.txt │ │ ├── copy_files.py │ │ ├── gaps.py │ │ ├── large_files.py │ │ ├── tempfiles │ │ │ ├── spam001.txt │ │ │ ├── spam002.txt │ │ │ ├── spam004.txt │ │ │ ├── spam005.txt │ │ │ └── spam006.txt │ │ ├── test.py │ │ └── textfiles │ │ │ ├── spam002.txt │ │ │ ├── spam003.txt │ │ │ ├── spam004.txt │ │ │ └── spam005.txt │ └── test_tree │ │ ├── axe │ │ ├── halberd.txt │ │ ├── hatchet.jpg │ │ ├── poleaxe.txt │ │ ├── splitaxe.jpg │ │ └── test.txt.jpg │ │ ├── hammmer.axe.txt.pdf │ │ ├── shield │ │ ├── spirit.txt │ │ ├── stormshield.txt │ │ ├── vikingshield.jpg │ │ └── zakarum.txt │ │ └── sword │ │ ├── dagger.txt │ │ ├── flamberge.txt │ │ └── twohandsword.txt ├── brainfile.py ├── convert-colors │ ├── convert.py │ ├── new_colors.yaml │ └── old_colors.yaml ├── download-youtube-audio │ └── test.py ├── emails │ └── extract.py ├── list_comprehensions.py ├── mqtt │ ├── json-log.py │ └── main.py ├── obsidian │ ├── kindle.template │ ├── quotes.py │ └── update_dates.py ├── oura │ └── main.py ├── tweetshot │ └── shot.py ├── typer │ ├── .devcontainer │ │ └── devcontainer.json │ ├── .github │ │ └── dependabot.yml │ ├── __pycache__ │ │ └── hello.cpython-312.pyc │ ├── hello-completion │ │ ├── __pycache__ │ │ │ └── main.cpython-312.pyc │ │ └── main.py │ └── hello │ │ ├── __pycache__ │ │ └── main.cpython-312.pyc │ │ └── main.py ├── youtube-transcript │ ├── .devcontainer.json │ └── transcribe.py └── yt-trans-claude │ └── trans.py ├── svelte ├── .devcontainer │ ├── Dockerfile │ ├── devcontainer.json │ └── docker-compose.yml ├── .github │ └── dependabot.yml └── svelte-job-board │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.png │ ├── global.css │ └── index.html │ ├── rollup.config.js │ ├── scripts │ └── setupTypeScript.js │ └── src │ ├── App.svelte │ ├── JobBoard.svelte │ ├── JobCard.svelte │ ├── JobDetail.svelte │ ├── JobList.svelte │ ├── TagFilter.svelte │ └── main.js └── terraform ├── aks-cluster ├── .terraform.lock.hcl ├── main.tf ├── outputs.tf └── variables.tf └── azure-simple-linux-vm ├── README.md ├── main.tf ├── outputs.tf ├── providers.tf └── variables.tf /.github/workflows/update-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/.github/workflows/update-tag.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/README.md -------------------------------------------------------------------------------- /ansible/citus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/citus/README.md -------------------------------------------------------------------------------- /ansible/citus/install_citus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/citus/install_citus.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/README.md -------------------------------------------------------------------------------- /ansible/docker-install-centos/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/inventory -------------------------------------------------------------------------------- /ansible/docker-install-centos/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/main.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/docker_installer/.travis.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/docker_installer/README.md -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for docker_installer -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for docker_installer -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/docker_installer/meta/main.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/docker_installer/tasks/main.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/docker_installer/tests/test.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/docker_installer/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for docker_installer -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/make_partition/.travis.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/make_partition/README.md -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for make_partition -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for make_partition -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/make_partition/meta/main.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/make_partition/tasks/main.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-centos/roles/make_partition/tests/test.yml -------------------------------------------------------------------------------- /ansible/docker-install-centos/roles/make_partition/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for make_partition -------------------------------------------------------------------------------- /ansible/docker-install-debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-debian/README.md -------------------------------------------------------------------------------- /ansible/docker-install-debian/inventory.ini: -------------------------------------------------------------------------------- 1 | azureuser@20.234.103.23 2 | -------------------------------------------------------------------------------- /ansible/docker-install-debian/roles/docker-install/files/docker-add-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-debian/roles/docker-install/files/docker-add-key.sh -------------------------------------------------------------------------------- /ansible/docker-install-debian/roles/docker-install/files/docker-add-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-debian/roles/docker-install/files/docker-add-repo.sh -------------------------------------------------------------------------------- /ansible/docker-install-debian/roles/docker-install/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-debian/roles/docker-install/tasks/main.yaml -------------------------------------------------------------------------------- /ansible/docker-install-debian/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker-install-debian/setup.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/README.md -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/copyfiles/.docker/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/copyfiles/.docker/mysql/my.cnf -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/copyfiles/.docker/nginx/conf.d/php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/copyfiles/.docker/nginx/conf.d/php.conf -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/copyfiles/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:8.0-fpm 2 | 3 | RUN docker-php-ext-install pdo_mysql 4 | -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/copyfiles/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/copyfiles/src/index.php -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/inventory: -------------------------------------------------------------------------------- 1 | ds@ds ansible_ssh_private_key_file=~/.ssh/id_ed25519 2 | -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/main.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/deploystack/.travis.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/deploystack/README.md -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for deploystack -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for deploystack -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/deploystack/meta/main.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/deploystack/tasks/main.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/tasks/mischatest/hello: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/deploystack/tests/test.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/deploystack/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for deploystack -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/docker_installer/.travis.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/docker_installer/README.md -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for docker_installer -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for docker_installer -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/docker_installer/meta/main.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/docker_installer/tasks/main.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/roles/docker_installer/tests/test.yml -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/roles/docker_installer/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for docker_installer -------------------------------------------------------------------------------- /ansible/docker_lemp_stack/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/docker_lemp_stack/stop.sh -------------------------------------------------------------------------------- /ansible/pocketbase-install/inventory.ini: -------------------------------------------------------------------------------- 1 | azureuser@20.234.103.23 2 | -------------------------------------------------------------------------------- /ansible/pocketbase-install/roles/pocketbase-install/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/pocketbase-install/roles/pocketbase-install/tasks/main.yaml -------------------------------------------------------------------------------- /ansible/pocketbase-install/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/pocketbase-install/setup.yml -------------------------------------------------------------------------------- /ansible/trivy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/trivy/README.md -------------------------------------------------------------------------------- /ansible/trivy/install_trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/ansible/trivy/install_trivy.yml -------------------------------------------------------------------------------- /apps/mealie-no-db/mealie-data-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/apps/mealie-no-db/mealie-data-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /apps/mealie-no-db/mealie-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/apps/mealie-no-db/mealie-deployment.yaml -------------------------------------------------------------------------------- /apps/mealie-no-db/mealie-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/apps/mealie-no-db/mealie-service.yaml -------------------------------------------------------------------------------- /apps/mealie/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/apps/mealie/database.yaml -------------------------------------------------------------------------------- /apps/mealie/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/apps/mealie/docker-compose.yaml -------------------------------------------------------------------------------- /apps/mealie/mealie-data-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/apps/mealie/mealie-data-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /apps/mealie/mealie-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/apps/mealie/mealie-deployment.yaml -------------------------------------------------------------------------------- /apps/mealie/mealie-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/apps/mealie/mealie-service.yaml -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/Dockerfile -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/README svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/README svelte.md -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/README.md -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/azure-pipelines.yml -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/index.html -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/nginx/default.conf -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/package-lock.json -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/package.json -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/postcss.config.cjs -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/production.yml -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/public/vite.svg -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/src/App.svelte -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/src/app.css -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/src/assets/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/src/assets/svelte.svg -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/src/index.css -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/src/lib/Counter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/src/lib/Counter.svelte -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/src/main.ts -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/src/vite-env.d.ts -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/svelte.config.js -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/tailwind.config.cjs -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/tsconfig.json -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/tsconfig.node.json -------------------------------------------------------------------------------- /azure-pipelines/docker-to-azure-vm/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/docker-to-azure-vm/vite.config.ts -------------------------------------------------------------------------------- /azure-pipelines/keyvault/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/keyvault/azure-pipelines.yml -------------------------------------------------------------------------------- /azure-pipelines/keyvault/keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/keyvault/keyvault.bicep -------------------------------------------------------------------------------- /azure-pipelines/keyvault/keyvault.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/keyvault/keyvault.bicepparam -------------------------------------------------------------------------------- /azure-pipelines/static-quote-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/static-quote-app/Dockerfile -------------------------------------------------------------------------------- /azure-pipelines/static-quote-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/static-quote-app/LICENSE -------------------------------------------------------------------------------- /azure-pipelines/static-quote-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/static-quote-app/README.md -------------------------------------------------------------------------------- /azure-pipelines/static-quote-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/static-quote-app/app.py -------------------------------------------------------------------------------- /azure-pipelines/static-quote-app/azure-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/static-quote-app/azure-pipelines.yaml -------------------------------------------------------------------------------- /azure-pipelines/static-quote-app/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /azure-pipelines/static-quote-app/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/static-quote-app/static/style.css -------------------------------------------------------------------------------- /azure-pipelines/static-quote-app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure-pipelines/static-quote-app/templates/home.html -------------------------------------------------------------------------------- /azure/mkdoc/azure-static-web-apps-blue-flower-050c1d703.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/mkdoc/azure-static-web-apps-blue-flower-050c1d703.yml -------------------------------------------------------------------------------- /azure/mkdoc/docs/climbing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/mkdoc/docs/climbing.md -------------------------------------------------------------------------------- /azure/mkdoc/docs/diet/calories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/mkdoc/docs/diet/calories.md -------------------------------------------------------------------------------- /azure/mkdoc/docs/diet/vegan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/mkdoc/docs/diet/vegan.md -------------------------------------------------------------------------------- /azure/mkdoc/docs/diet/vegetables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/mkdoc/docs/diet/vegetables.md -------------------------------------------------------------------------------- /azure/mkdoc/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/mkdoc/docs/index.md -------------------------------------------------------------------------------- /azure/mkdoc/docs/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/mkdoc/docs/running.md -------------------------------------------------------------------------------- /azure/mkdoc/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/mkdoc/mkdocs.yml -------------------------------------------------------------------------------- /azure/utils/avm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/azure/utils/avm -------------------------------------------------------------------------------- /bash/?: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/? -------------------------------------------------------------------------------- /bash/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/backup -------------------------------------------------------------------------------- /bash/backup-weekly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/backup-weekly -------------------------------------------------------------------------------- /bash/blog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/blog -------------------------------------------------------------------------------- /bash/duck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/duck -------------------------------------------------------------------------------- /bash/hello: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello from Bash" 3 | -------------------------------------------------------------------------------- /bash/parameter_parsing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/parameter_parsing -------------------------------------------------------------------------------- /bash/path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/path -------------------------------------------------------------------------------- /bash/pomocalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/pomocalc -------------------------------------------------------------------------------- /bash/postgres-db-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/postgres-db-list -------------------------------------------------------------------------------- /bash/pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/pub -------------------------------------------------------------------------------- /bash/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/push -------------------------------------------------------------------------------- /bash/scandisks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/scandisks -------------------------------------------------------------------------------- /bash/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/stop.sh -------------------------------------------------------------------------------- /bash/sunrise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/sunrise -------------------------------------------------------------------------------- /bash/urlencode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/urlencode -------------------------------------------------------------------------------- /bash/welcome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bash/welcome -------------------------------------------------------------------------------- /bicep/aks-azurecni/aks-dev.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/aks-azurecni/aks-dev.bicepparam -------------------------------------------------------------------------------- /bicep/aks-azurecni/aks-prod.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/aks-azurecni/aks-prod.bicepparam -------------------------------------------------------------------------------- /bicep/aks-azurecni/aks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/aks-azurecni/aks.bicep -------------------------------------------------------------------------------- /bicep/aks-azurecni/test.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/aks-azurecni/test.bicep -------------------------------------------------------------------------------- /bicep/avm/aks/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/avm/aks/main.bicep -------------------------------------------------------------------------------- /bicep/csi-secret-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/csi-secret-store/README.md -------------------------------------------------------------------------------- /bicep/csi-secret-store/aks.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/csi-secret-store/aks.bicepparam -------------------------------------------------------------------------------- /bicep/csi-secret-store/env-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/csi-secret-store/env-secret.yaml -------------------------------------------------------------------------------- /bicep/csi-secret-store/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/csi-secret-store/main.bicep -------------------------------------------------------------------------------- /bicep/csi-secret-store/pod-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/csi-secret-store/pod-env.yaml -------------------------------------------------------------------------------- /bicep/csi-secret-store/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/csi-secret-store/pod.yaml -------------------------------------------------------------------------------- /bicep/csi-secret-store/secretproviderclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/csi-secret-store/secretproviderclass.yaml -------------------------------------------------------------------------------- /bicep/csi-secret-store/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/csi-secret-store/setup -------------------------------------------------------------------------------- /bicep/keyvault-parameters/keyvault.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/keyvault-parameters/keyvault.bicepparam -------------------------------------------------------------------------------- /bicep/keyvault-parameters/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/keyvault-parameters/main.bicep -------------------------------------------------------------------------------- /bicep/keyvault-parameters/main.parameters.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/keyvault-parameters/main.parameters.bicepparam -------------------------------------------------------------------------------- /bicep/keyvault-parameters/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/keyvault-parameters/main.parameters.json -------------------------------------------------------------------------------- /bicep/keyvault/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/keyvault/main.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/advanced-bicep/deploymentscript/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/advanced-bicep/deploymentscript/main.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/README.md: -------------------------------------------------------------------------------- 1 | Files for the Bicep Fundamentals module on Microsoft Learn. 2 | -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/loops-conditions/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/loops-conditions/main.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/loops-conditions/modules/database.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/loops-conditions/modules/database.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/modules-exercise/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/modules-exercise/main.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/modules-exercise/modules/app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/modules-exercise/modules/app.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/modules-exercise/modules/cdn.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/modules-exercise/modules/cdn.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/parameters/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/parameters/main.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/parameters/main.parameters.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/parameters/main.parameters.dev.json -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/toystore/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/toystore/main.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/bicep-fundamentals/toystore/modules/appService.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/bicep-fundamentals/toystore/modules/appService.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/intermediate-bicep/child-resources/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/intermediate-bicep/child-resources/main.bicep -------------------------------------------------------------------------------- /bicep/microsoft-learn-modules/intermediate-bicep/refactor-collaboration/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/microsoft-learn-modules/intermediate-bicep/refactor-collaboration/main.bicep -------------------------------------------------------------------------------- /bicep/simple-aks-copilot/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/simple-aks-copilot/main.bicep -------------------------------------------------------------------------------- /bicep/simple-aks-parameters/aks.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/simple-aks-parameters/aks.bicepparam -------------------------------------------------------------------------------- /bicep/simple-aks-parameters/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/simple-aks-parameters/main.bicep -------------------------------------------------------------------------------- /bicep/test-environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/test-environment/README.md -------------------------------------------------------------------------------- /bicep/test-environment/aks.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/test-environment/aks.bicepparam -------------------------------------------------------------------------------- /bicep/test-environment/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/test-environment/main.bicep -------------------------------------------------------------------------------- /bicep/test-environment/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/bicep/test-environment/setup -------------------------------------------------------------------------------- /csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/.gitignore -------------------------------------------------------------------------------- /csharp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/.vscode/launch.json -------------------------------------------------------------------------------- /csharp/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "hello-world.sln" 3 | } -------------------------------------------------------------------------------- /csharp/fundamentals/CsharpProjects/CsharpProjects.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/CsharpProjects/CsharpProjects.csproj -------------------------------------------------------------------------------- /csharp/fundamentals/CsharpProjects/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/CsharpProjects/Program.cs -------------------------------------------------------------------------------- /csharp/fundamentals/CsharpProjects/TestProject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/CsharpProjects/TestProject/Program.cs -------------------------------------------------------------------------------- /csharp/fundamentals/CsharpProjects/TestProject/TestProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/CsharpProjects/TestProject/TestProject.csproj -------------------------------------------------------------------------------- /csharp/fundamentals/coinflip/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/coinflip/Program.cs -------------------------------------------------------------------------------- /csharp/fundamentals/coinflip/coinflip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/coinflip/coinflip.csproj -------------------------------------------------------------------------------- /csharp/fundamentals/fizzbuzz/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/fizzbuzz/Program.cs -------------------------------------------------------------------------------- /csharp/fundamentals/fizzbuzz/fizzbuzz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/fizzbuzz/fizzbuzz.csproj -------------------------------------------------------------------------------- /csharp/fundamentals/switch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/switch/Program.cs -------------------------------------------------------------------------------- /csharp/fundamentals/switch/switch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/fundamentals/switch/switch.csproj -------------------------------------------------------------------------------- /csharp/hello-world.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/hello-world.sln -------------------------------------------------------------------------------- /csharp/hello-world/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/hello-world/Program.cs -------------------------------------------------------------------------------- /csharp/hello-world/hello-world.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/hello-world/hello-world.csproj -------------------------------------------------------------------------------- /csharp/webpage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/Program.cs -------------------------------------------------------------------------------- /csharp/webpage/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/Properties/launchSettings.json -------------------------------------------------------------------------------- /csharp/webpage/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/appsettings.Development.json -------------------------------------------------------------------------------- /csharp/webpage/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/appsettings.json -------------------------------------------------------------------------------- /csharp/webpage/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/bin/Debug/net8.0/appsettings.Development.json -------------------------------------------------------------------------------- /csharp/webpage/bin/Debug/net8.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/bin/Debug/net8.0/appsettings.json -------------------------------------------------------------------------------- /csharp/webpage/bin/Debug/net8.0/webpage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/bin/Debug/net8.0/webpage -------------------------------------------------------------------------------- /csharp/webpage/bin/Debug/net8.0/webpage.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/bin/Debug/net8.0/webpage.deps.json -------------------------------------------------------------------------------- /csharp/webpage/bin/Debug/net8.0/webpage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/bin/Debug/net8.0/webpage.dll -------------------------------------------------------------------------------- /csharp/webpage/bin/Debug/net8.0/webpage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/bin/Debug/net8.0/webpage.pdb -------------------------------------------------------------------------------- /csharp/webpage/bin/Debug/net8.0/webpage.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/bin/Debug/net8.0/webpage.runtimeconfig.json -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/ref/webpage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/ref/webpage.dll -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/refint/webpage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/refint/webpage.dll -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/staticwebassets.build.json -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/staticwebassets/msbuild.build.webpage.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/staticwebassets/msbuild.build.webpage.props -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.webpage.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.webpage.props -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.webpage.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.webpage.props -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.GlobalUsings.g.cs -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.assets.cache -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.dll -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.genruntimeconfig.cache -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.pdb -------------------------------------------------------------------------------- /csharp/webpage/obj/Debug/net8.0/webpage.sourcelink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/Debug/net8.0/webpage.sourcelink.json -------------------------------------------------------------------------------- /csharp/webpage/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/project.assets.json -------------------------------------------------------------------------------- /csharp/webpage/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/project.nuget.cache -------------------------------------------------------------------------------- /csharp/webpage/obj/webpage.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/webpage.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /csharp/webpage/obj/webpage.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/webpage.csproj.nuget.g.props -------------------------------------------------------------------------------- /csharp/webpage/obj/webpage.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/obj/webpage.csproj.nuget.g.targets -------------------------------------------------------------------------------- /csharp/webpage/webpage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/webpage.csproj -------------------------------------------------------------------------------- /csharp/webpage/webpage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/csharp/webpage/webpage.sln -------------------------------------------------------------------------------- /devcontainers/debian/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/devcontainers/debian/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /devcontainers/debian/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/devcontainers/debian/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /devcontainers/nix-demo/.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/devcontainers/nix-demo/.devcontainer.json -------------------------------------------------------------------------------- /devcontainers/nix-demo/hello.md: -------------------------------------------------------------------------------- 1 | # Hello YouTube! 2 | 3 | This is just a text file. 4 | -------------------------------------------------------------------------------- /devcontainers/nvim-brew/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/devcontainers/nvim-brew/setup -------------------------------------------------------------------------------- /docker-compose/lemp-stack/.docker/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/docker-compose/lemp-stack/.docker/mysql/my.cnf -------------------------------------------------------------------------------- /docker-compose/lemp-stack/.docker/nginx/conf.d/php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/docker-compose/lemp-stack/.docker/nginx/conf.d/php.conf -------------------------------------------------------------------------------- /docker-compose/lemp-stack/.docker/php/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:8.0-fpm 2 | 3 | RUN docker-php-ext-install pdo_mysql 4 | -------------------------------------------------------------------------------- /docker-compose/lemp-stack/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=demo 2 | -------------------------------------------------------------------------------- /docker-compose/lemp-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/docker-compose/lemp-stack/README.md -------------------------------------------------------------------------------- /docker-compose/lemp-stack/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/docker-compose/lemp-stack/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/lemp-stack/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/docker-compose/lemp-stack/src/index.php -------------------------------------------------------------------------------- /github-actions/update-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/github-actions/update-tag.yaml -------------------------------------------------------------------------------- /kubernetes/akv2k8s/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/akv2k8s/secret.yaml -------------------------------------------------------------------------------- /kubernetes/auth/authentik/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/authentik/values.yaml -------------------------------------------------------------------------------- /kubernetes/auth/keycloak-path/values-works.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak-path/values-works.yaml -------------------------------------------------------------------------------- /kubernetes/auth/keycloak-path/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak-path/values.yaml -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/README.md -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/default.yaml -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/env -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/.gitignore -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/README.md -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/next.config.js -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/package-lock.json -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/package.json -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/postcss.config.js -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/public/next.svg -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/public/vercel.svg -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/src/app/favicon.ico -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/src/app/globals.css -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/src/app/layout.tsx -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/src/app/page.tsx -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/src/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/src/components/Login.tsx -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/src/components/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/src/components/Logout.tsx -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/tailwind.config.ts -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/tsconfig.json -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/nextjs-keycloak/types/node-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/nextjs-keycloak/types/node-env.d.ts -------------------------------------------------------------------------------- /kubernetes/auth/keycloak/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/keycloak/values.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/app/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/app/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/app/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/app/service.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/hydra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/hydra/README.md -------------------------------------------------------------------------------- /kubernetes/auth/ory/hydra/cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/hydra/cmd -------------------------------------------------------------------------------- /kubernetes/auth/ory/hydra/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/hydra/values.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/kratos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/kratos/README.md -------------------------------------------------------------------------------- /kubernetes/auth/ory/kratos/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/kratos/database.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/kratos/kratos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/kratos/kratos.md -------------------------------------------------------------------------------- /kubernetes/auth/ory/kratos/testingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/kratos/testingress.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/kratos/values-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/kratos/values-example.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/kratos/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/kratos/values.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/kustomization.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/mailslurper/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/mailslurper/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/mailslurper/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/mailslurper/kustomization.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/mailslurper/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/mailslurper/service.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/self-service-sofi/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/self-service-sofi/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/self-service-sofi/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/self-service-sofi/ingress.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/self-service-sofi/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/self-service-sofi/service.yaml -------------------------------------------------------------------------------- /kubernetes/auth/ory/self-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/auth/ory/self-service/values.yaml -------------------------------------------------------------------------------- /kubernetes/azure-blob-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/azure-blob-storage/README.md -------------------------------------------------------------------------------- /kubernetes/azure-blob-storage/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/azure-blob-storage/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/azure-blob-storage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/azure-blob-storage/kustomization.yaml -------------------------------------------------------------------------------- /kubernetes/azure-blob-storage/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/azure-blob-storage/secret.yaml -------------------------------------------------------------------------------- /kubernetes/azure-blob-storage/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/azure-blob-storage/storage.yaml -------------------------------------------------------------------------------- /kubernetes/azure-csi-secrets-store/service-principal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/azure-csi-secrets-store/service-principal/README.md -------------------------------------------------------------------------------- /kubernetes/azure-csi-secrets-store/service-principal/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/azure-csi-secrets-store/service-principal/pod.yaml -------------------------------------------------------------------------------- /kubernetes/azure-csi-secrets-store/service-principal/secretclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/azure-csi-secrets-store/service-principal/secretclass.yaml -------------------------------------------------------------------------------- /kubernetes/cks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/README.md -------------------------------------------------------------------------------- /kubernetes/cks/kube-bench/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/kube-bench/job.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/course-content/backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/course-content/backend.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/course-content/cassandra-default-deny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/course-content/cassandra-default-deny.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/course-content/cassandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/course-content/cassandra.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/course-content/default-deny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/course-content/default-deny.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/course-content/egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/course-content/egress.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/course-content/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/course-content/frontend.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/killercoda/deny-out.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/killercoda/deny-out.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/killercoda/ip-block-except.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/killercoda/ip-block-except.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/killercoda/same-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/killercoda/same-namespace.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/killercoda/space1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/killercoda/space1.yaml -------------------------------------------------------------------------------- /kubernetes/cks/network-policies/killercoda/space2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/network-policies/killercoda/space2.yaml -------------------------------------------------------------------------------- /kubernetes/cks/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/cks/stream.md -------------------------------------------------------------------------------- /kubernetes/deployments/httpd-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/deployments/httpd-backend.yaml -------------------------------------------------------------------------------- /kubernetes/deployments/httpd-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/deployments/httpd-frontend.yaml -------------------------------------------------------------------------------- /kubernetes/deployments/loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/deployments/loadbalancer.yaml -------------------------------------------------------------------------------- /kubernetes/deployments/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/deployments/test.yaml -------------------------------------------------------------------------------- /kubernetes/edb/quickstart/db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/quickstart/db.yaml -------------------------------------------------------------------------------- /kubernetes/edb/quickstart/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/quickstart/example.yaml -------------------------------------------------------------------------------- /kubernetes/edb/quickstart/mealie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/quickstart/mealie.yaml -------------------------------------------------------------------------------- /kubernetes/edb/test/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/test/install -------------------------------------------------------------------------------- /kubernetes/edb/test/taints1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/test/taints1.yaml -------------------------------------------------------------------------------- /kubernetes/edb/test/test1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/test/test1.yaml -------------------------------------------------------------------------------- /kubernetes/edb/test/test2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/test/test2.yaml -------------------------------------------------------------------------------- /kubernetes/edb/zk/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/zk/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/edb/zk/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/zk/service.yaml -------------------------------------------------------------------------------- /kubernetes/edb/zk/zk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/edb/zk/zk.yaml -------------------------------------------------------------------------------- /kubernetes/ergo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/ergo/docker-compose.yml -------------------------------------------------------------------------------- /kubernetes/example-app/homarr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/example-app/homarr.yaml -------------------------------------------------------------------------------- /kubernetes/example-app/loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/example-app/loadbalancer.yaml -------------------------------------------------------------------------------- /kubernetes/gitops/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/gitops/Chart.yaml -------------------------------------------------------------------------------- /kubernetes/gitops/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/gitops/LICENSE -------------------------------------------------------------------------------- /kubernetes/gitops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/gitops/README.md -------------------------------------------------------------------------------- /kubernetes/gitops/azure-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/gitops/azure-pipelines.yaml -------------------------------------------------------------------------------- /kubernetes/gitops/templates/deployment.k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/gitops/templates/deployment.k8s.yaml -------------------------------------------------------------------------------- /kubernetes/gitops/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/gitops/templates/service.yaml -------------------------------------------------------------------------------- /kubernetes/gitops/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/gitops/values.yaml -------------------------------------------------------------------------------- /kubernetes/grafana/dashboards/simple-namespace-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/grafana/dashboards/simple-namespace-overview.json -------------------------------------------------------------------------------- /kubernetes/k8smonitoring-secrets/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/k8smonitoring-secrets/Chart.yaml -------------------------------------------------------------------------------- /kubernetes/k8smonitoring-secrets/example-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/k8smonitoring-secrets/example-values.yaml -------------------------------------------------------------------------------- /kubernetes/k8smonitoring-secrets/templates/secrets/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/k8smonitoring-secrets/templates/secrets/secrets.yaml -------------------------------------------------------------------------------- /kubernetes/keda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/keda/README.md -------------------------------------------------------------------------------- /kubernetes/keda/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/keda/cluster.yaml -------------------------------------------------------------------------------- /kubernetes/keda/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/keda/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/keda/keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/keda/keda.yaml -------------------------------------------------------------------------------- /kubernetes/keda/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/keda/kustomization.yaml -------------------------------------------------------------------------------- /kubernetes/mealie/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/mealie/service.yaml -------------------------------------------------------------------------------- /kubernetes/networkpolicies/commafeed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/networkpolicies/commafeed.yaml -------------------------------------------------------------------------------- /kubernetes/networkpolicies/deny-all-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/networkpolicies/deny-all-ingress.yaml -------------------------------------------------------------------------------- /kubernetes/networkpolicies/deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/networkpolicies/deny-all.yaml -------------------------------------------------------------------------------- /kubernetes/networkpolicies/linkding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/networkpolicies/linkding.yaml -------------------------------------------------------------------------------- /kubernetes/networkpolicies/ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/networkpolicies/ns.yaml -------------------------------------------------------------------------------- /kubernetes/nginx-ingress/demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/nginx-ingress/demo -------------------------------------------------------------------------------- /kubernetes/nginx-ingress/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/nginx-ingress/ingress.yaml -------------------------------------------------------------------------------- /kubernetes/nginx-ingress/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/nginx-ingress/test.yaml -------------------------------------------------------------------------------- /kubernetes/pdb/backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/pdb/backend.yaml -------------------------------------------------------------------------------- /kubernetes/pdb/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/pdb/frontend.yaml -------------------------------------------------------------------------------- /kubernetes/prometheus/add-cluster-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/kubernetes/prometheus/add-cluster-label.yaml -------------------------------------------------------------------------------- /lua/autorun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/lua/autorun.lua -------------------------------------------------------------------------------- /lua/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/lua/hello.py -------------------------------------------------------------------------------- /lua/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/lua/new -------------------------------------------------------------------------------- /lua/second_brain_file.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/lua/second_brain_file.lua -------------------------------------------------------------------------------- /python/Utilities/README.md: -------------------------------------------------------------------------------- 1 | # Handy one-off programs to solve a specific task 2 | -------------------------------------------------------------------------------- /python/Utilities/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/Utilities/color.py -------------------------------------------------------------------------------- /python/Utilities/combine_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/Utilities/combine_markdown.py -------------------------------------------------------------------------------- /python/Utilities/download_lydbok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/Utilities/download_lydbok.py -------------------------------------------------------------------------------- /python/Utilities/pandas_lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/Utilities/pandas_lesson.py -------------------------------------------------------------------------------- /python/Utilities/yaml_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/Utilities/yaml_convert.py -------------------------------------------------------------------------------- /python/automatetheboringstuff/Chapter9/grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/Chapter9/grammar.txt -------------------------------------------------------------------------------- /python/automatetheboringstuff/Chapter9/mad libs final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/Chapter9/mad libs final.py -------------------------------------------------------------------------------- /python/automatetheboringstuff/Chapter9/madlibs old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/Chapter9/madlibs old.py -------------------------------------------------------------------------------- /python/automatetheboringstuff/Chapter9/new_grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/Chapter9/new_grammar.txt -------------------------------------------------------------------------------- /python/automatetheboringstuff/Chapter9/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/Chapter9/regex.py -------------------------------------------------------------------------------- /python/automatetheboringstuff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/README.md -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/chapter10/copiedfiles/.DS_Store -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/dagger.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/flamberge.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/halberd.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/poleaxe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/spirit.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/stormshield.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/twohandsword.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copiedfiles/zakarum.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/copy_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/chapter10/copy_files.py -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/gaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/chapter10/gaps.py -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/large_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/chapter10/large_files.py -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/tempfiles/spam001.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/tempfiles/spam002.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/tempfiles/spam004.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/tempfiles/spam005.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/tempfiles/spam006.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/automatetheboringstuff/chapter10/test.py -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/textfiles/spam002.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/textfiles/spam003.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/textfiles/spam004.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/chapter10/textfiles/spam005.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/axe/halberd.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/axe/hatchet.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/axe/poleaxe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/axe/splitaxe.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/axe/test.txt.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/hammmer.axe.txt.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/shield/spirit.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/shield/stormshield.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/shield/vikingshield.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/shield/zakarum.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/sword/dagger.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/sword/flamberge.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/automatetheboringstuff/test_tree/sword/twohandsword.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/brainfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/brainfile.py -------------------------------------------------------------------------------- /python/convert-colors/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/convert-colors/convert.py -------------------------------------------------------------------------------- /python/convert-colors/new_colors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/convert-colors/new_colors.yaml -------------------------------------------------------------------------------- /python/convert-colors/old_colors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/convert-colors/old_colors.yaml -------------------------------------------------------------------------------- /python/download-youtube-audio/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/download-youtube-audio/test.py -------------------------------------------------------------------------------- /python/emails/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/emails/extract.py -------------------------------------------------------------------------------- /python/list_comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/list_comprehensions.py -------------------------------------------------------------------------------- /python/mqtt/json-log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/mqtt/json-log.py -------------------------------------------------------------------------------- /python/mqtt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/mqtt/main.py -------------------------------------------------------------------------------- /python/obsidian/kindle.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/obsidian/kindle.template -------------------------------------------------------------------------------- /python/obsidian/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/obsidian/quotes.py -------------------------------------------------------------------------------- /python/obsidian/update_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/obsidian/update_dates.py -------------------------------------------------------------------------------- /python/oura/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/oura/main.py -------------------------------------------------------------------------------- /python/tweetshot/shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/tweetshot/shot.py -------------------------------------------------------------------------------- /python/typer/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/typer/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /python/typer/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/typer/.github/dependabot.yml -------------------------------------------------------------------------------- /python/typer/__pycache__/hello.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/typer/__pycache__/hello.cpython-312.pyc -------------------------------------------------------------------------------- /python/typer/hello-completion/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/typer/hello-completion/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /python/typer/hello-completion/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/typer/hello-completion/main.py -------------------------------------------------------------------------------- /python/typer/hello/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/typer/hello/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /python/typer/hello/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/typer/hello/main.py -------------------------------------------------------------------------------- /python/youtube-transcript/.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/youtube-transcript/.devcontainer.json -------------------------------------------------------------------------------- /python/youtube-transcript/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/youtube-transcript/transcribe.py -------------------------------------------------------------------------------- /python/yt-trans-claude/trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/python/yt-trans-claude/trans.py -------------------------------------------------------------------------------- /svelte/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /svelte/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /svelte/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /svelte/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/.github/dependabot.yml -------------------------------------------------------------------------------- /svelte/svelte-job-board/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /svelte/svelte-job-board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/README.md -------------------------------------------------------------------------------- /svelte/svelte-job-board/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/package-lock.json -------------------------------------------------------------------------------- /svelte/svelte-job-board/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/package.json -------------------------------------------------------------------------------- /svelte/svelte-job-board/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/public/favicon.png -------------------------------------------------------------------------------- /svelte/svelte-job-board/public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/public/global.css -------------------------------------------------------------------------------- /svelte/svelte-job-board/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/public/index.html -------------------------------------------------------------------------------- /svelte/svelte-job-board/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/rollup.config.js -------------------------------------------------------------------------------- /svelte/svelte-job-board/scripts/setupTypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/scripts/setupTypeScript.js -------------------------------------------------------------------------------- /svelte/svelte-job-board/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/src/App.svelte -------------------------------------------------------------------------------- /svelte/svelte-job-board/src/JobBoard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/src/JobBoard.svelte -------------------------------------------------------------------------------- /svelte/svelte-job-board/src/JobCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/src/JobCard.svelte -------------------------------------------------------------------------------- /svelte/svelte-job-board/src/JobDetail.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/src/JobDetail.svelte -------------------------------------------------------------------------------- /svelte/svelte-job-board/src/JobList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/src/JobList.svelte -------------------------------------------------------------------------------- /svelte/svelte-job-board/src/TagFilter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/src/TagFilter.svelte -------------------------------------------------------------------------------- /svelte/svelte-job-board/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/svelte/svelte-job-board/src/main.js -------------------------------------------------------------------------------- /terraform/aks-cluster/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/aks-cluster/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/aks-cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/aks-cluster/main.tf -------------------------------------------------------------------------------- /terraform/aks-cluster/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/aks-cluster/outputs.tf -------------------------------------------------------------------------------- /terraform/aks-cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/aks-cluster/variables.tf -------------------------------------------------------------------------------- /terraform/azure-simple-linux-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/azure-simple-linux-vm/README.md -------------------------------------------------------------------------------- /terraform/azure-simple-linux-vm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/azure-simple-linux-vm/main.tf -------------------------------------------------------------------------------- /terraform/azure-simple-linux-vm/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/azure-simple-linux-vm/outputs.tf -------------------------------------------------------------------------------- /terraform/azure-simple-linux-vm/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/azure-simple-linux-vm/providers.tf -------------------------------------------------------------------------------- /terraform/azure-simple-linux-vm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/lab/HEAD/terraform/azure-simple-linux-vm/variables.tf --------------------------------------------------------------------------------