Example:
card_name:1906814671912599552:poll_choice_images lang:en -filter:retweets
card_name:745291183405076480:broadcast -filter:retweets
| card | description |
|---|---|
| poll2choice_text_only | Poll - 2 options |
| poll3choice_text_only | Poll - 3 options |
| #!/usr/bin/env python3 | |
| import os | |
| import sys | |
| import time | |
| import json | |
| import subprocess | |
| import requests | |
| from pathlib import Path |
| #!/usr/bin/env python3 | |
| import sys | |
| import cloudscraper | |
| from bs4 import BeautifulSoup | |
| URL = "https://downdetector.com" | |
| MAX_SITES = 15 |
$ grep -P "[^\x00-\x7F]" 624.patch
+ Log.d(LOG_TAG, "Service created in PAUSED state → stopping self")
+ setUserPaused(applicationContext, true) // ⭐ TRUE FIX
+ // 1️⃣ Mark paused FIRST (single source of truth)
+ // 2️⃣ Stop all discovery providers
+ // 3️⃣ Disconnect every connected device (THIS fixes PC still connected)
+ // 4️⃣ Remove foreground notification
+ // 5️⃣ Stop the service lifecycle
+ // 6️⃣ Extra safety: ask Android to stop it too
| #!/bin/bash | |
| # requires auth_token. | |
| #auth_token="" | |
| source ~/.env-twitter | |
| screen_name=$1 | |
| usage() { echo -e "Show Twitter account location (requires auth_token)\n $0 <screen_name>"; exit 1; } | |
| [[ ! "$auth_token" || ! "$screen_name" ]] && usage |
| #!/usr/bin/env python3 | |
| import requests | |
| import json | |
| import sys | |
| import pyotp | |
| import cloudscraper | |
| # NOTE: pyotp, requests and cloudscraper are dependencies | |
| # > pip install pyotp requests cloudscraper |
| import asyncio | |
| from twikit.guest import GuestClient | |
| client = GuestClient() | |
| #client = GuestClient(proxy='http://127.0.0.1:8888') | |
| async def main(): | |
| # Activate the client by generating a guest token. | |
| guest_token = await client.activate() |