Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
| log_format combined '$remote_addr - $remote_user [$time_local] ' | |
| '"$request" $status $body_bytes_sent ' | |
| '"$http_referer" "$http_user_agent"'; |
| #!/bin/bash | |
| DOCKER_COMPOSE_FILES='docker-compose1.yml,docker-compose2.yml' | |
| DOCKER_COMPOSE_UP_MODE=1 #1|0 | |
| DOCKER_COMPOSE_UP_LOG_FILE='/tmp/log.txt' | |
| DOCKER_COMPOSE_BUILD_OPTIONS="" #any options for `docker-compose build` | |
| DOCKER_COMPOSE_UP_OPTIONS="" #any options for `docker-compose up` | |
| DOCKER_COMPOSE_RUN_OPTIONS="" #any options for `docker-compose run` | |
| TEST_CONTAINERS="application1=/test.sh,application2=/test2.sh" | |
| ##### get port remover ##### |
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
| #!/usr/bin/env bash | |
| # | |
| # This script ports deployed Helm v2 Packages from k8s API v1.15 to 1.16 | |
| # | |
| # When upgrading K8s clusters to a new minor API version it is possible that | |
| # already deprecated API Endpoints are removed e.g., | |
| # extensions/v1beta1/DaemonSet | |
| # K8s handles this transparently for already deployed ressources from the | |
| # deprecated paths, making them available via their new API. They are no longer | |
| # available through the removed paths though. |