Skip to content

Instantly share code, notes, and snippets.

View andreassiegel's full-sized avatar
👨‍💻
Writing code, as usual. 🤓

Andreas Siegel andreassiegel

👨‍💻
Writing code, as usual. 🤓
View GitHub Profile
@andreassiegel
andreassiegel / AndreasDark.itermcolors
Last active October 26, 2021 15:26
Color Schemes
<!-- Color Scheme for iTerm2 -->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
<key>Blue Component</key>
@andreassiegel
andreassiegel / anyVpnConnection.sh
Last active April 26, 2022 08:15
Utility for VPN connections on Mac OS via Cisco AnyConnect CLI
#!/bin/bash
#
# Provides some basic utilities for VPN connections using the Cisco AnyConnect CLI.
readonly cmd="${1}"
readonly vpn="${2}"
readonly anyconnect="/opt/cisco/anyconnect/bin/vpn"
readonly configfile="${HOME}/.vpn/config"
@andreassiegel
andreassiegel / vpnConnection.sh
Last active January 24, 2022 08:56
Utility for VPN connections on Mac OS
#!/bin/bash
#
# Provides some basic utilities for VPN connections.
readonly cmd="${1}"
readonly vpn="${2}"
err() {
echo "$*" >&2
@andreassiegel
andreassiegel / README.adoc
Last active November 20, 2019 07:59
Command line cheat sheet

Command Line Cheat Sheet

@andreassiegel
andreassiegel / dev-env.sh
Last active October 26, 2021 15:04
Script to setup the development environment
#!/usr/bin/env bash
#
# Install commonly used tools for development on MacOS.
# Install Homebrew
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh
brew tap homebrew/cask-versions
# Required applications (antivirus, encryption, communication, ...)
brew install --cask -y \