This file contains 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
# convert .mov file to .git | |
$ ffmpeg -ss 00:00:00.000 -i in.mov -pix_fmt rgb24 -r 10 -t 00:00:03.000 output.gif |
This file contains 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
// execute request, grep string 'EXTIN' and count number of lines with 'EXTIN' string | |
$ curl -v --silent HTTP_URL_PROVIDED 2>&1 | grep EXTIN | wc -l |
This file contains 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
//0 unzip | |
$ unzip awesome.ipa | |
//1 remove signature artifacts | |
$ rm -rf Payload/awesome.app/ | |
//2 update provision profile | |
$ mv APP_PROVISION_PROFILE.mobileprovision Payload/awesome.app/embedded.mobileprovision | |
//3 resign binary file |
This file contains 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
// get a glance at the identities ("SHA1" "Name") | |
$ security find-identity -v -p codesigning | |
// get information about the code signing status | |
$ codesign -vv -d Payload/Example.app | |
// entitlements embedded in binary | |
$ codesign -d --entitlements - Payload/Example.app/ | |
// verify provision profile |
This file contains 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
// stash a view (0x7f84c74ca870 address) | |
e UIView *$cell = (UIView *)[0x7f84c74ca870 superview] | |
// set a new frame | |
e (void)[$cell setFrame:(CGRect){0.f, 324.f, 10.f, 54.f}] | |
// update | |
caflush frame |
NewerOlder