goldenpad

(★ 152)

GoldenEye 007, native for iPhone, iPad, and Apple Silicon Mac. Metal, touch controls, and user-supplied retail data.

File Explorer

  • .gitignore
  • CMakeLists.txt
  • CONTRIBUTING.md
  • README.md
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

shasum

View Details ▼

Calculate SHA cryptographic checksums.

shasum {{path/to/file1 path/to/file2 ...}}

Calculate the SHA1 checksum for one or more files:

shasum --algorithm {{1|224|256|384|512|512224|512256}} {{path/to/file1 path/to/file2 ...}}

Calculate the SHA checksum for one or more files with the specified algorithm:

{{command}} | shasum

Calculate a SHA1 checksum from `stdin`:

🔍

xdelta

View Details ▼

A delta encoding utility to generate and apply patches to binary files.
For the modern version (v3), see `xdelta3`.

xdelta delta {{path/to/old_file}} {{path/to/new_file}} {{path/to/patch_file}}

Generate a patch (delta) between two files:

xdelta patch {{path/to/patch_file}} {{path/to/old_file}} {{path/to/new_file}}

Apply a patch to an old file to reconstruct the new file:

xdelta delta -{{0..9}} {{path/to/old_file}} {{path/to/new_file}} {{path/to/patch_file}}

Generate a patch with a specific compression level:

🔍

xdelta3

View Details ▼

A delta compression tool for binary files.

xdelta3 -e -s {{path/to/old_file}} {{path/to/new_file}} {{path/to/patch_file}}

Create a patch ([e]ncode) based on a [s]ource file:

xdelta3 -d -s {{path/to/old_file}} {{path/to/patch_file}} {{path/to/new_file}}

Apply a patch ([d]ecompress) to a [s]ource file:

xdelta3 -{{0..9}} -s {{path/to/old_file}} {{path/to/new_file}} {{path/to/patch_file}}

Create a patch with a specific compression level:

🔍

xcrun

View Details ▼

Run or locate development tools and properties.

xcrun {{tool}} {{arguments}}

Find and run a tool from the active developer directory:

xcrun {{tool}} {{arguments}} --verbose

Show verbose output:

xcrun --sdk {{sdk_name}}

Find a tool for a given SDK:

// repository documentation