Skip to content

Instantly share code, notes, and snippets.

View kgust's full-sized avatar

Kevin Gustavson kgust

  • Vanderbilt University Medical Center
  • Nashville, Tennessee USA
View GitHub Profile
@kgust
kgust / gist:5300d89bfcc2b1158dad
Last active November 27, 2018 13:52
cVim Options
" old cVimrc
" let blacklists = ["https://mail.google.com/* gi gt j k l o r x y #"]
" blacklists prefixed by '@' act as a whitelist
let blacklists = ["https://mail.google.com/*", "*://mail.google.com/*", "@https://mail.google.com/mail/*"]
let mapleader = ","
@kgust
kgust / parse-composer-lock.sh
Last active October 12, 2023 18:19
Using jq to parse composer.lock
<composer.lock jq '.packages[] | [.name, .version]' | less
@kgust
kgust / things I want to remember SN.txt
Created June 5, 2015 14:36
Things I want to remember from Straight North
Use `excel_cmp` to make sure that you don't have deprecations when changing an Excel report.
@kgust
kgust / caffeine-off.pdf
Last active August 29, 2015 14:24
My Hammerspoon configuration
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript">
function login_flip()
{
$("#loginform").css({"-webkit-transition":"-webkit-transform 0.9s","transition":" transform 0.9s"});
$("#loginform").css({"-moz-transform":"scaleX(1)","-o-transform":"scaleX(1)","-webkit-transform":"scaleX(1)","transform":"scaleX(1)"});
@kgust
kgust / LICENSE
Last active August 29, 2015 14:27 — forked from ourmaninamsterdam/LICENSE
Arrayzing - The JavaScript array cheatsheet
The MIT License (MIT)
Copyright (c) 2015 Justin Perry
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
@kgust
kgust / gpg-agent.conf
Created April 12, 2016 15:20 — forked from nl5887/gpg-agent.conf
Using GPG Agent on OS-X
launchctl unload -w -S Aqua /System/Library/LaunchAgents/gpg.agent.daemon.plist
launchctl load -w -S Aqua /System/Library/LaunchAgents/gpg.agent.daemon.plist
@kgust
kgust / Install Oracle 11g.md
Last active April 26, 2016 14:11
Install Oracle 11g (contains tablespace resize)
@kgust
kgust / Development Tools.md
Last active May 9, 2016 02:33
Development Tools
mail:
image: schickling/mailcatcher
ports:
- "1080:1080"