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/bash | |
# This script bumps the version number of a Go project. The variable "Version" | |
# should be declared as a constant in the file that matches the name of the | |
# project. For example, a project contained in example/ should declare Version | |
# in example.go. | |
# | |
# To use: vup <level> | |
# | |
# <level> is the depth of the bump, determined by number of periods | |
# to the left of the number. For example, bumping v1 to v2 is a level |
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 | |
# This script is meant to act as a wrapper to gource, and creates a | |
# movie file (with the supplied file extension,) at 60fps and of the | |
# given number of seconds per day. | |
# | |
# Please see https://code.google.com/p/gource for information on | |
# gource. | |
# | |
if [ -z $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
#!/bin/sh | |
# This script uses git filter-branch to adjust author names and | |
# emails. No success is garuenteed. Usage is as follows: | |
# | |
# gitfix.sh --name|--email oldValue newValue | |
# | |
OLDVALUE=$2 | |
NEWVALUE=$3 |
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/bash | |
# usage: makepass <username> | |
# Requires: makepasswd | |
# This script is a peering details generator | |
# for CJDNS | |
# Functional script written by Grey | |
# Bells, whistles, and additional usefulness added by SashaCrofter |
NewerOlder