Skip to content

Instantly share code, notes, and snippets.

View alicankustemur's full-sized avatar
🐳
Extracting [=======> ] 93.00MB/100MB

Ali Can Kuştemur alicankustemur

🐳
Extracting [=======> ] 93.00MB/100MB
View GitHub Profile
,β•“β–„ β–ˆβ–ˆβŒ ,β–„β–„, β–ˆβ–ˆβ–Œ ,▄┐ ,β–„β–„
,β–ˆβ–ˆβ–ˆΒ΅]β–ˆβ–ˆ β–„β–ˆβ–ˆβ•™β•™β–ˆβ–ˆβ–ˆβ–ˆ β–β–ˆβ–ˆβ–ˆ β–β–ˆβ–ˆβ–„ β•«β–ˆβ–Œ
,β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβŒ β•Ÿβ–ˆβ–ˆ β–ˆβ–ˆβ–Œ β–ˆβ–ˆβ–€ β–„β–ˆβ–ˆβ–ˆβ–ˆβ–Œ β–ˆβ–ˆβ–ˆβ–ˆβ–„β–β–ˆβ–ˆ
β•“β–ˆβ–ˆβ–ˆβ–„β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ,,β–„β–„β–ˆβ–ˆ β–ˆβ–ˆβ–ˆ β•“β–„β–“β–“β–ˆβ–ˆβ–„β–ˆβ–ˆβ–„β–ˆβ–ˆβ–ˆβ–€β–ˆβ–ˆβ–ˆβ–ˆ
*β–ˆβ–ˆβ”€ β””β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–€β–€β–€β–€β–€ β•™β–€β–ˆβ–ˆβ–ˆβ–ˆβ–€β–€β–€β–ˆβ–ˆ β•™β–ˆβ–ˆβ–ˆβ–€β–€ β–€β–ˆβ–ˆ
@alicankustemur
alicankustemur / cloudSettings
Last active August 14, 2020 08:23
vscode.sync
{"lastUpload":"2020-08-14T08:23:52.092Z","extensionVersion":"v3.4.3"}
@alicankustemur
alicankustemur / doNotUpdateSpotify.sh
Created October 31, 2018 08:31 — forked from AllanLRH/doNotUpdateSpotify.sh
Disable Spotify autoupdate on Mac OS X (testet on Yosemite).
# 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
@alicankustemur
alicankustemur / terraform_example.tf
Last active August 10, 2018 06:30
Terraform Example on AWS
provider "aws" {
}
// VPC
resource "aws_vpc" "default" {
cidr_block = "${var.vpc_cidr_block}"
enable_dns_hostnames = true
tags {
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|