Skip to content

Instantly share code, notes, and snippets.

View Sh4yy's full-sized avatar
🍎
Busy eating Apples.

Shayan Sh4yy

🍎
Busy eating Apples.
View GitHub Profile
@Sh4yy
Sh4yy / clx.go
Created April 25, 2024 20:39
Generate CLI commands for common tasks.
package main
import (
"context"
"errors"
"fmt"
"io"
"log"
"os"
"runtime"
@Sh4yy
Sh4yy / TelegramLogger.py
Created May 5, 2020 23:12
A simple Telegram Logging Script
from enum import Enum
import requests
class Condition(Enum):
WARNING = "⚠️"
MESSAGE = "🤖"
INFO = "💬"