Skip to content

Instantly share code, notes, and snippets.

View PHLAK's full-sized avatar
Coffee... always coffee...

Chris Kankiewicz PHLAK

Coffee... always coffee...
View GitHub Profile
@PHLAK
PHLAK / README.md
Created May 7, 2020 20:29
Custom Bash Color Scheme
Color Base16 (ish)
Dark Gray #4A4848
Red #AB4642
Green #95B56C
Yellow #F7CA88
Blue #7C98C2
Magenta #B68BBA
Cyan #86C1B9
Light Gray #D5D3D3
@PHLAK
PHLAK / README.md
Last active March 30, 2019 07:02
Restic Installation & Configuration

Install the pre-compiled Restic binary.

curl --silent --location https://github.com/restic/restic/releases/download/v0.9.4/restic_0.9.4_linux_amd64.bz2 | bzip2 --decompress \
| sudo tee /usr/bin/restic > /dev/null && sudo chmod +x /usr/bin/restic

Backup:

source /etc/restic/config && sudo -E restic backup --option b2.connections=10 --exclude-caches --exclude-file /etc/restic/excludes.list /home /etc

Cleanup:

@PHLAK
PHLAK / docker-compose.yaml
Created June 1, 2018 21:13
Plex Docker compose file
version: '2'
services:
plex-media-server:
container_name: plex-media-server
image: plexinc/pms-docker
environment:
PLEX_CLAIM: [YOUR_TOKEN_HERE]
TZ: America/Phoenix
network_mode: host
@PHLAK
PHLAK / stylesheet.css
Last active May 26, 2020 17:06
Gnome Switcher stylesheet (Ubuntu 20.04 theme)
.switcher-box-layout {
background-color: #323030;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(24, 28, 32, .8);
color: #AAA;
font-family: Ubuntu, sans-serif;
margin-top: 100px;
overflow: hidden;
}
@PHLAK
PHLAK / phpmd.xml
Created September 19, 2017 17:57
PHPMD ruleset
<?xml version="1.0"?>
<ruleset
name="My first PHPMD rule set"
xmlns="http://pmd.sf.net/ruleset/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd"
>
<description>
<rule ref="rulesets/cleancode.xml">
@PHLAK
PHLAK / docker-compose.yml
Created July 25, 2017 22:27
Docker compose file for transmission-daemon + OpenVPN
version: '2'
services:
transmission-vpn:
container_name: transmission-vpn
image: phlak/openvpn
ports:
- '9091:9091'
- '6771:6771'
volumes:
@PHLAK
PHLAK / .php_cs.dist
Last active May 16, 2017 03:14
Custom .php_cs.dist file for php-cs-fixer
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('vendor')
->in(__DIR__);
return PhpCsFixer\Config::create()
->setRules([
'@PSR1' => true,
'@PSR2' => true,
@PHLAK
PHLAK / test.php
Created September 19, 2016 20:40
Testing the difference between PHP's "??" and "?:" operators.
<?php
unset($foo);
var_dump($foo ?? 'bar'); // 'bar'
var_dump($foo ?: 'bar'); // 'bar' (PHP Notice: Undefined variable: foo ...)
$foo = 'foo';
var_dump($foo ?? 'bar'); // 'foo'
var_dump($foo ?: 'bar'); // 'foo'
@PHLAK
PHLAK / autoexec.cfg
Last active February 15, 2024 00:03
Custom Counter-Strike 2 autoexec.cfg
// -------------------------------------------------------------------------- //
// -----| INTERFACE AND INPUT |---------------------------------------------- //
// -------------------------------------------------------------------------- //
cl_showloadout 1
cl_teamid_overhead_mode 1
engine_no_focus_sleep 0
r_show_build_info 1
m_rawinput 1
@PHLAK
PHLAK / twrp_backup.sh
Last active December 27, 2018 23:19
TWRP Backup Script
#!/usr/bin/env bash
adb reboot recovery
adb wait-for-device
adb shell twrp backup SDBO
adb reboot