Skip to content

Instantly share code, notes, and snippets.

@sinceohsix
sinceohsix / Installing LiveContainer+Sidestore.md
Last active December 8, 2025 18:29
Installing LiveContainer+SideStore from start to finish.

A Guide to Setting up Sidestore + LiveContainer

Works on the latest iOS versions, including iOS 26 db8.

Hello r/sideloaded!

After the mass revocation wave I decided to make this guide to help people sideload apps using an alternative method. A method that is 100% revoke free, costs nothing, and requires a computer only one time (for initial setup)!

After following this guide you will not need to worry about the 3 app limit OR refreshing every 7 days. You will be able to install as many apps as you want and they should not ever expire. This is a completely free method.

Here is what we will go over in this guide:

@tyhallcsu
tyhallcsu / README.md
Created August 18, 2025 17:51
This PowerShell script removes leftover StartAllBack registry keys.

🧹 StartAllBack Registry Cleanup Script

This PowerShell script removes leftover StartAllBack registry keys under HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID.

It checks for empty subkeys and deletes them safely to clean up clutter left behind by StartAllBack.

⚠️ Disclaimer

  • Use this script at your own risk.
@0xkuj
0xkuj / SafariX-JS-Known-Fixes.md
Last active May 22, 2025 00:23
SafariX tweak JS to fight back webkit issues on older iOS

SafariX JavaScript Fixes Collection

A collection of JavaScript fixes for various websites that can be used with SafariX tweak. Each fix includes a description of the issue it solves and the JavaScript code to fix it. To use it, go to SafariX settings -> JavaScript Injection -> add the domain as stated in this gist -> press on the domain -> enable subdomains if needed -> paste the js code into the text box below the toggle


ChatGPT Scroll Fix 1

iOS: 15/16

@tyhallcsu
tyhallcsu / Trollstore_All_Links_8076_URLS_by_sharmanhall.txt
Created September 20, 2024 05:11
Trollstore-IPA-SwaggyP6300---8,076-IPA-Archive-Links So i scraped all the archive links, and here is an unabriged collection. Most of the URLs work, and you can download the IPA files thanks to archive[dot]org. Full compiled list of 8,076 IPA links: - https://gist.github.com/tyhallcsu/30a862531c44f3e422e182bf3b23488f -------- Archive Sources Scr…
@padgriffin
padgriffin / StartIsBack Cleanup.xml
Created July 18, 2024 01:21
Task Scheduler Task that removes the key for StartIsBack Trial upon logon
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2024-07-18T02:11:06.5028053</Date>
<Author>KINGCLAWTHORNE\Pad</Author>
<URI>\StartIsBack Cleanup</URI>
</RegistrationInfo>
<Triggers>
<LogonTrigger>
<Enabled>true</Enabled>
@thesamesam
thesamesam / xz-backdoor.md
Last active December 9, 2025 03:22
xz-utils backdoor situation (CVE-2024-3094)

FAQ on the xz-utils backdoor (CVE-2024-3094)

This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.

Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.

Background

@gd3kr
gd3kr / embeddings.py
Created February 15, 2024 20:35
compute embeddings for tweets in tweets.json
"""
a simple script that reads tweets inside a json file, uses openai to compute embeddings and creates two files, metadata.tsv and output.tsv, which cam be used to visualise the tweets and their embeddings in TensorFlow Projector (https://projector.tensorflow.org/)
"""
# obtain tweets.json from https://gist.github.com/gd3kr/948296cf675469f5028911f8eb276dbc
import pandas as pd
import json
from openai import OpenAI
import Foundation
import SwiftUI
// MARK: - Custom Button Style
struct MobileMeButtonStyle: ButtonStyle {
// MARK: Metrics
@ScaledMetric private var cornerRadius = 12
@ScaledMetric private var horizontalLabelPadding = 12
@ScaledMetric private var verticalLabelPadding = 8
@Kenny-MWI
Kenny-MWI / slack_tweaks.md
Last active November 19, 2025 16:19
Slack Tweaks

Slack Tweaks

In Fall 2023, Slack introduced an updated client with some unpopular UI changes. The tweaks in this document can be used to revert to the old client or hide the new side bar. These will reset every time you fully close Slack but they are easy to re-apply once you get the hang of it.

(Cross Platform) Open Dev Tools [Preferred Option]

To run any of these scripts, you'll need to open the Dev Tools (or Console). You can do this by typing /slackdevtools in a Slack channel or direct message. These are the same Dev Tools you'd get in Chrome if you hit F12. Along the top are tabs for Elements, Console, Sources, Network, etc. You'll want to paste these scripts into the Console tab at the > prompt.

If Slack disables this command, then you can open Dev Tools by setting a system-wide environment variable and using a keyboard shortcut to open the console. If /slackdevtools worked for you then you can skip these next two sections.

(Mac OS) Enable Dev Mode

@thisbit
thisbit / googleSheetsEndpoint.js
Created July 15, 2023 07:51
Google Sheets as JSON, use this with Extensions > App Script in google sheets
function getSheetDataAsJSON() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var range = sheet.getDataRange();
var values = range.getValues();
var headers = values[0];
var jsonData = [];
for (var i = 1; i < values.length; i++) {
var row = values[i];
var rowObj = {};