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
import './globals.css'; | |
import { Geist, Geist_Mono } from 'next/font/google'; | |
import Script from 'next/script'; | |
const geistSans = Geist({ | |
variable: '--font-geist-sans', | |
subsets: ['latin'], | |
}); | |
const geistMono = Geist_Mono({ |
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
function injectLovableButton() { | |
// Don't inject if inside iframe | |
if (window.self !== window.top) { | |
return; | |
} | |
// Check if button already exists | |
if (document.querySelector('.switchx-edit-btn')) { | |
return; | |
} |
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
console.log(localStorage.getItem("GameSettings")); |
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
import os | |
from telethon.sync import TelegramClient | |
from glob import glob | |
chat_id=-1001237141420 | |
client = TelegramClient(None, api_id=6, api_hash="eb06d4abfb49dc3eeb1aeb98ae0f581e") | |
files = "android/app/build/outputs/apk/" | |
path = glob(files + "*/*.apk") | |
if not path: |
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
from pyUltroid.fns.tools import translate | |
from threading import Thread | |
from yaml import safe_load | |
from glob import glob | |
All = glob("strings/strings/*.yml") | |
en = "strings/strings/en.yml" | |
strings = safe_load(open(en, "r")) | |
All.remove(en) |
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
# Both Telethon and Pyrogram should be Installed | |
# Made only for Educational Purpose | |
# New-dev0 (2021) | |
import struct, base64 | |
from telethon.sessions.string import StringSession | |
from telethon.sync import TelegramClient | |
from pyrogram.storage.storage import Storage | |
from pyrogram import utils |
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
# A script to get/download random quotes from | |
# QuoteFancy.com in form of text or images ... | |
import random | |
import urllib | |
from urllib import urlopen | |
from bs4 import BeautifulSoup as bs | |