Name | URL | Section | Bundle ID |
---|---|---|---|
Apps | file:///System/Applications/Apps.app/ |
persistentApps |
com.apple.apps.launcher |
Safari | file:///System/Volumes/Preboot/Cryptexes/App/System/Applications/Safari.app/ |
persistentApps |
com.apple.Safari |
Messages | file:///System/Applications/Messages.app/ |
persistentApps |
com.apple.MobileSMS |
file:///System/Applications/Mail.app/ |
persistentApps |
com.apple.mail |
|
Maps | file:///System/Applications/Maps.app/ |
This is for some generic LED desk lamp.
Protocol: Princeton 24-bit 433.92 AM
Button | Binary | Key |
---|---|---|
Power | 01001110 10100101 00000001 |
00 4E A5 01 |
Temperature | 01001110 10100101 00000010 |
00 4E A5 02 |
Brightness | 01001110 10100101 00000011 |
00 4E A5 03 |
Timer | 01001110 10100101 00000100 |
00 4E A5 04 |
Edition | Type | Key |
---|---|---|
Windows 10 Pro | Default | RHGJR-N7FVY-Q3B8F-KBQ6V-46YP4 |
Windows 10 Pro N | Default | RHGJR-N7FVY-Q3B8F-KBQ6V-46YP4 |
Windows 10 Pro | RTM | VK7JG-NPHTM-C97JM-9MPGT-3V66T |
Windows 10 Pro N | RTM | 2B87N-8KFHP-DKV6R-Y2C8J-PKCKT |
Windows 10 Enterprise | RTM | XGVPP-NMH47-7TTHJ-W3FW7-8HV2C |
Windows 10 Enterprise N | RTM | WGGHN-J84D6-QYCPR-T7PJ7-X766F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
indent() { sed 's/^/ /'; } | |
urldecode() { : "${*//+/ }"; echo -e "${_//%/\\x}"; } | |
# encode special characters per RFC 3986 | |
urlencode() { | |
local LC_ALL=C # support unicode = loop bytes, not characters | |
local c i n=${#1} | |
for (( i=0; i<n; i++ )); do | |
c="${1:i:1}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
loggedInUser=$(stat -f "%Su" /dev/console) | |
osVersion=$(/usr/bin/sw_vers -productVersion) | |
osVerMajor=$(echo "$osVersion" | /usr/bin/awk -F"." '{print $1}') | |
#osVerMinor=$(echo "$osVersion" | /usr/bin/awk -F"." '{print $2}') | |
#osVerPatch=$(echo "$osVersion" | /usr/bin/awk -F"." '{print $3}') | |
indent() { sed 's/^/ /'; } |
https://developer.apple.com/documentation/devicemanagement/nsextensionmanagement
Extension | Bundle ID |
---|---|
AirDrop | com.apple.share.AirDrop.send |
FinderSync | com.apple.FinderSync |
com.apple.share.Mail.compose |
|
Messages | com.apple.messages.ShareExtension |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo -u $(stat -f "%Su" /dev/console) /bin/bash <<'END' | |
# Move files to user's trash | |
function trash() { | |
if [[ $# ]]; then | |
a=() | |
for f in "$@"; do a+=("$(realpath "$f")"); done | |
f=$(printf "\",POSIX file \"%s" "${a[@]}")\" |
NewerOlder