alcatraz
Small engine of PII detector with masking and custom rules.
File Explorer
- auto-release.yml
- binary-release.yml
- docs.yml
- libpf-release.yml
- linear-sync.yml
- mirror-check.yml
- mirror-model.yml
- ml-live.yml
- pr-label-check.yml
- test.yml
- analyzer_test.go
- context.go
- context_test.go
- doc.go
- engine.go
- example_test.go
- match_test.go
- matcher.go
- nlp.go
- nlp_test.go
- pattern.go
- pattern_recognizer.go
- recognizer.go
- registry.go
- result.go
- anonymizer.go
- anonymizer_test.go
- doc.go
- example_test.go
- main.go
- main.go
- corpus.go
- bench_presidio.py
- pyproject.toml
- .gitignore
- analyze_bench_test.go
- compare.py
- go.mod
- README.md
- context_test.go
- doc.go
- hook.go
- hook_test.go
- main.go
- models.go
- models_test.go
- report.go
- report_test.go
- scan.go
- scan_test.go
- anonymize.md
- benchmarks.md
- cli.md
- context-scoring.md
- custom-recognizers.md
- design.md
- entities.md
- how-it-works.md
- index.md
- install.md
- lookaround.md
- ner-backends.md
- ner-offline.md
- ner.md
- pfilter.md
- requirements.txt
- testing.md
- doc.go
- entities.go
- example_test.go
- mirror-model.sh
- mirror-target.env
- doc.go
- example_test.go
- go.mod
- go.sum
- lookaround.go
- lookaround_test.go
- doc.go
- download.go
- example_test.go
- models.go
- models_test.go
- verify_test.go
- backend.go
- backend_test.go
- bench_test.go
- config.go
- doc.go
- example_test.go
- go.mod
- go.sum
- models.go
- models_test.go
- ner.go
- ner_test.go
- offline.go
- offline_test.go
- offsets.go
- segments.go
- segments_test.go
- windows.go
- windows_test.go
- words.go
- words_test.go
- CMakeLists.txt
- shim.cpp
- binding.go
- config.go
- doc.go
- download.go
- download_test.go
- example_test.go
- ffi.go
- ffi_stub.go
- ffi_test.go
- go.mod
- go.sum
- offsets.go
- pfilter.go
- pfilter_test.go
- pool_test.go
- au.go
- brazil.go
- brazil_test.go
- checksum.go
- defaults.go
- doc.go
- example_test.go
- generic.go
- india.go
- italy.go
- others.go
- phone_test.go
- separators.go
- separators_test.go
- singapore.go
- spain.go
- uk.go
- us.go
- validators_test.go
- .gitignore
- alcatraz.go
- alcatraz_smoke_test.go
- context_test.go
- doc.go
- example_test.go
- go.mod
- LICENSE
- mkdocs.yml
- README.md
- TODO.md
# Use via CDN
jsDelivrjsDelivr 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 ▼
brew install
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:
cmake
View Details ▼
cmake
Cross-platform build automation system, that generates recipes for native build systems.
cmake {{path/to/project_directory}}
Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
cmake --build {{path/to/build_directory}}
Use a generated recipe in a given directory to build artifacts:
cmake --install {{path/to/build_directory}} --strip
Install the build artifacts into `/usr/local/` and strip debugging symbols:
git clone
View Details ▼
git clone
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:
git diff
View Details ▼
git diff
Show changes to tracked files.
git diff
Show unstaged changes:
git diff HEAD
Show all uncommitted changes (including staged ones):
git diff --staged
Show only staged (added, but not yet committed) changes:
go get
View Details ▼
go get
Add a dependency package, or download packages in legacy GOPATH mode.
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go get {{example.com/pkg}}
Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:
go get {{example.com/pkg}}@{{v1.2.3}}
Modify the package with a given version in module-aware mode:
go get {{example.com/pkg}}@{{none}}
Remove a specified package:
go install
View Details ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
psql
View Details ▼
psql
PostgreSQL client.
psql {{database}}
Connect to the database. By default, it connects to the local socket using port 5432 with the currently logged in user:
psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{database}}
Connect to the database on given server host running on given port with given username, without a password prompt:
psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{[-W|--password]}} {{database}}
Connect to the database; user will be prompted for password:
script
View Details ▼
script
Record all terminal output to a typescript file.
script
Record a new session to a file named `typescript` in the current directory:
exit
Stop recording:
script {{path/to/session.out}}
Record a new session to a custom filepath:
pbpaste
View Details ▼
pbpaste
Send the contents of the clipboard to `stdout`.
Comparable to pressing `<Cmd v>` on the keyboard.
pbpaste > {{path/to/file}}
Write the contents of the clipboard to a file:
pbpaste | {{grep search_string}}
Use the contents of the clipboard as input to a command:
