Skip to content

Instantly share code, notes, and snippets.

View soupdiver's full-sized avatar
👨‍🚀

Felix soupdiver

👨‍🚀
View GitHub Profile

soupdiver Felix Psychedelic Fairyland The VOID

Keybase proof

I hereby claim:

@soupdiver
soupdiver / circle.yml
Created March 30, 2016 15:30 — forked from kimh/circle.yml
Installing gcloud
machine:
pre:
- sudo bash -c 'curl "https://sdk.cloud.google.com" | CLOUDSDK_CORE_DISABLE_PROMPTS=1 CLOUDSDK_INSTALL_DIR=/opt bash'
- sudo chown -R "ubuntu:ubuntu" "/opt/google-cloud-sdk"
- sudo chown -R "ubuntu:ubuntu" "/home/ubuntu/.config/gcloud"
- source /opt/google-cloud-sdk/path.bash.inc
#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
green='\033[0;32m'
@soupdiver
soupdiver / gist:97929f64207e3d6130b8
Last active August 29, 2015 14:04
nginx example configuration for using docker-automx by @soupdiver
server {
listen 80;
listen [::]:80;
server_name autoconfig.YOURDOMAIN;
rewrite ^ https://$server_name$request_uri? permanent;
}
server {
listen 443 ssl;
@soupdiver
soupdiver / gist:9139126
Created February 21, 2014 17:41
scan a network for open ssh ports with nmap
nmap -sV -p 22 XXX.XXX.XXX.0/24
@soupdiver
soupdiver / Vagrantfile
Created January 24, 2014 10:13
my default Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# config.vm.network "public_network", :bridge => 'en1: Wi-Fi (AirPort)'
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.