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
app_name | bundle_id | sdk | deployment_target | uses_swift | percentage_swift | main_binary_uses_swift | is_game | executable | |
---|---|---|---|---|---|---|---|---|---|
30 Day Fitness | com.vigorapps.30DayFitness | iphoneos12.0 | 10 | TRUE | 31% | TRUE | FALSE | ThirtyDaysFitness | |
8 Ball Pool | com.miniclip.8ballpoolmult | iphoneos11.3 | 8 | FALSE | 0% | FALSE | TRUE | pool | |
Amazon | com.amazon.Amazon | iphoneos11.4 | 9 | FALSE | 0% | FALSE | FALSE | Amazon | |
Amazon Alexa | com.amazon.echo | iphoneos11.2 | 10 | TRUE | 28% | TRUE | FALSE | AlexaMobileiOS-prod | |
Astro Palmistry & Horoscope | com.gfb.horoscope | iphoneos12.1 | 8 | FALSE | 0% | FALSE | FALSE | horoscope | |
Ball Blast | com.nomonkeys.ball-blast | iphoneos12.1 | 9 | FALSE | 0% | FALSE | TRUE | ball-blast | |
BetterMen | com.betterme.bettermen | iphoneos12.0 | 10 | TRUE | 74% | TRUE | FALSE | BetterMen | |
BitLife | com.wtfapps.apollo16 | iphoneos12.1 | 8 | FALSE | 0% | FALSE | TRUE | Apollo16 | |
Bitmoji | com.bitstrips.imoji | iphoneos11.4 | 10 | TRUE | 20% | TRUE | FALSE | imoji |
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
from pathlib import Path | |
import plistlib | |
import subprocess | |
import re | |
import csv | |
def app_uses_swift(path): | |
libswiftPath = path / 'Frameworks' / 'libswiftCore.dylib' | |
return libswiftPath.exists() |
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
// | |
// MIKMIDISynthesizer+Volume.swift | |
// | |
// Created by Andrew Madsen on 3/22/16. | |
// Copyright © 2016 Mixed In Key. All rights reserved. | |
// | |
import Foundation | |
import CoreAudio | |
import MIKMIDI |
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
/* Compile this with: | |
clang -std=c99 -framework CoreMIDI -fed MIDIPacketNextTest.m | |
Run: | |
./a.out | |
*/ |
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
if [[ "$#" -ne 1 ]]; then | |
echo "You must specify a commit message as an argument." | |
exit 1 | |
fi | |
COMMIT_MESSAGE="$1" | |
git submodule foreach "echo 'Adding all files.'; git add ." | |
git submodule foreach "echo 'Stashing.'; git stash" | |
git submodule foreach "echo 'Checking out master branch.'; git checkout master" | |
git submodule foreach "echo 'Applying stash.'; git stash apply" |
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
$ brew --config | |
HOMEBREW_VERSION: 0.9.5 | |
ORIGIN: (none) | |
HEAD: (none) | |
Last commit: never | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_REPOSITORY: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
HOMEBREW_BOTTLE_DOMAIN: https://ia902307.us.archive.org/31/items/tigerbrew | |
CPU: single-core 32-bit g4e |
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
#!/bin/sh | |
# UploadBuild.sh | |
# Aether | |
# | |
# Created by Andrew Madsen on 11/7/15. | |
# Copyright © 2015 Open Reel Software. All rights reserved. | |
S3BucketName=<redacted> | |
username="<redacted>" |
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
@interface MIKMIDISequence (BarBeatTime) | |
- (CABarBeatTime)barBeatTimeForTimeStamp:(MusicTimeStamp)timeStamp error:(NSError **)error; | |
@end | |
@implementation MIKMIDISequence (BarBeatTime) | |
- (CABarBeatTime)barBeatTimeForTimeStamp:(MusicTimeStamp)timeStamp error:(NSError **)error | |
{ | |
error = error ?: &(NSError *__autoreleasing){ nil }; | |
UInt32 timeResolution = 0; |
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
#!/usr/bin/env ruby | |
require "spaceship" | |
Spaceship.login('yourusername', 'yourpassword') | |
Spaceship::Tunes.login('yourusername', 'yourpassword') | |
du = Spaceship::Tunes.client.du_client | |
app = Spaceship::Tunes::Application.find "app.bundle.id" |
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
#import <Foundation/Foundation.h> | |
@interface Foo : NSObject | |
@property (nonatomic, strong) NSArray *bars; | |
- (void)addBar:(NSString *)bar; | |
- (void)removeBar:(NSString *)bar; | |
@end |
NewerOlder