Skip to content

Instantly share code, notes, and snippets.

View mojotx's full-sized avatar
🤓

Michael Jarvis mojotx

🤓
View GitHub Profile
@mojotx
mojotx / # cvs-fast-export - 2018-03-28_13-48-54.txt
Created March 28, 2018 18:51
cvs-fast-export on macOS 10.13.3 - Homebrew build logs
Homebrew build logs for cvs-fast-export on macOS 10.13.3
Build date: 2018-03-28 13:48:54
@iamzhout
iamzhout / gist:38ad08d2d8eacda8184f0766639641a5
Created April 14, 2017 01:32
NoSleep.exe - Prevents Screensaver and PC Locking - By Mike.Langford
# original URL: https://www.symantec.com/connect/downloads/readynosleepexe-prevents-screensaver-and-pc-locking
#AutoIt3Wrapper_icon=nosleep.ico
Opt("TrayOnEventMode",1)
Opt("TrayMenuMode",1)
$AboutItem = TrayCreateItem("About")
TrayItemSetOnEvent(-1,"ReadList")
TrayCreateItem("")
@ekilah
ekilah / .gitconfig
Created August 27, 2015 23:09
Git alias to push current branch to upstream branch of the same name
[alias]
pushup = "!gitbranchname() { git symbolic-ref --short HEAD; }; gitpushupstream() { git push --set-upstream origin `gitbranchname`; }; gitpushupstream"