Skip to content

Instantly share code, notes, and snippets.

View deseven's full-sized avatar

Ivan Novokhatski deseven

View GitHub Profile
#!/bin/bash
# === bitbucket_commits_check ===
# checks whether there are any commits in the provided repo (all branches) since the last working day
# written by deseven, 2019
# http://deseven.info
# bitbucket base URL
bitbucketURL="https://example.com"
@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)
@deseven
deseven / MattermostUpload.sh
Last active January 20, 2024 03:14
Upload file to Mattermost (API v4)
#!/bin/bash
# your mattermost installation url
mattermost="https://example.com"
# bot token, get it in Integrations > Bot Accounts
token=abcdef123456
# set to true for debug output
debug=false