Skip to content

Instantly share code, notes, and snippets.

View rustymagnet3000's full-sized avatar
🏏

Rusty Magnet rustymagnet3000

🏏
  • 11:05 (UTC)
View GitHub Profile
@rustymagnet3000
rustymagnet3000 / xcode_tips.md
Last active August 14, 2022 22:35
xCode tips

xCode and iOS Simulator tricks

iOS-Deploy

List Bundle IDs on real iOS device

ios-deploy -B

Command line deploy app over USB

ios-deploy -W -b foobar.app

Install, run and debug iOS app on real device from command line

ios-deploy -d -W -b <DerivedDatapath to app build>/Debug-iphoneos/tinyDormant.app

Build Scripts

OpenSSL Playground

Certificates

# human readable crt file
openssl x509 -in stackexchangecom.crt -text -noout

# human readable pem file
openssl x509 -in cert.pem -text -noout