chaos-vpn

(★ 33)

Extreme real-time voice distortion engine for Android and iOS. Features 18+ chaos effects including bit-scrambling, vocoding, and reverse glitches for Discord, WhatsApp, and gaming.

File Explorer

  • .gitignore
  • analysis_options.yaml
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • LICENSE
  • pubspec.lock
  • pubspec.yaml
  • README.md
  • README2.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.

🔍

dart

View Details ▼

Manage Dart projects.

dart create {{project_name}}

Initialize a new Dart project in a directory of the same name:

dart run {{path/to/file.dart}}

Run a Dart file:

dart pub get

Download dependencies for the current project:

🔍

flutter pub

View Details ▼

Flutter's package manager.
Note: Packages are available on <https://pub.dev>.
See also: `flutter`.

flutter pub get

Download/Update all packages specified in `pubspec.yaml`:

flutter pub add {{package1 package2 ...}}

Add a package dependency to an app:

flutter pub remove {{package1 package2 ...}}

Remove a package dependency from an app:

🔍

flutter

View Details ▼

Google's free, open source, and cross-platform mobile app SDK.
Some subcommands such as `pub` have their own usage documentation.

flutter create {{project_name}}

Initialize a new Flutter project in a directory of the same name:

flutter doctor

Check if all external tools are correctly installed:

flutter channel {{stable|beta|dev|master}}

List or change Flutter channel:

🔍

git checkout

View Details ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

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:

🔍

git commit

View Details ▼

Commit files to the repository.

git commit

Open an editor to write a message and commit staged files to the repository:

git commit {{[-m|--message]}} "{{message}}"

Commit staged files to the repository with the specified message:

git commit {{[-F|--file]}} {{path/to/commit_message_file}}

Commit staged files with a message read from a file:

🔍

git push

View Details ▼

Push commits to a remote repository.

git push

Send local changes in the current branch to its default remote counterpart:

git push {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart:

git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:

🔍

keytool

View Details ▼

A certificate management utility included with Java.

keytool -genkeypair -v -keystore {{path/to/file.keystore}} -alias {{key_name}}

Create a keystore:

keytool -storepasswd -keystore {{path/to/file.keystore}}

Change a keystore password:

keytool -keypasswd -alias {{key_name}} -keystore {{path/to/file.keystore}}

Change a key's password inside a specific keystore:

// repository documentation