Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.
You've got two main options:
| // ==UserScript== | |
| // @name Bing Tamper | |
| // @namespace Violentmonkey Scripts | |
| // @match https://www.bing.com/search | |
| // @grant none | |
| // @version 1.0 | |
| // @author - | |
| // @description 3/17/2023, 11:59:35 AM | |
| // ==/UserScript== |
| # requires https://github.com/erikflowers/weather-icons/blob/master/font/weathericons-regular-webfont.ttf saved as weathericons.ttf along the project | |
| import datetime | |
| import json | |
| import urllib.request | |
| from collections import defaultdict | |
| from PIL import ImageDraw, Image, ImageFont | |
| # Weather |
| <?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>CFBundleDevelopmentRegion</key> | |
| <string>en</string> | |
| <key>CFBundleExecutable</key> | |
| <string>$(EXECUTABLE_NAME)</string> | |
| <key>CFBundleIdentifier</key> | |
| <string>wowfunhappy.$(PRODUCT_NAME:rfc1034identifier)</string> |
| # Created by @PhilippIRL | |
| # This script patches Spotify's offline.bnk file (this file caches the remote config) to trick Spotify into thinking that your account is enabled for dev tools. | |
| # Spotify will automatically revert this local change after some time when it next fetches the remote config. | |
| # Of course you will have to completely close Spotify before running this script. | |
| import os, sys, platform | |
| systemPlatform = platform.system() | |
| if systemPlatform == 'Windows': |
This is a guide of how to install unsupported macOS and OS X versions on your Unsupported Mac. This information is also available in the #faq channel in the Unsupported Macs Discord Server.
| # Install Xcode 5.0.2. Later versions will not work. | |
| git clone https://github.com/apple-oss-distributions/xnu.git | |
| cd xnu/ | |
| git checkout d2a0abf2ede8152c5a107fe51e032c1193d2015b | |
| cd .. | |
| git clone 'https://github.com/apple-oss-distributions/dtrace.git' | |
| cd dtrace/ | |
| git checkout cdf0eec474eafb19dbb2c998320aaad28f755d0b |
| Title : Revisiting Mac OS X Kernel Rootkits | |
| Author : fG! | |
| Date : April 18, 2014 | |
| |=----------------------------------------------------------------------------=| | |
| |=----------------=[ Revisiting Mac OS X Kernel Rootkits ]=-------------------=| | |
| |=----------------------------------------------------------------------------=| | |
| |=------------------------=[ fG! <phrack@put.as> ]=---------------------------=| | |
| |=----------------------------------------------------------------------------=| |
These notes are based upon the steps provided here:
The notes in this Gist were created due to multiple attempts at installing Open Genera on different platforms that required more steps not inlcuded in the source notes above.