Skip to content

Instantly share code, notes, and snippets.

View drfill's full-sized avatar

Fill Quazy drfill

  • NJoyX
  • Riga, Latvia
View GitHub Profile
@drfill
drfill / consul.service
Created February 13, 2018 19:01 — forked from Manc/consul.service
/etc/systemd/system/consul.service
[Unit]
Description=Consul service discovery agent
Requires=network-online.target
After=network.target
[Service]
User=consul
Group=consul
PIDFile=/run/consul/consul.pid
Restart=on-failure
@drfill
drfill / freebsd-bluetooth-mouse.txt
Created February 1, 2018 10:20
Configure FreeBSD Bluetooth Mouse
Add to /boot/loader.conf:
ng_ubt_load="YES"
Add to /etc/rc.conf:
hcsecd_enable="YES"
sdpd_enable="YES"
bthidd_enable="YES"
Reboot, or run:
@drfill
drfill / mysql_backups.sh
Last active November 8, 2017 20:44
backups
#!/bin/bash
# modify the following to suit your environment
export DB_BACKUP="/backups/mysql"
export DB_USER="debian-sys-maint"
export DB_PASSWD="password"
# title and version
echo ""
echo "Backup and rotate all mysql databases"
@drfill
drfill / dev-runner.sh
Last active October 31, 2017 22:10
dev
#!/usr/bin/env bash
# @TODO cut off to variable runargs before getopts
set -ex
host="s3.amazonaws.com"
bucket="BUCKET"
filepath="DIRECTORY/FILE_NAME"
type="s3"
directory=$(pwd)
@drfill
drfill / runner.sh
Last active October 31, 2017 22:24
executable runner (only linux)
#!/usr/bin/env bash
# @TODO cut off to variable runargs before getopts
set -e
host="s3.amazonaws.com"
bucket="BUCKET"
filepath="DIRECTORY/FILE_NAME"
type="s3"
directory=$(pwd)
@drfill
drfill / gist:c18308b6d71ee8032efda870b9be348e
Created October 26, 2017 17:58 — forked from Mindgames/gist:556dc7d1e452d0cefcb7
Amazon S3 download with Curl
#!/bin/sh
file=path/to/file
bucket=your-bucket
resource="/${bucket}/${file}"
contentType="application/x-compressed-tar"
dateValue="`date +'%a, %d %b %Y %H:%M:%S %z'`"
stringToSign="GET
${contentType}
${dateValue}
${resource}"
@drfill
drfill / upgrade_pg.sh
Created August 8, 2017 14:46 — forked from edib/upgrade_pg.sh
Upgrade PostgreSQL 9.3 to 9.6 on Ubuntu 16.04
sudo apt-get install postgresql-9.6 postgresql-server-dev-9.6 postgresql-contrib-9.6 -y
sudo su - postgres -c "psql template1 -p 5433 -c 'CREATE EXTENSION IF NOT EXISTS hstore;'"
sudo su - postgres -c "psql template1 -p 5433 -c 'CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";'"
sudo systemctl stop postgresql
sudo su - postgres -c '/usr/lib/postgresql/9.6/bin/pg_upgrade -b /usr/lib/postgresql/9.3/bin -B /usr/lib/postgresql/9.6/bin \
-d /var/lib/postgresql/9.3/main/ -D /var/lib/postgresql/9.6/main/ \
-O "-c config_file=/etc/postgresql/9.6/main/postgresql.conf" -o "-c config_file=/etc/postgresql/9.3/main/postgresql.conf" --link'
sudo apt-get remove postgresql-9.3 -y
@drfill
drfill / semaphore.py
Created June 30, 2017 21:54 — forked from mastermatt/semaphore.py
Consul Semaphore in Python
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import datetime
import json
import logging
import os
import socket
import time
@drfill
drfill / pika_native_publish.py
Created October 26, 2016 20:36 — forked from jamesdear/pika_native_publish.py
Publish 100 messages with pika twisted vs pika native
import sys
import pika
import time
pika.log.setup(color=True)
connection = None
channel = None
# Import all adapters for easier experimentation
@drfill
drfill / ssh-twisted.py
Created October 26, 2016 20:25 — forked from roman-yepishev/ssh-twisted.py
twisted ssh
#!/usr/bin/env python
import sys
import gdbm
from twisted.conch.unix import UnixSSHRealm
from twisted.cred import portal
from twisted.cred.credentials import IUsernamePassword
from twisted.cred.checkers import ICredentialsChecker
from twisted.cred.error import UnauthorizedLogin