Skip to content

Instantly share code, notes, and snippets.

View KevinVitale's full-sized avatar
👾
Game Boy

Kevin Vitale KevinVitale

👾
Game Boy
View GitHub Profile

0x11871ec91200773521dcacce0b2e636bef45f17b0dffd8c12019f489292e50a4

@KevinVitale
KevinVitale / Dockerfile
Created August 27, 2018 19:48 — forked from up1/Dockerfile
Docker with COBOL
FROM ubuntu:16.04
#update and get pre-requisites
RUN apt-get update && apt-get install -y \
open-cobol \
gcc
#copy file to image
COPY helloworld.cbl /helloworld.cbl
@KevinVitale
KevinVitale / sdl-metal-example.m
Created July 4, 2018 17:06 — forked from slime73/sdl-metal-example.m
SDL + Metal example
/**
* This software is in the public domain. Where that dedication is not recognized,
* you are granted a perpetual, irrevokable license to copy and modify this file
* as you see fit.
*
* Requires SDL 2.0.4.
* Devices that do not support Metal are not handled currently.
**/
#import <UIKit/UIKit.h>
- Copy the delivered ipa into a directory to work in.
- export PlistBuddy="/usr/libexec/PlistBuddy" to get the PlistBuddy tool to your shell. If it is not added, all references to PlistBuddy
will need to be written as the full path.
- Take the delivered App.ipa and unzip it using the unzip command. This should produce a Payload directory containing the app and its
resources.
- Enter the command "codesign -d --entitlements :enterprise.plist Payload/PathToApp.app/" This pulls the entitlements out of the app, and
prints them to a plist, without a leading "blob" of data. Pay particular attention to the colon before the enterprise.plist file name.