Skip to content

Instantly share code, notes, and snippets.

@commonquail
commonquail / unattended-upgrades.md
Last active August 29, 2015 14:16
Unattended upgrades for Linux Mint 17.1

Based on [this guide by Andew Bolster, 2015-02-06][guide]; reposted for posterity and to address a minor awk field separator oddity.

Install unattended-upgrades:

$ sudo apt-get install unattended-upgrades -y

unattended-upgrades writes to the log file

@commonquail
commonquail / .blockify_list
Last active August 29, 2015 14:08
Blockify company name list for https://github.com/mikar/blockify
AAU
Artpeople
betsafe.com
Bose
Digster
disco:wax
Dr. Oetker
Filtr
Finetunes
FRESH LIGE NU
@commonquail
commonquail / dapt.sh
Created January 5, 2014 14:01
Setup Debian D development evironment. Installs Sayol's D APT repository (http://d-apt.sourceforge.net/) and prompts to install compilers and DUB.
#!/bin/bash
# Setup a D development environment on a Debian system.
# Installs the D APT repository and prompts to install compilers DMD, LDC, and
# GDC, and package manager DUB.
# Licence: MIT/Expat.
daptsrc=http://netcologne.dl.sourceforge.net/project/d-apt/files/d-apt.list
daptlist=/etc/apt/sources.list.d/d-apt.list
wget ${daptsrc} -O ${daptlist}