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
#!/usr/bin/ruby | |
# Renders Markdown content offline by converting it to HTML using GitHub's own redcarpet renderer software, and their additional CSS. | |
# Does require a download of the additional GitHub CSS to a local cache. | |
# Replaces grip for preferred offline functionality: https://github.com/joeyespo/grip/issues/35 | |
# Dependencies: redcarpet | |
require 'optparse' |
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
#!/usr/bin/env fish | |
function videoCreateThumbnail \ | |
--argument-names videoFile | |
test -z "$thumbnailSeekAmount" ; | |
and set thumbnailSeekAmount '0.10'; | |
if test -z "$videoFile" | |
errorPrint 'No video file given; exiting...'; |
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 Make Google Drive Sidebar Collapsible | |
// @namespace Teh Fishy Place | |
// @version 2024-08-02 | |
// @description Allow the Google Drive sidebar to be collapsed. | |
// @author Pysis | |
// @author Google | |
// @match https://drive.google.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.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
#!/usr/bin/env fish | |
# Author: Pysis | |
# License: MIT | |
# Link: https://gist.github.com/Pysis868/1d5a91e1c1930e79807d71c361136c32 | |
# Handle game file data, | |
# most likely hash mismatches, | |
# and handle fixing them ourselves using data from Frontier, | |
# to help the installer continue, or just direct installing. |
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
#!/usr/bin/env fish | |
# SatisfactoryAudioRenamer alternative convert script for batch/mass parsing | |
# WWISER audio file metadata to rename FModel-extracted wem audio files. | |
# Sample wem file reference lines: | |
# Other's (WWISER v20240526): | |
# wem/218091215.wem | |
# | |
# Mine (WWISER v20241210): |
OlderNewer