Posts

Setting up macOS 10.15+ for web development

Mac computers comes with macOS as default, being from Unix family, it is a great OS for software development. This post is about setting up your macOS computer to be used as a web development environment. Be aware that basic macOS skills is required, we will be using mostly Terminal application to perform the system update. We will be installing Free or Open Source tools. Install Homebrew To start things off we will install Homebrew package manager , Homebrew makes very simple to install packages on macOS. Now we can open Terminal and insert command below /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"   Install PHP When Homebrew installation is complete. We can continue with installing Homebrew packages. As instructed in the PHP manual Insert command below into Terminal, this process might take hours to be completed. brew install php   Install Git   Version control is a system that records changes to a file or set of fil...

How to load SSH Ramdisk for 64bit iOS devices with ra1ntool

Image
  ra1ntool is a utility application for macOS made to boot untrusted bootchain on an iOS device. It is only possible due to a bootrom exploit , and signature check patch, so loading patched bootchain files is not verified.   Requirements macOS (Currently only intel based mac computer supported) Java SDK   Supported iOS: 13-15 Supported devices: A7 - A11   Get the latest version of ra1ntool Download ra1ntool-v2.2.9 (84,2mb)     Installing ra1ntool To install ra1ntool on macOS double-click the downloaded .dmg file , it will open a new window has shown in the image below, then drag and drop ra1ntool.app into /Applications shortcut.   Once the transfer is done, double-click /Applications , find ra1ntool app and double-click again to open ra1ntool.   Optional: Close all opened finder windows, and eject the mounted .dmg Loading the SSH Ramdisk Make sure the computer is connected to the Internet. Now start by connecting a device via USB cable and ...