Skip to content

Instantly share code, notes, and snippets.

View CaffeineShawn's full-sized avatar
🌴
On vacation

CaffeineShawn CaffeineShawn

🌴
On vacation
View GitHub Profile
@CaffeineShawn
CaffeineShawn / ios-profile-extract.sh
Created February 28, 2023 11:04 — forked from sehrgut/ios-profile-extract.sh
extract embedded provisioning profile data from a .IPA
#!/bin/bash
#todo: nested binary entitlements?
#todo: noclobber
#todo: "in-place" to save in original path
readonly MODE_PLIST=0
readonly MODE_RAW=1
readonly MODE_ENTITLEMENTS=2
//------------------------------------------------------------------------
// The SwiftUI Lab: Advanced SwiftUI Animations
// https://swiftui-lab.com/swiftui-animations-part1 (Animating Paths)
// https://swiftui-lab.com/swiftui-animations-part2 (GeometryEffect)
// https://swiftui-lab.com/swiftui-animations-part3 (AnimatableModifier)
//------------------------------------------------------------------------
import SwiftUI
struct ContentView: View {