Skip to content

Instantly share code, notes, and snippets.

View 0ptiKali1usion's full-sized avatar

jjstyles0001 0ptiKali1usion

View GitHub Profile
@0ptiKali1usion
0ptiKali1usion / gist:f6a51e3576f02903183e724c502d673f
Created October 11, 2025 06:40
xnu boot arguments for Catalina - com.apple.Boot.plist
"-corpse_threshold_system_limit"
"-cpuid"
"-disable_aslr"
"-disable_atm"
"-disable_cseg_write_protection"
"-disable_mtx_chk"
"-disable_osreason_debug"
"-disable_procref_tracking"
"-disable_syscallfilter"
"-disable_x86_64h"
@0ptiKali1usion
0ptiKali1usion / gist:3325fab5715ef98486833c69659e0e16
Created October 11, 2025 04:05
xnu boot arguments for Mojave - com.apple.Boot.plist
"-b"
"-cpuid"
"-disable_aslr"
"-disable_atm"
"-disable_cseg_write_protection"
"-disable_mtx_chk"
"-disable_osreason_debug"
"-disable_procref_tracking"
"-disable_x86_64h"
"-enable_x86_64h"
@0ptiKali1usion
0ptiKali1usion / gist:957be76fe728f9700211910b16520fdc
Created October 11, 2025 02:53
xnu boot arguments for HighSierra - com.apple.Boot.plist
"-b"
"-cpuid"
"-disable_aslr"
"-disable_atm"
"-disable_osreason_debug"
"-disable_procref_tracking"
"-disable_x86_64h"
"-enable_x86_64h"
"-gzalloc_mode"
"-gzalloc_noconsistency"
## 1,372 (one-thousand-three-hundred seventy-two) to be exact.
## what? times * that by 1GB that's a terabyte & a third or so.
## ganted I think this OTA for my barbet was 1.7GB, so...
## FYI, IMHO, tyyw.
## -JJ
## https://developers.google.com/android/ota?partial=1
## For those times when you say to yourself "If only I had every version of AndoidOS...".
https://dl.google.com/dl/android/aosp/angler-ota-mhc19q-b9ac826b.zip
Common intents
An intent lets you start an activity in another app by describing an action you'd like to perform, such as "view a map" or "take a picture," in an Intent object. This type of intent is called an implicit intent because it doesn't specify the app component to start, but instead specifies an action and provides some data with which to perform the action.
When you call startActivity() or startActivityForResult() and pass it an implicit intent, the system resolves the intent to an app that can handle the intent and starts its corresponding Activity. If there's more than one app that can handle the intent, the system presents the user with a dialog to pick which app to use.
This page describes several implicit intents that you can use to perform common actions, organized by the type of app that handles the intent. Each section also shows how you can create an intent filter to advertise your app's ability to perform the action.
Caution: If there are no apps on the device that can receive an impl