Skip to content

Instantly share code, notes, and snippets.

View imto1's full-sized avatar
💭
Live the moments

S. Vahid Hosseini imto1

💭
Live the moments
View GitHub Profile
@ssbostan
ssbostan / backup.sh
Created May 3, 2020 15:52
Create a backup and Delete old backups
#!/bin/bash
tar -zcf /backups/backup-$(date +%Y%m%d).tar.gz --absolute-names /data
rm -f /backups/backup-$(date -d 'now - 7 days' +%Y%m%d).tar.gz
@gowhari
gowhari / stop-others-bot.py
Created August 12, 2018 06:01
telegram bot that prevents adding bots to group by non admin members, only admins are able to add bots
import json
import time
import logging
import telepot
import telepot.loop
thisbot_token = 'YOUR-BOT-TOKEN'