sectionGeneral
sectionSecurity
sectionAutofill
sectionAccountsandvaults
sectionNotifications
sectionWatchtower
sectionAppearanceAndShortcuts
sectionIntegrations
sectionInsiders
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 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 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 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[@]}")\" |
This file contains 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
substitutions: | |
name: tubezb-cc2652p2-ethusb-2023 | |
friendly_name: TubesZB and Bluetooth Proxy | |
esphome: | |
name: ${name} | |
friendly_name: ${friendly_name} | |
esp32: | |
board: esp32doit-devkit-v1 |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> | |
<mime-type type="application/vnd.google-apps.document"> | |
<comment>Google Docs</comment> | |
<glob pattern="*.gdoc" /> | |
</mime-type> | |
<mime-type type="application/vnd.google-apps.drawing"> | |
<comment>Google Drawings</comment> | |
<glob pattern="*.gdraw" /> | |
</mime-type> |
https://github.com/improv-wifi/sdk-cpp - provision WiFi credentials over bluetooth
Peripherals.
std
embedded-hal
NewerOlder