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
autoload -U add-zsh-hook | |
load-nvmrc() { | |
local node_version="$(nvm version)" | |
local nvmrc_path="$(nvm_find_nvmrc)" | |
if [ -n "$nvmrc_path" ]; then | |
local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")") | |
if [ "$nvmrc_node_version" = "N/A" ]; then | |
nvm install |
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 FSE Fuel in Gallons | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description convert fuel to gallons at FSE World goods page | |
// @author jsilva74 | |
// @match https://server.fseconomy.net/goods.jsp | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=fseconomy.net | |
// @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 FSE My Flight Totals | |
// @namespace http://tampermonkey.net/ | |
// @version 1.3.1 | |
// @description try to take over the world! | |
// @author José Silva Jr. | |
// @match https://server.fseconomy.net/myflight.jsp | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=fseconomy.net | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js |
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 Link in ICAO | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0.0 | |
// @description try to take over the world! | |
// @author You | |
// @match https://server.fseconomy.net/aircraftlog.jsp* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=fseconomy.net | |
// @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 Total w/o fuel | |
// @namespace http://tampermonkey.net/ | |
// @version 2023-12-13 | |
// @description try to take over the world! | |
// @author José Silva Jr. | |
// @match https://server.fseconomy.net/myflight.jsp | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=fseconomy.net | |
// @grant none | |
// ==/UserScript== |