Skip to content

Instantly share code, notes, and snippets.

@timebotdon
timebotdon / sniper.json
Created October 21, 2024 16:33
Female Sniper workflow
{
"last_node_id": 59,
"last_link_id": 120,
"nodes": [
{
"id": 27,
"type": "ImpactSimpleDetectorSEGS",
"pos": {
"0": 2750,
"1": 560
@timebotdon
timebotdon / tower_workflow.json
Created October 21, 2024 04:32
tower workflow
{
"last_node_id": 87,
"last_link_id": 224,
"nodes": [
{
"id": 17,
"type": "ImageComposite+",
"pos": {
"0": 740,
"1": -270
@timebotdon
timebotdon / telegram_log_sender.sh
Last active January 17, 2025 07:49
Simple shell script to forward logs to a Telegram bot.
#!/bin/bash
## Credit: admin@Shellhacks
## Article URL: https://www.shellhacks.com/telegram-api-send-message-personal-notification-bot/
## Define Vars
token= #Telegram bot API token
chatID= #Telegram Chat ID
sendURL="https://api.telegram.org/bot$token/sendMessage"
logFile="/var/log/auth.log"