Skip to content

Instantly share code, notes, and snippets.

View Zyxz01's full-sized avatar

Zyxz01

  • Joined Oct 1, 2025
View GitHub Profile
@Zyxz01
Zyxz01 / setname.js
Created October 5, 2025 04:25
Ganti Nama Telegram Bot Dengan Bot Token
const axios = require("axios")
async function gantiNama(token, name) {
try {
let post = await axios.post(`https://api.telegram.org/bot${token}/setMyName`, { name })
if (post.data.ok === true) {
console.log("succes")
} else {
console.log("failed")
}
@Zyxz01
Zyxz01 / gag.js
Created October 4, 2025 09:44
Scrape Grow a Garden Stock
/*
Scrape Gag Stock By Zyxz
My WhatsApp Chanel: https://whatsapp.com/channel/0029VbAeDDDL7UVUJ10izu3i
Please Gift Star For My Github🥰
*/
const axios = require("axios")
const cheerio = require("cheerio")
async function getgag() {