This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
,ββ βββ ,ββ, βββ ,ββ ,ββ | |
,βββΒ΅]ββ βββββββββ ββββ ββββ β«ββ | |
,βββββ βββ βββ βββ βββ ββββββ ββββββββ | |
βββββββββββ,,ββββ βββ ββββββββββββββββββ | |
*βββ ββββββββββββ βββββββββββ ββββββ βββ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-08-14T08:23:52.092Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script prevents Spotifys Autoupdating on OS X (testet on Yosemite) | |
# Based on this tutorial: | |
# http://supraliminal.net/blog/2013/4/21/how-to-revert-back-to-the-older-better-spotify-client | |
# | |
# This script must be run as root: | |
# sudo sh doNotUpdateSpotify.sh | |
# | |
FILE="/tmp/out.$$" | |
if [ "$(id -u)" != "0" ]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "aws" { | |
} | |
// VPC | |
resource "aws_vpc" "default" { | |
cidr_block = "${var.vpc_cidr_block}" | |
enable_dns_hostnames = true | |
tags { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BOX_NAME="alicankustemur/k-generic-box" | |
BOX_VERSION="18.03.16" | |
PRIVATE_IP="172.27.44.10" | |
Vagrant.configure("2") do |config| | |
config.vm.box = "#{BOX_NAME}" | |
config.vm.box_version = "#{BOX_VERSION}" | |
config.vm.provision "shell", inline: "docker run --name nginx -p 80:80 -d nginx:1.12" | |
config.vm.define "nginx" do |node| |