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
Permission is hereby granted, free of charge, to any person obtaining the attached hardware and associated cabling (the "Hardware"), to deal in the hardware without restriction, including without limitation the rights to use, modify, sell, or otherwise dispose of the hardware, and to permit persons to whom the hardware is furnished to do so, subject to the following conditions: | |
THE HARDWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OR SUPPORT OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF FUNCTIONALITY, SAFETY, OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL ANY FORMER OWNER OR USER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE HARDWARE OR THE USE OR OTHER DEALINGS IN THE HARDWARE. | |
THIS HARDWARE MAY NOT BE RETURNED FOR ANY REASON; IN THE EVENT THAT THE HARDWARE IS NO LONGER WANTED OR NEEDED, IT MUST BE DISPOSED OF ACCORDING TO YOUR LOCAL LAWS AND ORDINANCES. |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>PayloadContent</key> | |
<array> | |
<dict> | |
<key>PayloadDescription</key> | |
<string>Configures Gatekeeper to allow YourAppNameHere</string> | |
<key>PayloadDisplayName</key> |
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
{ | |
"title": "Siri System Settings (com.apple.systempreferences)", | |
"description": "Use this section to disable the Siri & Apple Intelligence panel in System Settings.", | |
"links": [ | |
{ | |
"rel": "Siri-Specific Source", | |
"href": "https://gist.github.com/jonesiscoding/270dffd9676b212ae741b9571afc9751" | |
}, | |
{ | |
"rel": "Original Source", |
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
{ | |
"title": "Apple Intelligence (com.apple.applicationaccess)", | |
"description": "Enable or disble specific Apple Intelligence Features", | |
"links": [ | |
{ | |
"rel": "Source", | |
"href": "https://gist.github.com/jonesiscoding/b785fa95838f220eb36cf0daad19a1d8" | |
}, | |
{ | |
"rel": "Documentation", |
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 | |
# @file get-time-machine-latest.sh | |
# @brief Last Time Machine Backup | |
# @category Operating system | |
# @type Date | |
# @revision | |
# @uploaded | |
if [ -f '/var/db/.AppleSetupDone' ]; then |
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
{ | |
"$schema": "http://json-schema.org/schema#", | |
"title": "Mozilla Firefox Settings", | |
"description": "Domain: org.mozilla.firefox", | |
"source": "https://gist.github.com/jonesiscoding/ee942ac712bb569e973ee257b295e875", | |
"definitions": { | |
"bookmark": { | |
"type": "object", | |
"title": "Bookmark", | |
"properties": { |
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
if [[ ! $REPLY =~ ^[Yy]$ ]]; then | |
msg "You chose not to make a new site. Why are you even here? Exiting..." | |
echo | |
exit 1 | |
fi |
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
function parseDate(str) { | |
var parts = str.split( /\s|,|-|\// ); | |
var isNum = function(val) { return !isNaN( parseFloat( val ) ) && isFinite( val ); }; | |
var isYear = function(val) { return 4 === val.length && isNum(val); }; | |
var yIndex = null; | |
var mIndex = null; | |
var dIndex = null; | |
var rtDate = null; | |
if ( parts.length === 2 ) { |
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
# Get the final URL after the redirect | |
DL_URL=$( curl "${APP_URL}" -s -L -I -o /dev/null -w '%{url_effective}' ) |