This file contains 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 | |
FILE=$1 | |
MESSAGE=$(cat $FILE) | |
TICKET=$(git rev-parse --abbrev-ref HEAD | grep -Eo '^(\w+\/)?(\w+[-_])?[0-9]+' | grep -Eo '(\w+[-])?[0-9]+' | tr "[:lower:]" "[:upper:]") | |
if [[ $TICKET == "" || "$MESSAGE" == "$TICKET"* ]];then | |
exit 0; | |
fi | |
echo "$TICKET: $MESSAGE" > $FILE |
This file contains 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
// Mixins | |
// -=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
// Breakpoint | |
// -------------------------------------------- | |
// Usage: | |
// @include breakpoint (min-width, 300px) { | |
// div { color:#000; } | |
// } |
This file contains 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
// String: Custom Index Of | |
String.prototype.customIndexOf = function(searchValue, fromIndex) { | |
var notfound = -1; | |
// Validating param: fromIndex | |
// fromIndex needs to be type number and needs to be an integer | |
if (typeof fromIndex !== 'number' || isNaN(fromIndex)) { | |
fromIndex = parseInt(fromIndex); | |
} |
This file contains 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
// ==UserScript== | |
// @name Github PR | |
// @namespace https://github.com/gabrihellmateus/ | |
// @version 0.1 | |
// @description Automate tasks for helping creating PRs | |
// @author Gabriel Lima (inspired by Doug Bacelar) | |
// @match https://github.com/gabrihellmateus/mercearia/pull/* | |
// ==/UserScript== | |
(function() { |
This file contains 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
# ---------------------- | |
# Aliases | |
# ---------------------- | |
# Terminal | |
alias .='cd .' | |
alias ..='cd ..' | |
alias ...='cd .. && cd ..' | |
alias ll='ls -alF' | |
alias la='ls -A' |
This file contains 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
# Add this to your .bash-aliases | |
function syncBranch() { | |
# Get your current branch | |
local CURRENT_BRANCH=$(git symbolic-ref --short HEAD) | |
local CURRENT_BRANCH="${CURRENT_BRANCH}" | |
# If you don't pass any argument it will use the default branch | |
local BASE_BRANCH="${1:-master}" |
OlderNewer