Skip to content

Instantly share code, notes, and snippets.

View deseven's full-sized avatar

Ivan Novokhatski deseven

View GitHub Profile
@deseven
deseven / varclear.fish
Created December 26, 2019 23:33
removes dupes from fish variable (taken from fish issue #296)
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
@deseven
deseven / tms-obscure-artists.sh
Last active October 7, 2020 01:22
A simple script that filters the list of artists by checking their last.fm playcount (written for TMS search)
#!/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=""
@deseven
deseven / BotNinja.py
Created July 7, 2023 14:12
Very simple bot for Tap Ninja
# 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)