This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# frozen_string_literal: true | |
# | |
# INSTALLATION | |
# | |
# ln -s ${PWD}/git-hub $(brew --prefix)/bin/ | |
# sudo ln -s ${PWD}/git-hub /usr/local/bin/ | |
# | |
# CONFIGURATION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# INSTALLATION | |
# | |
# ln -s ${PWD}/git-stash-switcher $(brew --prefix)/bin/ | |
# | |
# COMING SOON! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby -r semantic -r consenter | |
# frozen_string_literal: true | |
# | |
# INSTALLATION | |
# | |
# ln -s ${PWD}/rbenv-upgrade $(brew --prefix)/bin/ | |
# sudo ln -s ${PWD}/rbenv-upgrade /usr/local/bin/ | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# INSTALLATION | |
# | |
# ln -s ${PWD}/subst $(brew --prefix)/bin/ | |
# sudo ln -s ${PWD}/subst /usr/local/bin/ | |
# | |
# ALTERNATIVE IMPLEMENTATION | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# INSTALLATION | |
# | |
# ln -s ${PWD}/git-recurse $(brew --prefix)/bin/ | |
# sudo ln -s ${PWD}/git-recurse /usr/local/bin/ | |
# | |
( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# INSTALLATION | |
# | |
# ln -s ${PWD}/git-subst $(brew --prefix)/bin/ | |
# sudo ln -s ${PWD}/git-subst /usr/local/bin/ | |
# | |
FROM="$1" ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rubocop:disable all | |
# https://github.com/pvdb/consenter | |
require 'io/console' | |
class Consenter # :nodoc: | |
VALID_RESPONSES = { | |
'y' => 'yes to this', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# INSTALLATION | |
# | |
# ln -s ${PWD}/git-rev-diff $(brew --prefix)/bin/ | |
# sudo ln -s ${PWD}/git-rev-diff /usr/local/bin/ | |
# | |
# check command-line options |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |