Skip to content

Instantly share code, notes, and snippets.

View d4r1091's full-sized avatar

Dario Carlomagno d4r1091

View GitHub Profile
@d4r1091
d4r1091 / installMobileProvisionFile.sh
Last active January 16, 2020 22:37 — forked from benvium/installMobileProvisionFile.sh
This script installs a .mobileprovision file via bash (no GUI session needed) - Tested on zsh
#!/bin/sh
# 2012 - Ben Clayton (benvium). Calvium Ltd
# 2017 - Dario Carlomagno (d4r1091). Tictrac Ltd
#
# This script installs a .mobileprovision file without using Xcode. Unlike Xcode, it'll
# work over SSH.
#
# Requires Mac OS X (I'm using 10.7 and Xcode 4.3.2)
#
@d4r1091
d4r1091 / UIDeviceHardware.h
Created October 28, 2015 13:18 — forked from Jaybles/UIDeviceHardware.h
UIDeviceHardware - Determine iOS device being used
//
// UIDeviceHardware.h
//
// Used to determine EXACT version of device software is running on.
#import <Foundation/Foundation.h>
@interface UIDeviceHardware : NSObject
- (NSString *) platform;
//
// UINavigationController+CompletionHandler.h
// Entire
//
// Created by ChristianEnevoldsen on 10/08/14.
// Copyright (c) 2014 Reversebox. All rights reserved.
//
// Forked by Dario Carlomagno on 03/10/14.
// Copyright (c) 2014 Monksoftware. All rights reserved.
//