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:
| #!/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" |
| # 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/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 |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "os" | |
| "strconv" | |
| ) | |
| func grayCode(seed []string, len int) []string { |
| --- | |
| Language: Cpp | |
| # BasedOnStyle: Google | |
| AccessModifierOffset: -1 | |
| AlignAfterOpenBracket: Align | |
| AlignConsecutiveAssignments: true | |
| AlignConsecutiveDeclarations: true | |
| AlignEscapedNewlines: Left | |
| AlignOperands: true | |
| AlignTrailingComments: true |
| /* 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; | |
| } |
| #!/bin/bash | |
| # | |
| # latexcompile | |
| # Keefer Rourke <[email protected]> | |
| # | |
| # To the extent possible under law, the person who associated CC0 with | |
| # latexcompile has waived all copyright and related or neighboring rights | |
| # to latexcompile. | |
| # | |
| # See <http://creativecommons.org/publicdomain/zero/1.0/> for a copy of |
| #!/usr/bin/env bash | |
| # exit codes | |
| EX_OK=0 | |
| EX_ERR=1 | |
| EX_USAGE=64 | |
| # default argument values | |
| since_year=2015 | |
| until_year=$(date +%Y) |
| import org.objectweb.asm.Opcodes | |
| data class AccessModifier(val code: Int, val name: String) | |
| enum class ClassPart { | |
| CLASS, | |
| METHOD, | |
| FIELD, | |
| MODULE, | |
| MODULE_REQUIRES |