Skip to content

Instantly share code, notes, and snippets.

View allenhurff's full-sized avatar

Allen Hurff allenhurff

View GitHub Profile
@allenhurff
allenhurff / index.html
Created January 29, 2016 06:55
Gearing
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 960px;
height: 500px;
position: relative;
}
@allenhurff
allenhurff / # mkvtoolnix - 2017-07-17_21-15-31.txt
Created July 18, 2017 04:24
mkvtoolnix on macOS 10.12.6 - Homebrew build logs
Homebrew build logs for mkvtoolnix on macOS 10.12.6
Build date: 2017-07-17 21:15:31
@allenhurff
allenhurff / # mkvtoolnix - 2017-07-17_21-27-23.txt
Created July 18, 2017 04:27
mkvtoolnix on macOS 10.12.6 - Homebrew build logs
Homebrew build logs for mkvtoolnix on macOS 10.12.6
Build date: 2017-07-17 21:27:23
#!/bin/bash
set -e
set -v
# this paste contains the commands run during the "setup GitLab in GKE" video at https://www.youtube.com/watch?v=8vM374-H0zE
# additional information can be found at https://docs.gitlab.com/ee/install/kubernetes/gitlab_chart.html
# once configured, you will be able to access your cluster at
# https://gitlab.$CLUSTERNAME.$DOMAINNAME
#!/bin/bash
set -e
set -v
# this paste contains the commands run during the "setup GitLab in GKE" video at https://www.youtube.com/watch?v=8vM374-H0zE
# additional information can be found at https://docs.gitlab.com/ee/install/kubernetes/gitlab_chart.html
# once configured, you will be able to access your cluster at
# https://gitlab.$CLUSTERNAME.$DOMAINNAME
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import time
import numpy
import colorsys
from PIL import Image, ImageDraw, ImageFont, ImageFilter
from fonts.ttf import RobotoMedium as UserFont
# Use colors, but only if connected to a terminal, and that terminal
# supports them.
RB_RED=$(printf '\033[38;5;196m')
RB_ORANGE=$(printf '\033[38;5;202m')
RB_YELLOW=$(printf '\033[38;5;226m')
RB_GREEN=$(printf '\033[38;5;082m')
RB_BLUE=$(printf '\033[38;5;021m')
RB_INDIGO=$(printf '\033[38;5;093m')
RB_VIOLET=$(printf '\033[38;5;163m')