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
// ==UserScript== | |
// @name Show ranking in BGA | |
// @namespace http://tampermonkey.net/ | |
// @version 0.4 | |
// @description Show current game ranking | |
// @author ameboide | |
// @match https://boardgamearena.com/*?table=* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=boardgamearena.com | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Meet 🎤 / 🎥 | |
// @namespace ameboide | |
// @version 0.11 | |
// @description muestra 🎤 y/o 🎥 en title, 🔈/🔉/🔊 si alguien habla, y loggea los cc | |
// @author ameboide | |
// @match https://meet.google.com/* | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name TableTools | |
// @namespace ameboide | |
// @author ameboide | |
// @description Adds filters (ctrl+shift+click), sorting (ctrl+alt+click) and stats (ctrl+alt+shift+click) to tables | |
// @include * | |
// @version 1.7 | |
// @updateURL https://gist.github.com/ameboide/368797ecaa18bb9ac11f866e12156c95/raw/tabletools.user.js | |
// ==/UserScript== |
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
#log de commits locales que no se han pusheado | |
alias gl='git log --branches --not --remotes --decorate' | |
alias gs='git status' | |
alias gf='git fetch origin' | |
alias gd='git difftool --tool=meld -d HEAD &' | |
alias ga='git add -u .;git add .' | |
alias gb='git branch -a' | |
gr(){ | |
git reset $* |
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
#log de commits locales que no se han pusheado | |
alias gl='git log --branches --not --remotes --decorate' | |
alias gs='git status' | |
alias gf='git fetch origin' | |
gco(){ | |
git commit -m "$*" | |
} | |
gc(){ |