Skip to content

Instantly share code, notes, and snippets.

View SaeedX302's full-sized avatar
πŸ’­
Enjoying My Journy

ΰΌ―π™ŽΰΈ„ΰ«―π™€π˜Ώβœ˜πŸ«€ SaeedX302

πŸ’­
Enjoying My Journy
View GitHub Profile
@SaeedX302
SaeedX302 / Owner nenu.js
Last active June 8, 2025 20:32 — forked from mistershubhamkumar/Own*MENU.js
Levanter own menu
const { bot, getBuffer, jidToNum } = require('../lib/');
const { VERSION } = require('../config');
const { textToStylist, getUptime, getRam } = require('../lib/');
const url1 = 'https://i.ibb.co/Fkp6Px5j/0c128bdc34a377ee07a7526d21b305bb.gif';
const url2 = 'https://i.ibb.co/MDjMZ5Yk/70575940daf4db8bd347046de0fa3372.gif';
bot(
{
pattern: 'nenu ?(.*)',
@SaeedX302
SaeedX302 / M-Makki-gdrive-dl.js
Last active June 4, 2025 13:35 — forked from tayyabali8677/M-Makki-gdrive-dl.js
Download gdrive file
const { bot, isUrl, getImgUrl } = require('../lib/')
bot(
{
pattern: 'mdrive ?(.*)',
desc: 'Download from Google Drive link',
type: 'download',
},
async (x, y) => {
y = y || x.reply_message.text;
@SaeedX302
SaeedX302 / DTG.js
Last active June 4, 2025 12:21 — forked from weskerty/DTG.js
Telegram Sticker Downloader
const fs = require('fs').promises;
const path = require('path');
const os = require('os');
const { promisify } = require('util');
const { exec: execCallback } = require('child_process');
const { bot, isUrl, sticker, addExif } = require('../lib');
require('dotenv').config();
const exec = promisify(execCallback);
class DownloadQueue {