Skip to content

Instantly share code, notes, and snippets.

@slowlyh
slowlyh / instagram-downloader.js
Created October 6, 2025 08:50
snippet:JavaScript:Instagram Downloader
const axios = require("axios")
const cheerio = require("cheerio")
async function igram(url) {
try {
const encoded = encodeURIComponent(url)
const res = await axios.get("https://igram.website/content.php?url=" + encoded, {
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"User-Agent": "Mozilla/5.0 (Linux; Android 10; Termux) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36"
@slowlyh
slowlyh / donghua-schedule.js
Created October 5, 2025 18:00
snippet:JavaScript:Donghua Schedule
/**
* Donghua Update Scraper by lang
* package: axios, cheerio
* official channel: https://whatsapp.com/channel/0029VafnytH2kNFsEp5R8Q3n
* usage at bottom
*/
const axios = require('axios')
const cheerio = require('cheerio')