Skip to content

Instantly share code, notes, and snippets.

View mojotx's full-sized avatar
🤓

Michael Jarvis mojotx

🤓
View GitHub Profile
@mojotx
mojotx / # gettext - 2020-04-24_12-31-11.txt
Created April 24, 2020 18:46
gettext on macOS 10.15.4 - Homebrew build logs
Homebrew build logs for gettext on macOS 10.15.4
Build date: 2020-04-24 12:31:11
@mojotx
mojotx / # gettext - 2020-04-24_12-31-11.txt
Created April 24, 2020 18:45
gettext on macOS 10.15.4 - Homebrew build logs
Homebrew build logs for gettext on macOS 10.15.4
Build date: 2020-04-24 12:31:11
@mojotx
mojotx / # ssh-copy-id - 2019-04-22_09-17-18.txt
Created April 22, 2019 14:18
ssh-copy-id on macOS 10.14.4 - Homebrew build logs
Homebrew build logs for ssh-copy-id on macOS 10.14.4
Build date: 2019-04-22 09:17:18
@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
@mojotx
mojotx / gist:40a30925d9a44ec3e6d9cde8d902474a
Created March 10, 2018 23:20 — forked from iamzhout/gist:38ad08d2d8eacda8184f0766639641a5
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("")
@mojotx
mojotx / git-mv-with-history
Created September 22, 2017 16:39 — forked from emiller/git-mv-with-history
git utility to move/rename file or folder and retain history with it.
#!/bin/bash
#
# git-mv-with-history -- move/rename file or folder, with history.
#
# Moving a file in git doesn't track history, so the purpose of this
# utility is best explained from the kernel wiki:
#
# Git has a rename command git mv, but that is just for convenience.
# The effect is indistinguishable from removing the file and adding another
# with different name and the same content.
@mojotx
mojotx / SSLPoke.java
Created March 21, 2017 21:25 — forked from 4ndrej/SSLPoke.java
Test of java SSL / keystore / cert setup. Check the commet #1 for howto.
import javax.net.ssl.SSLSocket;
import javax.net.ssl.SSLSocketFactory;
import java.io.*;
/** Establish a SSL connection to a host and port, writes a byte and
* prints the response. See
* http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services
*/
public class SSLPoke {
public static void main(String[] args) {