Skip to content

Instantly share code, notes, and snippets.

View Infinitay's full-sized avatar

infinity Infinitay

  • United States
  • 14:39 (UTC -05:00)
View GitHub Profile
@sinceohsix
sinceohsix / Installing LiveContainer+Sidestore.md
Last active December 27, 2025 23:55
Installing LiveContainer+SideStore from start to finish.

A full rewrite of this guide is coming verrrry soon.

This guide was written as a fast way to help people get back some of their sideloaded apps after the mass revocation wave a few months back. Thanks to some new software this process has gotten a LOT simpler and faster. This guide was still being shared around which was causing confusion that I was unaware of (I'm sorry about that 😥), to try and fix this, I have written a completely new guide that is much easier to read and follow.

I am proof-reading it and adding final touches then it will be ready to be released again here so you can continue to share it with people, and I will try my best to keep it up to date as new software is released.

Thank you everyone for actually using this and sharing it, I was unaware of how "popular" it had gotten, so I hope this new guide can help you all out even more than the last one.

NOTE: Over time, old comments will be deleted as they will no longer apply here at all, they will simply cause confusion.

import requests
import threading
import queue
import re
from dataclasses import dataclass
from typing import List, Optional
import time
import os
from urllib.parse import urlparse
@ongkiii
ongkiii / IPA-Sources.md
Last active December 29, 2025 16:02
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
@ph33nx
ph33nx / WinMasterBlocker.bat
Last active December 28, 2025 22:51
Block All Adobe .exe files via Firewall on Windows Using Batch Script | Stop adobe apps to access internet
:: ################################################################
:: ## 🔥 WinMasterBlocker 🔥 #
:: ################################################################
:: # Author: https://github.com/ph33nx #
:: # Repo: https://github.com/ph33nx/WinMasterBlocker #
:: # #
:: # This script blocks inbound/outbound network access #
:: # for major apps like Adobe, Autodesk, Corel, Maxon, #
:: # and more using Windows Firewall. #
:: # #
@danirukun
danirukun / whisper-transcribe.bash
Last active September 2, 2025 08:37
Transcribe (and translate) any VOD (e.g. from Youtube) using Whisper from OpenAI and embed subtitles!
#!/usr/bin/env bash
# Small shell script to more easily automatically download and transcribe live stream VODs.
# This uses YT-DLP, ffmpeg and the CPP version of Whisper: https://github.com/ggerganov/whisper.cpp
# Use `./transcribe-vod help` to print help info.
# MIT License
# Copyright (c) 2022 Daniils Petrovs
@sindresorhus
sindresorhus / esm-package.md
Last active December 25, 2025 12:39
Pure ESM package

Pure ESM package

The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.

This means you have the following choices:

  1. Use ESM yourself. (preferred)
    Use import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.
  2. If the package is used in an async context, you could use await import(…) from CommonJS instead of require(…).
  3. Stay on the existing version of the package until you can move to ESM.
@AmazingTurtle
AmazingTurtle / how-to-restore.md
Last active November 19, 2025 20:35
restore access to unifi controller

Restore access to a unifi controller

When you are unable to login to the unifi controller or forgot admin password, you can restore access using SSH and manipulating mongodb directly.

Warning

Do not uninstall unifi controller - most of the data is not stored in mongodb. In case you thought a mongodb backup would be sufficient, you may have fucked up already, just like me. However I managed to write this "tutorial" for anyone to not run into the same trap.

Apparently this guide no longer works with recent unifi controller versions (starting nov/dec 2022). Since I no longer use unifi hardware in my home system, I can not update the guide myself. In case you've gotten here to recover your data, you're likely doomed. But giving it a try won't hurt anyway, therefore: good luck.

You will want to use your BTTV emote slots for animated emotes as FFZ only has static emotes.

You must login with your Twitch account to manage your emotes.

  • You can see your emotes in My Emotes.
  • You can add a Twitch or Discord bot, or subscribe to BTTV Pro, in My Channel.
  • You can browse and search emotes to add to your channel in Sharing.

Normally you have 5 shared emote slots which means public emotes from the shared library, and 5 local channel emotes which are for your channel only.

@jackblk
jackblk / squid_proxy_tutorial.md
Last active December 20, 2025 20:00
Tutorial on how to setup a squid proxy with authentication.

Note

This tutorial is for Ubuntu & Squid3. Use AWS, Google cloud, Digital Ocean or any services with Ubuntu to follow this tutorial.

Install squid & update

sudo apt-get update
sudo apt-get install squid3
sudo apt-get install apache2-utils
@wowkin2
wowkin2 / Readme.md
Last active September 26, 2024 09:28
Solution: "Exceeded 4 calls per second for api client" Python Shopify API - shopify_python_api

Solution for API call limit "shopify_python_api"

If you are using Python Shopify API and getting following error
"Exceeded 4 calls per second for api client. Reduce request rates to resume uninterrupted service."
but want your script to continue working with some timeout after that,
you can use following script from shopify_limits_patch.py.

For that just copy shopify_limits_patch.py to your project and import shopify_limits_patch.

Or if you want to call it implicitly import it, remove last line patch_shopify_with_limits()
and call it before all your shopify calls.