I hereby claim:
- I am keeferrourke on github.
- I am krourke (https://keybase.io/krourke) on keybase.
- I have a public key ASAZ_FRl1jykR2lt8ZfCra7NvkslCSZS7wqtJD1nnYNIWgo
To claim this, I am signing this object:
/* place in $HOME/.mozilla/firefox/<default profile>/chrome/ | |
* you may need to create this directory | |
* | |
* credit goes to this answer on Ask Ubuntu https://askubuntu.com/questions/1035428/firefox-60-csd-window-buttons-left | |
*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
#titlebar-max { | |
-moz-box-ordinal-group: 0; | |
} |
--- | |
Language: Cpp | |
# BasedOnStyle: Google | |
AccessModifierOffset: -1 | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveAssignments: true | |
AlignConsecutiveDeclarations: true | |
AlignEscapedNewlines: Left | |
AlignOperands: true | |
AlignTrailingComments: true |
package main | |
import ( | |
"fmt" | |
"log" | |
"os" | |
"strconv" | |
) | |
func grayCode(seed []string, len int) []string { |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Copyright 2017 Keefer Rourke <[email protected]> | |
# | |
# Permission to use, copy, modify, and/or distribute this software for any | |
# purpose with or without fee is hereby granted, provided that the above | |
# copyright notice and this permission notice appear in all copies. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCNUMBERLAIMS ALL WARRANTIES WITH | |
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
# Generic makefile for a C project | |
# Written by Keefer Rourke <[email protected]> | |
# | |
# This file is Public Domain or, in places where public domain works | |
# are not recognized, licensed as CC0. Legal text: | |
# <https://creativecommons.org/publicdomain/zero/1.0/legalcode.txt> | |
# | |
# This Makefile should not rely and any GNU-specific functionality, | |
# though it is based on the GNU make documentation which is available | |
# at: <https://www.gnu.org/software/make/manual/make.html> |
#!/bin/sh | |
# Written by: Keefer Rourke <https://krourke.org> | |
# Based on AUR package <https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ttf-google-fonts-git> | |
# dependancies: fonts-cantarell, ttf-ubuntu-font-family, git | |
sudo apt-get install fonts-cantarell ttf-ubuntu-font-family git | |
srcdir="/tmp/google-fonts" | |
pkgdir="/usr/share/fonts/truetype/google-fonts" | |
giturl="git://github.com/google/fonts.git" |