Skip to content

Instantly share code, notes, and snippets.

View rustymagnet3000's full-sized avatar
🧵

Rusty Magnet rustymagnet3000

🧵
View GitHub Profile
@rustymagnet3000
rustymagnet3000 / a_prettier_terminal.md
Last active December 31, 2025 12:16
A prettier, default terminal

A Terminal set up for DevSecOps

a new macOS machine

shell

zsh installed on macOS by default. You still need to install oh-my-zsh for themes and plugins.

# shells installed
@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