Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Show ranking in BGA
// @namespace http://tampermonkey.net/
// @version 0.3
// @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==
// ==UserScript==
// @name Meet 🎤 / 🎥
// @namespace ameboide
// @version 0.8
// @description muestra 🎤 y/o 🎥 en title, 🔈/🔉/🔊 si alguien habla, y loggea los cc
// @author ameboide
// @match https://meet.google.com/*
// @grant none
// ==/UserScript==
@ameboide
ameboide / tabletools.user.js
Last active April 17, 2024 16:12
Userscript for filtering and sorting tables
// ==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.6
// @updateURL https://gist.github.com/ameboide/368797ecaa18bb9ac11f866e12156c95/raw/tabletools.user.js
// ==/UserScript==
@ameboide
ameboide / .bashrc
Created December 18, 2015 20:27
para hacer hotfixes y releases con `hotfix` y `release` y no olvidarse de la version y el changelog
#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 $*
@ameboide
ameboide / .bashrc
Created March 22, 2013 15:07
aliases y scripts para git y hubflow
#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(){