Skip to content

Instantly share code, notes, and snippets.

View bretonics's full-sized avatar
:octocat:
Decoding the world, one line at a time

Andrés Bretón bretonics

:octocat:
Decoding the world, one line at a time
View GitHub Profile
#!/bin/sh
#
# Adapted from original source: https://bitbucket.org/snippets/atlassian/qedp7d
# Docs: https://git-scm.com/docs/githooks
# git prepare-commit-msg hook for automatically prepending an issue key
# from the start of the current branch name to commit messages.
COMMIT_MSG_FILE=$1 # $1 is the file name containing log message
COMMIT_SOURCE=$2 # $2 is the commit message source (message | template | squash | commit)
@bretonics
bretonics / .bashrc
Last active April 3, 2021 15:16
Personalized .bashrc
# .bashrc - interactive, non-login shells
# Template from https://gist.github.com/bretonics/f3b61fcd1fa946df6dac
#-----------------------------------------------------------------------------------------------
# GLOBAL SOURCE
# Global Definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
@bretonics
bretonics / .bash_profile
Last active April 3, 2021 15:18
Modified .bash_profile
# .bash_profile - login shells
# Template from https://gist.github.com/bretonics/5176d35739a0f4e7acfd
#-----------------------------------------------------------------------------------------------
# SOURCE
# Get Aliases and Functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
@bretonics
bretonics / crontab
Last active May 25, 2022 23:20
Crontab template
# Crontab - Crontab template to automate virtual world
# Template from https://gist.github.com/bretonics/9a48a3b9ef32d93d15f45c3f007550b4
# Andrés Bretón ~ http://andresbreton.com, dev@andresbreton.com
# ==============================================================================
# MIN(0-59) HOUR(0-23) DOM(1-31) M(1-12) DOW(0-6) CMD
# |__________|_________|_______|________|______ |__MINUTE of
# |_________|_______|________|______ |__HOUR of
@bretonics
bretonics / Brewfile
Last active July 25, 2022 02:23
Homebrew and Mac App Assets
tap "brewsci/bio"
tap "brewsci/science"
tap "heroku/brew"
tap "homebrew/autoupdate"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-fonts"
tap "homebrew/cask-versions"
tap "homebrew/core"
tap "homebrew/services"
@bretonics
bretonics / Brewfile
Last active September 11, 2022 14:51
macOS Tips and Tricks
tap "brewsci/bio"
tap "brewsci/science"
tap "heroku/brew"
tap "homebrew/autoupdate"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-fonts"
tap "homebrew/cask-versions"
tap "homebrew/core"
tap "homebrew/services"
@bretonics
bretonics / .shell_colors
Created April 3, 2021 12:43
Shell Color Output Variables
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# COLOR OUTPUT (3/4 bit version)
NC="\033[0m" # Color reset
# Normal (0;)
BLACK="\033[0;30m"
RED="\033[0;31m"
GREEN="\033[0;32m"
YELLOW="\033[0;33m"
BLUE="\033[0;34m"