I deleted keybase because it was aquired by zoom.
Money quote:
Ultimately Keybase's future is in Zoom's hands, and we'll see where that takes us.
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| body { | |
| background: #ffffff; | |
| background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 100%); | |
| background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #ffffff)); | |
| background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%); | |
| background: -o-linear-gradient(top, #ffffff 0%, #ffffff 100%); | |
| background: -ms-linear-gradient(top, #ffffff 0%, #ffffff 100%); | |
| background: linear-gradient(top, #ffffff 0%, #ffffff 100%); } | |
| h1, h2, h3, h4, h5, h6 { |
| #!/bin/bash | |
| clear | |
| set -e | |
| if [ "$(id -u)" != "0" ]; then | |
| echo "This script must be run as root" 1>&2 | |
| exit 1 | |
| fi | |
| echo "Do you REALLY want to do this? (y/N)" | |
| read a | |
| if [[ $a == "Y" || $a == "y" ]]; then |
| #!/bin/bash | |
| # Wifi | |
| alias wstat="networksetup -getairportpower en0" | |
| alias won="networksetup -setairportpower en0 on" | |
| alias woff="networksetup -setairportpower en0 off" | |
| # Darkmode | |
| alias darkon='osascript -e "tell application \"System Events\" to tell appearance preferences to set dark mode to true"' | |
| alias darkoff='osascript -e "tell application \"System Events\" to tell appearance preferences to set dark mode to false"' |
| FROM ruby:2.2 | |
| ## | |
| # Docker image for Dradis-ce. | |
| # This is NOT the final version! | |
| ## | |
| MAINTAINER Lukas Fülling ([email protected]) | |
| # Install dependencies using apt |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #ifdef _MSC_VER | |
| #include <intrin.h> /* for rdtscp and clflush */ | |
| #pragma optimize("gt",on) | |
| #else | |
| #include <x86intrin.h> /* for rdtscp and clflush */ | |
| #endif |
| #!/usr/bin/env bash | |
| # mac.sh — Based on: https://mths.be/macos | |
| # Close any open System Preferences panes, to prevent them from overriding | |
| # settings we’re about to change | |
| osascript -e 'tell application "System Preferences" to quit' | |
| # Ask for the administrator password upfront | |
| sudo -v |
| #!/bin/bash | |
| cowsay -l | xargs -n 1 | tail -n +5 | while read line; do cowsay -f $line $line && sleep 1; done |
| <VirtualHost *:80> | |
| ServerName {{ halcyon_domain }} | |
| Redirect permanent / https://{{ halcyon_domain }}/ | |
| Redirect permanent (.*) https://{{ halcyon_domain }}/ | |
| </VirtualHost> | |
| <VirtualHost *:443> | |
| ServerName {{ halcyon_domain }} |
I deleted keybase because it was aquired by zoom.
Money quote:
Ultimately Keybase's future is in Zoom's hands, and we'll see where that takes us.