- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide
Please link to this page instead of linking to the direct download links.
Warning
If this gets maliciously high traffic (ie. abusing multiple connections), I will have to shut this down. This is hosted on Azure Block Storage, it's not free, so be kind.
| import os | |
| import shutil | |
| """ | |
| Steps to retrieve the IPA file from the Configurator app: | |
| 1. Install Apple Configurator from the Mac App Store and sign in | |
| 2. Connect your iOS device to your Mac | |
| 3. Select "Add > Apps..." and search for the app you want to install, click "Add" | |
| 4. The newer Apple Configurator deletes the IPA after installing it, so you'll need to use this tool to grab it |
Let's say you receive an app (e.g. MyApp.ipa) from another developer, and you want to be able to install and run it on your devices (by using ideviceinstaller, for example).
Or your certificates and provision profiles have expired and you want to provide a new build to your clients without having to make a new build on the latest XCode or iOS SDK.
The first step is to attain a Provisioning Profile which includes all of the devices you wish to install and run on. Ensure that the profile contains a certificate that you have installed in your Keychain Access (e.g. iPhone Developer: Some Body (XXXXXXXXXX) ). Download the profile (MyProfile.mobileprovision) so you can replace the profile embedded in the app.
Follow the instructions on Github to Create an Access Token in Github
By default, git credentials are not cached so you need to tell Git if you want to avoid having to provide them each time Github requires you to authenticate. On Mac, Git comes with an “osxkeychain” mode, which caches credentials in the secure keychain that’s attached to your system account.
You can tell Git you want to store credentials in the osxkeychain by running the following:-
Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.
- Go to: https://twitter.com/{username}/likes
- Open the console and run the following JavaScript code:
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}| document.querySelectorAll('li input[type=checkbox]:checked').forEach((box, i) => setTimeout(() => box.click(), i * 50)) |
| const timer = ms => new Promise(res => setTimeout(res, ms)); | |
| // Unretweet normally | |
| const unretweetTweet = async (tweet) => { | |
| await tweet.querySelector('div[data-testid="unretweet"]').click(); | |
| await timer(250); | |
| await document.querySelector('div[data-testid="unretweetConfirm"]').click(); | |
| console.log('****// Unretweeted Successfully //****') | |
| } |
| May 3, 2017 at 12:34 PM | |
| From Apple | |
| 2. 3 Performance: Accurate Metadata | |
| 4. 2 Design: Minimum Functionality | |
| Guideline 4.2 - Design | |
| Thank you for your resubmission. Your app continues to provide a limited user experience as it is still not sufficiently different from a mobile browsing experience. As such, the experience it provides is similar to the general experience of using Safari. Including iOS features such as push notifications, Core Location, and sharing do not provide a robust enough experience to be appropriate for the App Store. | |
| Next Steps |
| <?php | |
| /** | |
| * Create Subdomains | |
| * | |
| * Note: This script was designed to be called silently by a bash script for project creation. | |
| * Add to bash script: php "$HOME/scripts/php/create-subdomains.php" "$new_account_subdomain" | |
| * | |
| * Requires "jamesryanbell/cloudflare": "^1.11" for the CloudFlare PHP library | |
| * Recommends "kint-php/kint": "^3.2" for improved temporary PHP debugging |