Ref: https://gist.github.com/vertexclique/9839383
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3143 | macOS | 0x65D4 | 55 | C3 |
| 3143 | macOS | 0x6219 | 55 | C3 |
| 3143 | macOS | 0x75214 | 55 48 89 E5 41 57 41 56 | 48 C7 C0 01 00 00 00 C3 |
| #!/bin/bash | |
| usage () { | |
| echo "usage: $0 <deb file>" | |
| echo " copies dylibs, plists, and preferences bundles from the .deb file to" | |
| echo " your iPhone for use with Electra" | |
| echo "" | |
| echo "usage: $0 (while in a theos project dir)" | |
| echo " copies dylibs, plists, and preferences bundles from your last built" | |
| echo " .deb file to your iPhone for use with Electra" |
Ref: https://gist.github.com/vertexclique/9839383
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3143 | macOS | 0x65D4 | 55 | C3 |
| 3143 | macOS | 0x6219 | 55 | C3 |
| 3143 | macOS | 0x75214 | 55 48 89 E5 41 57 41 56 | 48 C7 C0 01 00 00 00 C3 |
| #!/usr/bin/env bash | |
| # | |
| # Bootstrap script for setting up a new OSX machine | |
| # | |
| # This should be idempotent so it can be run multiple times. | |
| # | |
| # Some apps don't have a cask and so still need to be installed by hand. These | |
| # include: | |
| # | |
| # - Twitter (app store) |
| #!/usr/bin/python | |
| # fix-xcode | |
| # Rob Napier <[email protected]> | |
| # Script to link in all your old SDKs every time you upgrade Xcode | |
| # Create a directory called /SDKs (or modify source_path). | |
| # Under it, put all the platform directories: | |
| # MacOSX.platform iPhoneOS.platform iPhoneSimulator.platform | |
| # Under those, store the SDKs: |
| // iOS 9 allows you to animate between visual effects, which gives you the | |
| // ability to manipulate the blur radius. this can be useful for animating | |
| // a backdrop for a custom modal, and with a few tricks, can even be set | |
| // indirectly, allowing you to "scrub" between them back and forth with | |
| // a gesture, just like when you pull down Spotlight. | |
| // these are the two effects you want to transition between | |
| UIVisualEffect *startEffect = nil; // "nil" means no blur/tint/vibrancy (plain, fully-transparent view) | |
| UIVisualEffect *endEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; |
| #!/bin/bash | |
| export THEOS=/opt/theos | |
| # clone theos.git | |
| cd /opt | |
| git clone git://github.com/DHowett/theos.git | |
| # clone iphoneheaders.git | |
| cd $THEOS | |
| mv include include.bak |
| #!/bin/bash | |
| export THEOS=/opt/theos | |
| # clone theos.git | |
| cd /opt | |
| git clone git://github.com/DHowett/theos.git | |
| # clone iphoneheaders.git | |
| cd $THEOS | |
| mv include include.bak |
| -- create table | |
| CREATE TABLE cities | |
| ( | |
| id INT PRIMARY KEY NOT NULL auto_increment, | |
| cityName VARCHAR(255), | |
| cityState VARCHAR(255), | |
| cityPopulation int, | |
| country VARCHAR(255) | |
| ); |
| -- create table | |
| CREATE TABLE cities | |
| ( | |
| id INT PRIMARY KEY NOT NULL auto_increment, | |
| cityName VARCHAR(255), | |
| cityState VARCHAR(255), | |
| cityPopulation int, | |
| country VARCHAR(255) | |
| ); |