Sideloading apps on iOS
- Getting .p12 and mobile provisioning files
- This as well...
- And not to mention this one
Using ZSign
So i did those other things but:
- The first thing
- And the second thing
- But the third was the
best
And then the guy said:
Man, i'm not gonna be the part of the system
And showed me this:
I said factorial this...
fn factorial(n: u64) -> u64 {
match n {
0 => 1,
_ => n * factorial(n-1)
}
}