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
function varclear --description 'Remove duplicates from environment variable' | |
if test (count $argv) = 1 | |
set -l newvar | |
set -l count 0 | |
for v in $$argv | |
if contains -- $v $newvar | |
set count (math $count+1) | |
else | |
set newvar $newvar $v | |
end |
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
#!/bin/bash | |
# insert your last.fm api key (can be obtained by creating an app here - https://www.last.fm/api/account/create) | |
# change output_file and artist_play_limit how you like | |
# you'll also need to install jq | |
# USAGE: | |
# cat artists.txt | ./tms-obscure-artists.sh | |
lastfm_api_key="" |
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
# Very simple bot for Tap Ninja | |
# (https://store.steampowered.com/app/1891700/Tap_Ninja__Idle_game/) | |
# made by deseven, 2023 | |
# The bot will perform building/tech upgrades every 30 seconds and | |
# ascention every 40 minutes (could be adjusted, see RUN_TIME below), | |
# very helpful for getting enough elixir on later stages of the game. | |
# Prerequisites: | |
# - Windows (should be easily portable to other OS) |
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
#!/bin/bash | |
# a wrapper for quick web-friendly video convertions using ffmpeg | |
# mostly intended to be used on macOS (hence videotoolbox hardware acceleration) | |
# info & updates: https://gist.github.com/deseven/f3dc4ae7141babeeac860a4305c34122 | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
BLUE='\033[0;34m' |
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
""" | |
title: FLUX Schnell Manifold Function for Black Forest Lab Image Generation Models | |
author: Balaxxe, credit to mobilestack and bgeneto | |
author_url: https://github.com/jaim12005/open-webui-flux-1.1-pro-ultra | |
funding_url: https://github.com/open-webui | |
version: 1.5 | |
license: MIT | |
requirements: pydantic>=2.0.0, aiohttp>=3.8.1 | |
environment_variables: | |
- REPLICATE_API_TOKEN (required) |
OlderNewer