This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| body { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| width: 960px; | |
| height: 500px; | |
| position: relative; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Homebrew build logs for mkvtoolnix on macOS 10.12.6 | |
| Build date: 2017-07-17 21:15:31 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Homebrew build logs for mkvtoolnix on macOS 10.12.6 | |
| Build date: 2017-07-17 21:27:23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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') |
OlderNewer