Skip to content

Instantly share code, notes, and snippets.

View arroadie's full-sized avatar

Thiago arroadie

  • Santa Clara, CA
View GitHub Profile
@arroadie
arroadie / .zshrc
Last active April 22, 2021 18:12
[WIP] zshrc con tmux y algunos helpers
# Awesome prompt (starship)
type starship > /dev/null
if [ ! $? -eq 0 ]; then
echo "Install Starship"
curl -fsSL https://starship.rs/install.sh | bash
fi
export STARSHIP_CONFIG="$HOME/.config/starship/starship.toml"
eval "$(starship init zsh)"
PATH=/opt/asdf-vm/bin:$HOME/.asdf/shims:$HOME/.krew/bin:$PATH
@arroadie
arroadie / getmemyrom.js
Created August 14, 2018 01:30
Greasemonkey - get me my rom
// ==UserScript==
// @name Emuparadise
// @version 1.0
// @description Add a direct download link
// @author Thiago Arroadie - thiago@arroadie.com
// @match https://www.emuparadise.me/*/*/*
// @grant none
// ==/UserScript==
(function() {
var current_url = window.location;