Bingo Checker PWA
Payment Landing Page
Cash App
6717872345 | Facebook | Linktree
Supposed to be B card with 9999 numbers
10:17 AM now do this by 10:20 AM
#!/bin/bash
# List of Docomo prefixes (update as needed)
prefixes=(“090” “080” “070” “0901” “0801” “0701” “787”)
# Output directory
output_dir=”$HOME/Desktop/docomo_numbers”
mkdir -p “$output_dir”
# Generate numbers and write to individual files
for prefix in “${prefixes[@]}”; do
output_file=”$output_dir/${prefix}.txt”
: > “$output_file”
for i in $(seq -w 0000 9999); do
echo “${prefix}${i}” >> “$output_file”
done
done
echo “✅ Files named by prefix created in: $output_dir”
Free one month for both of us
I signed up for Regal Unlimited to see any movie, anytime with no weekly limits, plus 10% off concessions. You should check it out. If you use my code, we both get a Free Month of Unlimited movies! Enter code X9TYGWG7
Scriptable scraper to telegram
// 📘 Guam Phone Lookup with Telegram Support
// Ray’s Scriptable version – no Python needed
// Config section – edit this!
const TELEGRAM_BOT_TOKEN = ‘123456789:ABCdefGHIjkLmnopQRStuvWxYZ’; // <– Replace with your bot token
const TELEGRAM_CHAT_ID = ‘987654321’; // <– Replace with your target chat ID (user/group/channel)
// Prompt user
let name = await Prompt.text(“Search name”)
let pageCount = parseInt(await Prompt.text(“Number of pages to search (1–5)”), 10) if (!name || isNaN(pageCount)) return new Alert(“Missing input”).present()
let results = []
let baseURL = “https://www.guamphonebook.com/whitepages”
for (let p = 1; p <= pageCount; p++) {
let url = `${baseURL}?name=${encodeURIComponent(name)}&page=${p}` let req = new Request(url)
req.headers = { “User-Agent”: “ScriptableBot/1.0” }
let html = await req.loadString()
let matches = […html.matchAll(/listing-name[^>]*>(.*?)<\/.*?listing-phone[^>]*>(.*?))] for (let m of matches) results.push({ name: m[1].trim(), phone: m[2].trim() }) }
if (results.length === 0) return new Alert(“No results found.”).present()
QuickLook.present(results, true)
// Save JSON to iCloud
let fm = FileManager.iCloud()
let folder = fm.joinPath(fm.documentsDirectory(), “GuamScraper”) if (!fm.fileExists(folder)) fm.createDirectory(folder)
let outPath = fm.joinPath(folder, `${name}_lookup.json`)
await fm.writeString(outPath, JSON.stringify(results, null, 2)) console.log(“Saved to: ” + outPath)
// Send to Telegram (optional)
let msgBody = results.map(r => `• ${r.name} — ${r.phone}`).join(‘\n’)
let tgReq = new Request(`https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage`) tgReq.method = “POST”
tgReq.headers = { “Content-Type”: “application/json” }
tgReq.body = JSON.stringify({
chat_id: TELEGRAM_CHAT_ID,
text: `📇 Guam Results for “${name}”:\n${msgBody}`,
parse_mode: “Markdown”
})
let response = await tgReq.loadJSON()
console.log(“Telegram response:”, response)
Scriptable Thursday morning
// 📘 Guam White Pages Lookup via Scriptable
// by Ray’s request – GUI + multi-page + JSON/CSV export
let query = await Prompt.text(“Enter a name to search (e.g. camacho)”) let pages = parseInt(await Prompt.text(“How many pages to fetch? (1-5)”), 10)
if (!query || isNaN(pages)) {
return new Alert(“Missing info”).present()
}
let results = []
let baseURL = ‘https://www.guamphonebook.com/whitepages‘
for (let i = 1; i <= pages; i++) {
let url = `${baseURL}?name=${encodeURIComponent(query)}&page=${i}` let req = new Request(url)
req.headers = { “User-Agent”: “ScriptableBot/1.0” }
let html = await req.loadString()
let matches = […html.matchAll(/listing-name[^>]*>(.*?)<\/.*?listing-phone[^>]*>(.*?))]
for (let match of matches) {
results.push({ name: match[1].trim(), phone: match[2].trim() }) }
}
if (results.length === 0) {
return new Alert(“No results found.”).present()
}
let menu = new UITable()
results.forEach(item => {
let row = new UITableRow()
row.addText(`${item.name}`, item.phone)
menu.addRow(row)
})
QuickLook.present(results, true)
menu.present()
// Optional: Save JSON to Files
let file = FileManager.iCloud().joinPath(FileManager.iCloud().documentsDirectory(), `${query}_guam.json`) await FileManager.iCloud().writeString(file, JSON.stringify(results, null, 2)) console.log(“Saved to: ” + file)