This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| cd "${1:-$(pwd)}" || exit 1 | |
| R='\033[31m';G='\033[32m';Y='\033[33m';B='\033[34m';C='\033[36m';BB='\033[1m';N='\033[0m' | |
| L=100 | |
| r(){ git "$@" 2>&1; return $?; } | |
| n(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs').promises; | |
| const path = require('path'); | |
| const { promisify } = require('util'); | |
| const { exec: execCB } = require('child_process'); | |
| const { bot, pinterestSearch, addExif } = require('../lib'); | |
| const exec = promisify(execCB); | |
| const MAX = 1024 * 1024; | |
| const UK = 'KHjK6c0RN7QH6oBc1bkQAcqifiL4NE89Dsp_nSv_vJw'; | |
| const TK = 'LIVDSRZULELA'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs').promises; | |
| const path = require('path'); | |
| const { bot } = require('../lib'); | |
| class RSSManager { | |
| constructor() { | |
| this.client = null; | |
| this.dataDir = null; | |
| this.intervalMs = 60000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs').promises; | |
| const path = require('path'); | |
| const { promisify } = require('util'); | |
| const { exec: execCallback } = require('child_process'); | |
| const { bot } = require('../lib'); | |
| const exec = promisify(execCallback); | |
| const fmtTime = (s) => { | |
| if (!s || isNaN(s)) return "0"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ENV Change manager... Ej; HELPERCMD = "yarn add " | |
| const { bot, setVar, getVars } = require('../lib'); | |
| const { exec } = require('child_process'); | |
| const { promisify } = require('util'); | |
| const eP = promisify(exec); | |
| class HelperNPM { | |
| constructor() { | |
| this.installed = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs').promises; | |
| const {createReadStream, existsSync, statSync} = require('fs'); | |
| const path = require('path'); | |
| const {exec, spawn} = require('child_process'); | |
| const {promisify} = require('util'); | |
| const {execSync} = require('child_process'); | |
| const {bot, logger} = require('../lib'); | |
| const eP = promisify(exec); | |
| const LTO = 300000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const axios = require('axios'); | |
| const cheerio = require('cheerio'); | |
| const { chromium } = require('playwright'); | |
| 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 } = require('../lib'); | |
| require('dotenv').config(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs').promises; | |
| const path = require('path'); | |
| const { bot, sleep } = require('../lib'); | |
| const { restartInstance } = require('../lib/pm2'); | |
| const T1 = "Converting, Restarting Bot, wait a moment..."; | |
| const T2 = "Session Manager"; | |
| const T3 = "Add new session:"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { bot } = require("../lib/"); | |
| const axios = require("axios"); | |
| bot( | |
| { | |
| pattern: "wiki ?(.*)", | |
| desc: "Search Wikipedia for a topic", | |
| type: "info", | |
| }, | |
| async (message, match) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // dtg.js is a complement to LevanterBot: https://github.com/lyfe00011/levanter | |
| // github.com/weskerty/TGStickerDownloader | |
| // Copyright (C) 2025 Weskerty | |
| // | |
| // Este programa se distribuye bajo los términos de la Licencia Pública General Affero de GNU (AGPLv3). | |
| // Usted puede usarlo, modificarlo y redistribuirlo bajo esa licencia. | |
| // Este software se proporciona SIN GARANTÍA alguna. | |
| // Licencia completa: https://www.gnu.org/licenses/agpl-3.0.html | |
| const fs = require('fs').promises; |
NewerOlder