This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 1, | |
"notes": "", | |
"documentation": "\"This file is a QMK Configurator export. You can import this at <https://config.qmk.fm>. It can also be used directly with QMK's source code.\n\nTo setup your QMK environment check out the tutorial: <https://docs.qmk.fm/#/newbs>\n\nYou can convert this file to a keymap.c using this command: `qmk json2c {keymap}`\n\nYou can compile this keymap using this command: `qmk compile {keymap}`\"\n", | |
"keyboard": "dztech/dz60rgb_ansi/v2", | |
"keymap": "pv-custom-3", | |
"layout": "LAYOUT_60_ansi", | |
"layers": [ | |
[ | |
"KC_GESC", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '2.3' | |
x-etcd: &etcd | |
image: quay.io/coreos/etcd:v3.2.17 | |
networks: | |
- etcd | |
x-environment: &env | |
ETCD_LISTEN_PEER_URLS: "http://0.0.0.0:2380" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page | |
# and in the NixOS manual (accessible by running ‘nixos-help’). | |
{ config, pkgs, ... }: | |
let | |
in | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
set -eu | |
install_partition=$1 | |
# confirm we have internet | |
ping google.com | |
# make sure clock is up to date |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git | |
alias 'gst' 'git status' | |
alias 'gco' 'git checkout' | |
alias 'gd' 'git diff' | |
alias 'gdc' 'git diff --cached' | |
alias 'glol' "git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
# docker | |
alias 'fig' 'docker-compose' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
apt-get update | |
apt-get upgrade -y | |
apt-get install -y xorg awesome awesome-extra | |
# clean up | |
apt-get autoclean | |
apt-get autoremove |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- xmobar config used by Vic Fryzel | |
-- Author: Vic Fryzel | |
-- http://github.com/vicfryzel/xmonad-config | |
-- This is setup for dual 1920x1080 monitors, with the right monitor as primary | |
Config { | |
font = "xft:Fixed-8", | |
bgColor = "#000000", | |
fgColor = "#ffffff", | |
position = Static { xpos = 0, ypos = 0, width = 1050, height = 16 }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
web: unicorn -c /var/redmine/src/config/unicorn.rb -E PRODUCTION | |
email_worker: RAILS_ENV=production bundle exec rake support:fetch_pop_emails host=xxx username=xxxx password=xxx every=60 | |
ruote_worker: RAILS_ENV=production bundle exec rake support:run_email_worker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update | |
apt-get upgrade -y | |
ln -sf /usr/share/zoneinfo/Australia/Melbourne /etc/localtime |