Skip to content

Instantly share code, notes, and snippets.

@roydq
roydq / .tmux.conf
Created October 6, 2017 15:12
tmux
# Start with 1 not 0
set -g base-index 1
# Automatic window title
set-window-option -g automatic-rename on
set-option -g set-titles on
# Dunno
set -g status-keys vi
set -g history-limit 10000
@roydq
roydq / ubuntu_unattended_upgrades_gmail.markdown
Last active February 2, 2024 17:01 — forked from dwilkie/ubuntu_unattended_upgrades_gmail.markdown
Unattended upgrades on Ubuntu 14.04 with email notifications

Getting Started

Do yourself a favor and login as root to save yourself some time and headaches:

$ sudo su -

Install unattended-upgrades:

@roydq
roydq / application_controller.rb
Created January 4, 2013 04:45
ApplicationController test example
class ApplicationController < ActionController::Base
def something
'derp'
end
end