Skip to content

Instantly share code, notes, and snippets.

View adrianjagielak's full-sized avatar
👀
👀👀👀

Jagi ᯅ adrianjagielak

👀
👀👀👀
View GitHub Profile
@maxwellmlin
maxwellmlin / LPX-Trial-Reset.sh
Created April 14, 2021 03:46
Logic Pro X Trial Reset
mv -v ~/Library/Application\ Support/.lpxuserdata ~/.Trash
@dhinakg
dhinakg / tutorial.md
Last active September 16, 2024 13:12
iOS/iPadOS 14.3 OTA
@makipe
makipe / main.dart
Created January 29, 2021 08:15
Convert Uint8List to Stream<List<int>>
import 'dart:typed_data';
void main() {
final testData = List.filled(1000000, 1);
final uint8List = Uint8List.fromList(testData);
final sw1 = Stopwatch()..start();
final result1 = Stream.value(
List<int>.from(uint8List),
);
@burritosoftware
burritosoftware / whyimleavingrjailbreak.md
Last active September 18, 2023 20:30
The reasons why I am leaving the r/Jailbreak Discord community, and everything that came to this.

Hello.

I'm Burrito. You may know me from making AuthKit, AppDefense, Wander, or some other projects like my jailbreak guides. I'm one of the youngest people in the jailbreak community, and probably one of the youngest tool creators. Today, I would like to share some harsh experiences I've had, and why I am leaving the community.

For starters, I should mention that my experience only applies to the r/Jailbreak Discord community. Also, I should mention that you should read everything. There is no tl;dr, and the people who actually read the entire message with a serious mind would earn lots of respect and trust from me. I know this message will surface to r/Jailbreak's Discord, in one way or another, and I know people will skim over this, and I know that many people will not agree. I also know, in the terms of the r/Jailbreak Discord, that I will get a lot of "who the **** asked" and "who cares" jokes and comments. I also strongly know that the staff of the server will mock and meme this writing I ma

@b0gdanw
b0gdanw / Final Cut Pro Trial DMG
Last active September 3, 2026 01:07
Direct links for Final Cut Pro Trial DMGs
Links from https://www.apple.com/final-cut-pro/trial/
Final Cut Pro release notes https://support.apple.com/en-us/HT201237
What's new in Final Cut Pro https://support.apple.com/en-us/HT207877
Release history https://web.archive.org/web/20221121093911/https://en.wikipedia.org/wiki/Final_Cut_Pro_X#Release_history
Final Cut Pro 10.1.3
https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-05296.20140814.VRR4r/FinalCutProTrial10.1.3.dmg
Final Cut Pro 10.1.4
https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-02980.20141202.Jgt44/FinalCutProTrial10.1.4.dmg
@insi2304
insi2304 / static_dynamic_ios_inspection.md
Created July 10, 2020 11:12 — forked from rustymagnet3000/ios_introspection.md
Static and Dynamic iOS inspection

Static / Dynamic iOS app inspection

Get App Store encrypted iPAs

https://ipa.rocks/

Unzip the IPA file to reveal the Payload folder

unzip myApp.ipa

Check binary AppStore Encrypted
otool -l foobar | grep -i LC_ENCRYPTION -B1 -A4
Load command 12
 cmd LC_ENCRYPTION_INFO
@Siguza
Siguza / pallas.sh
Last active June 10, 2026 01:14
newstyle OTA
#!/usr/bin/env zsh
set -e;
set +m; # Job control would've been nice, but manual round robin it is, sigh.
if [ -z "${ZSH_VERSION+x}" ]; then
echo 'Try again with zsh.';
exit 1;
fi;
@wildonion
wildonion / starter
Last active June 5, 2021 06:50
VPS config
.....[copy from local to vps using ssh]
sudo scp file_name user@ip:/home/$USER/
.....[copy from vps to local using rsync excluding .git folder]
rsync -av -e ssh --exclude='.git' cds@cdsapply.com:/home/cds/cds2_cockpitBackend/ /home/wildonion/Documents/cds_backend_backup
.....[jekyll installation]
https://jekyllrb.com/docs/installation/ubuntu/
@esutton
esutton / macos-installer-to-iso.sh
Last active January 12, 2023 05:25
Create macOS Catalina Bootable ISO Image
#!/bin/sh
#
# File: macos-installer-to-iso.sh
#
# Create a bootable ISO image from a macOS installer to install VMware ESXi guests.
#
# https://gist.github.com/Kutkovsky/613e29f35d3ef420b23b59ecdf7a28e0
# Debug on: set -x
set -eux
@talaviram
talaviram / add_debug_entitlement.sh
Last active September 1, 2026 12:41
Simple Utility Script for allowing debug of hardened macOS apps.
#! /bin/bash
# Simple Utility Script for allowing debug of hardened macOS apps.
# This is useful mostly for plug-in developer that would like keep developing without turning SIP off.
# Credit for idea goes to (McMartin): https://forum.juce.com/t/apple-gatekeeper-notarised-distributables/29952/57?u=ttg
# Update 2022-03-10: Based on Fabian's feedback, add capability to inject DYLD for sanitizers.
#
# Please note:
# - Modern Logic (on M1s) uses `AUHostingService` which resides within the system thus not patchable and REQUIRES to turn-off SIP.
# - Some hosts uses separate plug-in scanning or sandboxing.
# if that's the case, it's required to patch those (if needed) and attach debugger to them instead.