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
| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| experimental: { | |
| turbo: { | |
| rules: { | |
| // Custom loader rules for Turbopack | |
| }, | |
| resolveAlias: { | |
| // Add any custom aliases here if needed | |
| }, |
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
| { | |
| "version": 7, | |
| "downloadAndroidUrl": "https://switchstoragev2.blob.core.windows.net/switch/f8984887-f7d5-4fce-a905-b7aef2902f0f.zip", | |
| "downloadIosUrl": "https://switchstoragev2.blob.core.windows.net/switch/7b3c7de5-f153-4c2a-9d27-7454a8c27936.zip" | |
| } |
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 |