- 1-01 Session 601 - Improving Your Video With Professional Preprocessing.mov
- 1-02 Session 602 - The Encoding Process In Depth.mov
- 1-03 Session 603 - Delivering Your Media.mov
- 1-04 Session 604 - Iterative Cocoa and Web Application Design.mov
- 1-05 Session 605 - Understanding Web Accessibility for Building Better Websites.mov
- 1-06 Session 606 - Motion Graphics Design Using Quartz Composer.mov
- 1-07 Session 607 - Development Methods for WebKit AJAX Applications.mov
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
import csv | |
import python_codon_tables | |
def read_csv_file(file_path): | |
with open(file_path) as f: | |
reader = csv.reader(f) | |
records = list(reader) | |
return records |
As of macOS 12 (Monterey), Apple's Virtualization framework has nice support for macOS guest virtual machines, but with severe limitations: For example you can't install a macOS guest on Intel Macs, install guests with newer versions of macOS than the host, copy and paste between the host and the guest, or install third party kernel extensions in the guest. As usual for Apple, the functionality they do support is nicely implemented, but they've left out so much that the result is only marginally useful -- at least compared to
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
# Add to your zsh profile | |
function devicepid() { | |
if [ -z "$1" ]; then | |
echo "Usage: devicepid <device-name> <search>" | |
echo "Example: devicepid 'iPhone 15 Pro Max' SpringBoard" | |
return 1 | |
fi | |
if [ -z "$2" ]; then |
Inspired by https://infosec.exchange/@jjtech/112612685494089718
Reboot into Recovery OS + Disable SIP
csrutil disable
OlderNewer