Skip to content

Instantly share code, notes, and snippets.

View birkhofflee's full-sized avatar
🎓
Learning about CS

birkhoff birkhofflee

🎓
Learning about CS
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
...
<script>
// don't load bootstrap - confluence does not need this
var netdataNoBootstrap = true;
var netdataTheme = 'white';
var netdataPrepCallback = function() {
@birkhofflee
birkhofflee / teamviewer_change_id.py
Created April 22, 2019 13:37
Change the ID of Teamviewer for macOS to circumvent "commercial use detected"
# -*- coding: utf-8 -*-
import sys
import os
import glob
import platform
import re
import random
import string
print('Change ID of Teamviewer for macOS')
@birkhofflee
birkhofflee / index.js
Last active August 31, 2019 07:55
daily RSS feed to mailgun email
let d = new Date()
d.setDate(d.getDate() - 1)
const date = d.toISOString().split('T')[0]
const RssToEmail = require('rss-to-email')
const config = {
accentColor: "red",
header: {
link: "",
title: "RSS Feed"
@birkhofflee
birkhofflee / docker-compose.yml
Created September 16, 2019 15:11
docker-compose Grafana + InfluxDB + collectd with Traefik
version: '3.2'
services:
collectd:
image: fr3nd/collectd
privileged: true
network_mode: host
volumes:
- /proc:/mnt/proc:ro
- ./collectd.conf:/etc/collectd/collectd.conf
@birkhofflee
birkhofflee / gist:84fcae9dc0b2095a3a87eedfbedd4ce8
Created November 21, 2019 06:53
Install Borg & Borgmatic on CentOS 8
# Tested on a Vultr CentOS 8 server. Run with root!
yum install -y openssl-devel gcc-c++ python3-devel libacl-devel
dnf install -y redhat-rpm-config
pip3 install virtualenv
virtualenv --python=python3 borg-env
source borg-env/bin/activate
pip3 install borgbackup
# Borgmatic
@birkhofflee
birkhofflee / install.sh
Last active November 21, 2019 12:08
Install Docker Engine on CentOS 8
#!/bin/sh
# Tested on Vultr as of Nov 21, 2019
groupadd docker
usermod -aG docker birkhoff # add birkhoff to docker group
newgrp docker
yum remove -y docker \
docker-client \
@birkhofflee
birkhofflee / gist:b8069b9e689e24d1147863c222a7edf4
Created November 23, 2019 03:45 — forked from jimbojsb/gist:1630790
Code highlighting for Keynote presentations

Step 0:

Get Homebrew installed on your mac if you don't already have it

Step 1:

Install highlight. "brew install highlight". (This brings down Lua and Boost as well)

Step 2:

@birkhofflee
birkhofflee / README.md
Last active March 31, 2022 16:14
zer0zero. CS: GO configuration files

zer0zero. CS: GO configuration files

This configuration features:

  • Pro player settings. These are based on former Cloud9 player Shroud's config.
  • Human-readable explanations for every line of commands
  • Gameplay optimizations in technical aspects
    • Minimize shifting when firing the Weapon
    • Disable unnecessary video/audio effects
  • Useful shortcuts:
  • Jump throw: j
@birkhofflee
birkhofflee / pgp.pub
Created January 12, 2020 23:39
Birkhoff Lee's PGP key
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQINBF4beKUBEADaDr1y6DY43tdUk6Ak5++au3Pwbwh+PRjn/b1u6IfXb9hVw1yq1YWFG/L1
hBopCm0KihrDvwFYpgfWvdKTO2WE/LToVuvAZP9Dsu3MRGZWHHZ2ct/Yn4Q5MgqQdu7zNTVO
t8RGmA3P7kHLY4fdsj5h/62PjTObqbDA5oX162kYgYBzlohrftxws+k3cmDDnPcJSW8iWVzF
V9f2tBAr1yArvpCiMQ49UPLfiN9/PzlUNwQwRS2XKKYderToPN1JyCxBYIfaJ3FKmqp52fnq
ytxv3f5mXI9hbpvVQYU+gFBbhzWAPF0Uvjv3dhonGP9H/xvbdfjS9Zlk7opPMaxgaKD/D+YT
y+8fG9sVVp7Gs/7Yt/g08MEG9m0yBdDpwnFXMX+oqBmzyrzEvthxAztd9LT94mjaQrJCoOfo
vOOF5g3Z0S4xLOVr7JZXulHHqrNP+KVdmSoX7ESjgB8mv0tWZkR96B/z5MJahikPthVTTH+1
4UNU/h72jKimjPbd0NQ8v/pwqOGlipWxG1jAE43cUZlRv3hmDtGJynCBVkVid9yibp1nmoMr
@birkhofflee
birkhofflee / playbook.yml
Last active April 27, 2020 03:41
Install Docker Engine on CentOS 7
become: yes
tasks:
- name: Gather the rpm package facts
package_facts:
manager: auto
- name: Check whether docker-ce is installed
set_fact:
docker_installed: true
when: "'docker-ce' in ansible_facts.packages"