Monthly Archives: December 2014

Generate and Test a iOS Push Certificate

Hello, A (working) quick way to generate a working P12 Certificate using OpenSSL for push notifications on your iOS apps: Transform the Certificate from CER to PEM openssl x509 -in aps_production.cer -inform DER -out distrib_final.pem -outform PEM} Transform the Key … Continue reading

Posted in iOS, Mac, Medium Technical | Tagged , , , , , , , , , , | Comments Off on Generate and Test a iOS Push Certificate

OSx Advanced Search: Find + Grep

To find some text inside all types of files: find . -type f -exec grep -l “some text” {} + AC.

Posted in Basic Technical, Learned Today, Mac | Tagged , , , , , | Comments Off on OSx Advanced Search: Find + Grep