├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── tests.yml ├── .gitignore ├── .vscode ├── settings.json └── toptout.code-snippets ├── LICENSE ├── README.md ├── data ├── README.md ├── accessmap.json ├── aerospike.json ├── alibuild.json ├── angular.json ├── appc-daemon.json ├── appcenter-cli.json ├── arduino-cli.json ├── atom.json ├── automagica.json ├── automated-lab.json ├── autospinstaller-online.json ├── aws-amplify-cli.json ├── aws-sam-cli.json ├── azure-cli.json ├── batect.json ├── botframework-cli.json ├── brave.json ├── buildbuddy.json ├── canvas-lms.json ├── capacitor.json ├── carbon-design-system.json ├── chef-automate.json ├── chef-workstation.json ├── choosenim.json ├── cocoapods.json ├── code-server.json ├── consul.json ├── cordova-cli.json ├── cube-js.json ├── dagger.json ├── dagster.json ├── deck.json ├── docker-desktop.json ├── dotnet-interactive.json ├── dotnet-svcutil.json ├── dvc.json ├── earthly.json ├── ember-cli.json ├── eternal-terminal.json ├── f5-big-tf.json ├── f5-cli.json ├── fastlane.json ├── feast.json ├── firefox.json ├── flagsmith-api.json ├── flutter.json ├── gatsby-js.json ├── golang.json ├── google-cloud-sdk.json ├── hasura.json ├── homebrew.json ├── hookdeck-cli.json ├── humbug.json ├── imagegear.json ├── influxdb.json ├── infracost.json ├── ionic-cli.json ├── k0s.json ├── k8slens.json ├── kics.json ├── kpow.json ├── kubeapt.json ├── local-wp.json ├── lynx-vfx.json ├── materialize.json ├── mattermost-server.json ├── meilisearch.json ├── meltano.json ├── microsoft-365-enterprise.json ├── microsoft-calculator.json ├── mlnet-cli.json ├── mslab.json ├── mssql-cli.json ├── net-core-sdk.json ├── netdata.json ├── netlify-cli.json ├── nextjs.json ├── nocodb.json ├── nuke.json ├── nuxt-js.json ├── nvidia-drivers.json ├── ohmyzsh.json ├── onecodex.json ├── openvz.json ├── ory.json ├── oryx.json ├── otel-launcher-node.json ├── packer.json ├── pants.json ├── pnp-powershell.json ├── power-platform-cli.json ├── powershell-core.json ├── prisma.json ├── projector-cli.json ├── prose-sdk.json ├── pulumi.json ├── pytket.json ├── quickwit.json ├── quilt.json ├── raft.json ├── rasa.json ├── react-admin.json ├── react-native-win.json ├── reportportal-js-client.json ├── reportportal-pytest-plugin.json ├── restler.json ├── rockset-cli.json ├── root-cause.json ├── rover-cli.json ├── salto-cli.json ├── scaleway-cli.json ├── serverless.json ├── sfctl.json ├── sfdx-cli.json ├── skaffold.json ├── sku.json ├── stenciljs.json ├── strapi.json ├── stripe-cli.json ├── telepresence.json ├── terraform-azurerm.json ├── terraform-cdk.json ├── terraform.json ├── tilt.json ├── timescaledb.json ├── tuist.json ├── typo3.json ├── ubiquiti-uisp.json ├── vagrant.json ├── vscode-app-insights.json ├── vscode-docs-yaml.json ├── vscode-esp-idf.json ├── vscode-js-debug.json ├── vscode-julia.json ├── vscode-printcode.json ├── vscode-rest-client.json ├── vscode-serverless-ide.json ├── vscode-terminal.json ├── vscode.json ├── vstest.json ├── vue-dx.json ├── wapm-cli.json ├── warp.json ├── weave-net.json ├── webhint.json ├── webiny.json ├── werf.json ├── windows-10.json ├── windows-terminal.json ├── winget-cli.json ├── wksctl.json └── yarn2.json ├── docs ├── .nojekyll ├── CNAME ├── README.md ├── api-docs │ ├── index.html │ └── openapi.yaml ├── api │ ├── category │ │ └── index.json │ ├── id │ │ └── index.json │ └── telemetry │ │ ├── category │ │ ├── applications │ │ │ └── index.json │ │ ├── cloud │ │ │ └── index.json │ │ ├── communications │ │ │ └── index.json │ │ ├── database │ │ │ └── index.json │ │ ├── development │ │ │ └── index.json │ │ ├── devops │ │ │ └── index.json │ │ ├── drivers │ │ │ └── index.json │ │ ├── operating-systems │ │ │ └── index.json │ │ ├── other │ │ │ └── index.json │ │ ├── shells │ │ │ └── index.json │ │ └── vscode-extension │ │ │ └── index.json │ │ ├── id │ │ ├── accessmap │ │ │ └── index.json │ │ ├── aerospike │ │ │ └── index.json │ │ ├── alibuild │ │ │ └── index.json │ │ ├── angular │ │ │ └── index.json │ │ ├── appc-daemon │ │ │ └── index.json │ │ ├── appcenter-cli │ │ │ └── index.json │ │ ├── arduino-cli │ │ │ └── index.json │ │ ├── atom │ │ │ └── index.json │ │ ├── automagica │ │ │ └── index.json │ │ ├── automated-lab │ │ │ └── index.json │ │ ├── autospinstaller-online │ │ │ └── index.json │ │ ├── aws-amplify-cli │ │ │ └── index.json │ │ ├── aws-sam-cli │ │ │ └── index.json │ │ ├── azure-cli │ │ │ └── index.json │ │ ├── batect │ │ │ └── index.json │ │ ├── botframework-cli │ │ │ └── index.json │ │ ├── brave │ │ │ └── index.json │ │ ├── buildbuddy │ │ │ └── index.json │ │ ├── canvas-lms │ │ │ └── index.json │ │ ├── capacitor │ │ │ └── index.json │ │ ├── carbon-design-system │ │ │ └── index.json │ │ ├── chef-automate │ │ │ └── index.json │ │ ├── chef-workstation │ │ │ └── index.json │ │ ├── choosenim │ │ │ └── index.json │ │ ├── cocoapods │ │ │ └── index.json │ │ ├── code-server │ │ │ └── index.json │ │ ├── consul │ │ │ └── index.json │ │ ├── cordova-cli │ │ │ └── index.json │ │ ├── cube-js │ │ │ └── index.json │ │ ├── dagger │ │ │ └── index.json │ │ ├── dagster │ │ │ └── index.json │ │ ├── deck │ │ │ └── index.json │ │ ├── docker-desktop │ │ │ └── index.json │ │ ├── dotnet-interactive │ │ │ └── index.json │ │ ├── dotnet-svcutil │ │ │ └── index.json │ │ ├── dvc │ │ │ └── index.json │ │ ├── earthly │ │ │ └── index.json │ │ ├── ember-cli │ │ │ └── index.json │ │ ├── eternal-terminal │ │ │ └── index.json │ │ ├── f5-big-tf │ │ │ └── index.json │ │ ├── f5-cli │ │ │ └── index.json │ │ ├── fastlane │ │ │ └── index.json │ │ ├── feast │ │ │ └── index.json │ │ ├── firefox │ │ │ └── index.json │ │ ├── flagsmith-api │ │ │ └── index.json │ │ ├── flutter │ │ │ └── index.json │ │ ├── gatsby-js │ │ │ └── index.json │ │ ├── golang │ │ │ └── index.json │ │ ├── google-cloud-sdk │ │ │ └── index.json │ │ ├── hasura │ │ │ └── index.json │ │ ├── homebrew │ │ │ └── index.json │ │ ├── hookdeck-cli │ │ │ └── index.json │ │ ├── humbug │ │ │ └── index.json │ │ ├── imagegear │ │ │ └── index.json │ │ ├── influxdb │ │ │ └── index.json │ │ ├── infracost │ │ │ └── index.json │ │ ├── ionic-cli │ │ │ └── index.json │ │ ├── k0s │ │ │ └── index.json │ │ ├── k8slens │ │ │ └── index.json │ │ ├── kics │ │ │ └── index.json │ │ ├── kpow │ │ │ └── index.json │ │ ├── kubeapt │ │ │ └── index.json │ │ ├── local-wp │ │ │ └── index.json │ │ ├── lynx-vfx │ │ │ └── index.json │ │ ├── materialize │ │ │ └── index.json │ │ ├── mattermost-server │ │ │ └── index.json │ │ ├── meilisearch │ │ │ └── index.json │ │ ├── meltano │ │ │ └── index.json │ │ ├── microsoft-365-enterprise │ │ │ └── index.json │ │ ├── microsoft-calculator │ │ │ └── index.json │ │ ├── mlnet-cli │ │ │ └── index.json │ │ ├── mslab │ │ │ └── index.json │ │ ├── mssql-cli │ │ │ └── index.json │ │ ├── net-core-sdk │ │ │ └── index.json │ │ ├── netdata │ │ │ └── index.json │ │ ├── netlify-cli │ │ │ └── index.json │ │ ├── nextjs │ │ │ └── index.json │ │ ├── nocodb │ │ │ └── index.json │ │ ├── nuke │ │ │ └── index.json │ │ ├── nuxt-js │ │ │ └── index.json │ │ ├── nvidia-drivers │ │ │ └── index.json │ │ ├── ohmyzsh │ │ │ └── index.json │ │ ├── onecodex │ │ │ └── index.json │ │ ├── openvz │ │ │ └── index.json │ │ ├── ory │ │ │ └── index.json │ │ ├── oryx │ │ │ └── index.json │ │ ├── otel-launcher-node │ │ │ └── index.json │ │ ├── packer │ │ │ └── index.json │ │ ├── pants │ │ │ └── index.json │ │ ├── pnp-powershell │ │ │ └── index.json │ │ ├── power-platform-cli │ │ │ └── index.json │ │ ├── powershell-core │ │ │ └── index.json │ │ ├── prisma │ │ │ └── index.json │ │ ├── projector-cli │ │ │ └── index.json │ │ ├── prose-sdk │ │ │ └── index.json │ │ ├── pulumi │ │ │ └── index.json │ │ ├── pytket │ │ │ └── index.json │ │ ├── quickwit │ │ │ └── index.json │ │ ├── quilt │ │ │ └── index.json │ │ ├── raft │ │ │ └── index.json │ │ ├── rasa │ │ │ └── index.json │ │ ├── react-admin │ │ │ └── index.json │ │ ├── react-native-win │ │ │ └── index.json │ │ ├── reportportal-js-client │ │ │ └── index.json │ │ ├── reportportal-pytest-plugin │ │ │ └── index.json │ │ ├── restler │ │ │ └── index.json │ │ ├── rockset-cli │ │ │ └── index.json │ │ ├── root-cause │ │ │ └── index.json │ │ ├── rover-cli │ │ │ └── index.json │ │ ├── salto-cli │ │ │ └── index.json │ │ ├── scaleway-cli │ │ │ └── index.json │ │ ├── serverless │ │ │ └── index.json │ │ ├── sfctl │ │ │ └── index.json │ │ ├── sfdx-cli │ │ │ └── index.json │ │ ├── skaffold │ │ │ └── index.json │ │ ├── sku │ │ │ └── index.json │ │ ├── stenciljs │ │ │ └── index.json │ │ ├── strapi │ │ │ └── index.json │ │ ├── stripe-cli │ │ │ └── index.json │ │ ├── telepresence │ │ │ └── index.json │ │ ├── terraform-azurerm │ │ │ └── index.json │ │ ├── terraform-cdk │ │ │ └── index.json │ │ ├── terraform │ │ │ └── index.json │ │ ├── tilt │ │ │ └── index.json │ │ ├── timescaledb │ │ │ └── index.json │ │ ├── tuist │ │ │ └── index.json │ │ ├── typo3 │ │ │ └── index.json │ │ ├── ubiquiti-uisp │ │ │ └── index.json │ │ ├── vagrant │ │ │ └── index.json │ │ ├── vscode-app-insights │ │ │ └── index.json │ │ ├── vscode-docs-yaml │ │ │ └── index.json │ │ ├── vscode-esp-idf │ │ │ └── index.json │ │ ├── vscode-js-debug │ │ │ └── index.json │ │ ├── vscode-julia │ │ │ └── index.json │ │ ├── vscode-printcode │ │ │ └── index.json │ │ ├── vscode-rest-client │ │ │ └── index.json │ │ ├── vscode-serverless-ide │ │ │ └── index.json │ │ ├── vscode-terminal │ │ │ └── index.json │ │ ├── vscode │ │ │ └── index.json │ │ ├── vstest │ │ │ └── index.json │ │ ├── vue-dx │ │ │ └── index.json │ │ ├── wapm-cli │ │ │ └── index.json │ │ ├── warp │ │ │ └── index.json │ │ ├── weave-net │ │ │ └── index.json │ │ ├── webhint │ │ │ └── index.json │ │ ├── webiny │ │ │ └── index.json │ │ ├── werf │ │ │ └── index.json │ │ ├── windows-10 │ │ │ └── index.json │ │ ├── windows-terminal │ │ │ └── index.json │ │ ├── winget-cli │ │ │ └── index.json │ │ ├── wksctl │ │ │ └── index.json │ │ └── yarn2 │ │ │ └── index.json │ │ └── index.json └── index.html ├── examples ├── README.md ├── toptout_bash.sh └── toptout_pwsh.ps1 ├── helpers ├── README.md ├── common.ps1 ├── readme.ps1 └── shell.ps1 ├── media ├── script.png ├── toptout.png └── vscode.png ├── schema ├── .redocly.lint-ignore.yaml ├── openapi.yaml └── toptout.schema.json └── tests ├── code.tests.ps1 └── data.tests.ps1 /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # PowerShell dependencies 2 | .packages 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/toptout.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/.vscode/toptout.code-snippets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/README.md -------------------------------------------------------------------------------- /data/accessmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/accessmap.json -------------------------------------------------------------------------------- /data/aerospike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/aerospike.json -------------------------------------------------------------------------------- /data/alibuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/alibuild.json -------------------------------------------------------------------------------- /data/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/angular.json -------------------------------------------------------------------------------- /data/appc-daemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/appc-daemon.json -------------------------------------------------------------------------------- /data/appcenter-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/appcenter-cli.json -------------------------------------------------------------------------------- /data/arduino-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/arduino-cli.json -------------------------------------------------------------------------------- /data/atom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/atom.json -------------------------------------------------------------------------------- /data/automagica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/automagica.json -------------------------------------------------------------------------------- /data/automated-lab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/automated-lab.json -------------------------------------------------------------------------------- /data/autospinstaller-online.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/autospinstaller-online.json -------------------------------------------------------------------------------- /data/aws-amplify-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/aws-amplify-cli.json -------------------------------------------------------------------------------- /data/aws-sam-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/aws-sam-cli.json -------------------------------------------------------------------------------- /data/azure-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/azure-cli.json -------------------------------------------------------------------------------- /data/batect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/batect.json -------------------------------------------------------------------------------- /data/botframework-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/botframework-cli.json -------------------------------------------------------------------------------- /data/brave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/brave.json -------------------------------------------------------------------------------- /data/buildbuddy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/buildbuddy.json -------------------------------------------------------------------------------- /data/canvas-lms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/canvas-lms.json -------------------------------------------------------------------------------- /data/capacitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/capacitor.json -------------------------------------------------------------------------------- /data/carbon-design-system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/carbon-design-system.json -------------------------------------------------------------------------------- /data/chef-automate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/chef-automate.json -------------------------------------------------------------------------------- /data/chef-workstation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/chef-workstation.json -------------------------------------------------------------------------------- /data/choosenim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/choosenim.json -------------------------------------------------------------------------------- /data/cocoapods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/cocoapods.json -------------------------------------------------------------------------------- /data/code-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/code-server.json -------------------------------------------------------------------------------- /data/consul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/consul.json -------------------------------------------------------------------------------- /data/cordova-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/cordova-cli.json -------------------------------------------------------------------------------- /data/cube-js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/cube-js.json -------------------------------------------------------------------------------- /data/dagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/dagger.json -------------------------------------------------------------------------------- /data/dagster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/dagster.json -------------------------------------------------------------------------------- /data/deck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/deck.json -------------------------------------------------------------------------------- /data/docker-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/docker-desktop.json -------------------------------------------------------------------------------- /data/dotnet-interactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/dotnet-interactive.json -------------------------------------------------------------------------------- /data/dotnet-svcutil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/dotnet-svcutil.json -------------------------------------------------------------------------------- /data/dvc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/dvc.json -------------------------------------------------------------------------------- /data/earthly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/earthly.json -------------------------------------------------------------------------------- /data/ember-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/ember-cli.json -------------------------------------------------------------------------------- /data/eternal-terminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/eternal-terminal.json -------------------------------------------------------------------------------- /data/f5-big-tf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/f5-big-tf.json -------------------------------------------------------------------------------- /data/f5-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/f5-cli.json -------------------------------------------------------------------------------- /data/fastlane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/fastlane.json -------------------------------------------------------------------------------- /data/feast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/feast.json -------------------------------------------------------------------------------- /data/firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/firefox.json -------------------------------------------------------------------------------- /data/flagsmith-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/flagsmith-api.json -------------------------------------------------------------------------------- /data/flutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/flutter.json -------------------------------------------------------------------------------- /data/gatsby-js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/gatsby-js.json -------------------------------------------------------------------------------- /data/golang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/golang.json -------------------------------------------------------------------------------- /data/google-cloud-sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/google-cloud-sdk.json -------------------------------------------------------------------------------- /data/hasura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/hasura.json -------------------------------------------------------------------------------- /data/homebrew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/homebrew.json -------------------------------------------------------------------------------- /data/hookdeck-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/hookdeck-cli.json -------------------------------------------------------------------------------- /data/humbug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/humbug.json -------------------------------------------------------------------------------- /data/imagegear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/imagegear.json -------------------------------------------------------------------------------- /data/influxdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/influxdb.json -------------------------------------------------------------------------------- /data/infracost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/infracost.json -------------------------------------------------------------------------------- /data/ionic-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/ionic-cli.json -------------------------------------------------------------------------------- /data/k0s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/k0s.json -------------------------------------------------------------------------------- /data/k8slens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/k8slens.json -------------------------------------------------------------------------------- /data/kics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/kics.json -------------------------------------------------------------------------------- /data/kpow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/kpow.json -------------------------------------------------------------------------------- /data/kubeapt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/kubeapt.json -------------------------------------------------------------------------------- /data/local-wp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/local-wp.json -------------------------------------------------------------------------------- /data/lynx-vfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/lynx-vfx.json -------------------------------------------------------------------------------- /data/materialize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/materialize.json -------------------------------------------------------------------------------- /data/mattermost-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/mattermost-server.json -------------------------------------------------------------------------------- /data/meilisearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/meilisearch.json -------------------------------------------------------------------------------- /data/meltano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/meltano.json -------------------------------------------------------------------------------- /data/microsoft-365-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/microsoft-365-enterprise.json -------------------------------------------------------------------------------- /data/microsoft-calculator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/microsoft-calculator.json -------------------------------------------------------------------------------- /data/mlnet-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/mlnet-cli.json -------------------------------------------------------------------------------- /data/mslab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/mslab.json -------------------------------------------------------------------------------- /data/mssql-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/mssql-cli.json -------------------------------------------------------------------------------- /data/net-core-sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/net-core-sdk.json -------------------------------------------------------------------------------- /data/netdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/netdata.json -------------------------------------------------------------------------------- /data/netlify-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/netlify-cli.json -------------------------------------------------------------------------------- /data/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/nextjs.json -------------------------------------------------------------------------------- /data/nocodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/nocodb.json -------------------------------------------------------------------------------- /data/nuke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/nuke.json -------------------------------------------------------------------------------- /data/nuxt-js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/nuxt-js.json -------------------------------------------------------------------------------- /data/nvidia-drivers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/nvidia-drivers.json -------------------------------------------------------------------------------- /data/ohmyzsh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/ohmyzsh.json -------------------------------------------------------------------------------- /data/onecodex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/onecodex.json -------------------------------------------------------------------------------- /data/openvz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/openvz.json -------------------------------------------------------------------------------- /data/ory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/ory.json -------------------------------------------------------------------------------- /data/oryx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/oryx.json -------------------------------------------------------------------------------- /data/otel-launcher-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/otel-launcher-node.json -------------------------------------------------------------------------------- /data/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/packer.json -------------------------------------------------------------------------------- /data/pants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/pants.json -------------------------------------------------------------------------------- /data/pnp-powershell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/pnp-powershell.json -------------------------------------------------------------------------------- /data/power-platform-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/power-platform-cli.json -------------------------------------------------------------------------------- /data/powershell-core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/powershell-core.json -------------------------------------------------------------------------------- /data/prisma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/prisma.json -------------------------------------------------------------------------------- /data/projector-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/projector-cli.json -------------------------------------------------------------------------------- /data/prose-sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/prose-sdk.json -------------------------------------------------------------------------------- /data/pulumi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/pulumi.json -------------------------------------------------------------------------------- /data/pytket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/pytket.json -------------------------------------------------------------------------------- /data/quickwit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/quickwit.json -------------------------------------------------------------------------------- /data/quilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/quilt.json -------------------------------------------------------------------------------- /data/raft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/raft.json -------------------------------------------------------------------------------- /data/rasa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/rasa.json -------------------------------------------------------------------------------- /data/react-admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/react-admin.json -------------------------------------------------------------------------------- /data/react-native-win.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/react-native-win.json -------------------------------------------------------------------------------- /data/reportportal-js-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/reportportal-js-client.json -------------------------------------------------------------------------------- /data/reportportal-pytest-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/reportportal-pytest-plugin.json -------------------------------------------------------------------------------- /data/restler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/restler.json -------------------------------------------------------------------------------- /data/rockset-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/rockset-cli.json -------------------------------------------------------------------------------- /data/root-cause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/root-cause.json -------------------------------------------------------------------------------- /data/rover-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/rover-cli.json -------------------------------------------------------------------------------- /data/salto-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/salto-cli.json -------------------------------------------------------------------------------- /data/scaleway-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/scaleway-cli.json -------------------------------------------------------------------------------- /data/serverless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/serverless.json -------------------------------------------------------------------------------- /data/sfctl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/sfctl.json -------------------------------------------------------------------------------- /data/sfdx-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/sfdx-cli.json -------------------------------------------------------------------------------- /data/skaffold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/skaffold.json -------------------------------------------------------------------------------- /data/sku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/sku.json -------------------------------------------------------------------------------- /data/stenciljs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/stenciljs.json -------------------------------------------------------------------------------- /data/strapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/strapi.json -------------------------------------------------------------------------------- /data/stripe-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/stripe-cli.json -------------------------------------------------------------------------------- /data/telepresence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/telepresence.json -------------------------------------------------------------------------------- /data/terraform-azurerm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/terraform-azurerm.json -------------------------------------------------------------------------------- /data/terraform-cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/terraform-cdk.json -------------------------------------------------------------------------------- /data/terraform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/terraform.json -------------------------------------------------------------------------------- /data/tilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/tilt.json -------------------------------------------------------------------------------- /data/timescaledb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/timescaledb.json -------------------------------------------------------------------------------- /data/tuist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/tuist.json -------------------------------------------------------------------------------- /data/typo3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/typo3.json -------------------------------------------------------------------------------- /data/ubiquiti-uisp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/ubiquiti-uisp.json -------------------------------------------------------------------------------- /data/vagrant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vagrant.json -------------------------------------------------------------------------------- /data/vscode-app-insights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-app-insights.json -------------------------------------------------------------------------------- /data/vscode-docs-yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-docs-yaml.json -------------------------------------------------------------------------------- /data/vscode-esp-idf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-esp-idf.json -------------------------------------------------------------------------------- /data/vscode-js-debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-js-debug.json -------------------------------------------------------------------------------- /data/vscode-julia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-julia.json -------------------------------------------------------------------------------- /data/vscode-printcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-printcode.json -------------------------------------------------------------------------------- /data/vscode-rest-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-rest-client.json -------------------------------------------------------------------------------- /data/vscode-serverless-ide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-serverless-ide.json -------------------------------------------------------------------------------- /data/vscode-terminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode-terminal.json -------------------------------------------------------------------------------- /data/vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vscode.json -------------------------------------------------------------------------------- /data/vstest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vstest.json -------------------------------------------------------------------------------- /data/vue-dx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/vue-dx.json -------------------------------------------------------------------------------- /data/wapm-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/wapm-cli.json -------------------------------------------------------------------------------- /data/warp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/warp.json -------------------------------------------------------------------------------- /data/weave-net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/weave-net.json -------------------------------------------------------------------------------- /data/webhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/webhint.json -------------------------------------------------------------------------------- /data/webiny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/webiny.json -------------------------------------------------------------------------------- /data/werf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/werf.json -------------------------------------------------------------------------------- /data/windows-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/windows-10.json -------------------------------------------------------------------------------- /data/windows-terminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/windows-terminal.json -------------------------------------------------------------------------------- /data/winget-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/winget-cli.json -------------------------------------------------------------------------------- /data/wksctl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/wksctl.json -------------------------------------------------------------------------------- /data/yarn2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/data/yarn2.json -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | toptout.me -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api-docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api-docs/index.html -------------------------------------------------------------------------------- /docs/api-docs/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api-docs/openapi.yaml -------------------------------------------------------------------------------- /docs/api/category/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/category/index.json -------------------------------------------------------------------------------- /docs/api/id/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/id/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/applications/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/applications/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/cloud/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/cloud/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/communications/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/communications/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/database/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/database/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/development/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/development/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/devops/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/devops/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/drivers/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/drivers/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/operating-systems/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/operating-systems/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/other/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/other/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/shells/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/shells/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/category/vscode-extension/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/category/vscode-extension/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/accessmap/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/accessmap/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/aerospike/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/aerospike/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/alibuild/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/alibuild/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/angular/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/angular/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/appc-daemon/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/appc-daemon/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/appcenter-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/appcenter-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/arduino-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/arduino-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/atom/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/atom/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/automagica/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/automagica/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/automated-lab/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/automated-lab/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/autospinstaller-online/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/autospinstaller-online/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/aws-amplify-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/aws-amplify-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/aws-sam-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/aws-sam-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/azure-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/azure-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/batect/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/batect/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/botframework-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/botframework-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/brave/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/brave/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/buildbuddy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/buildbuddy/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/canvas-lms/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/canvas-lms/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/capacitor/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/capacitor/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/carbon-design-system/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/carbon-design-system/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/chef-automate/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/chef-automate/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/chef-workstation/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/chef-workstation/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/choosenim/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/choosenim/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/cocoapods/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/cocoapods/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/code-server/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/code-server/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/consul/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/consul/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/cordova-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/cordova-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/cube-js/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/cube-js/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/dagger/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/dagger/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/dagster/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/dagster/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/deck/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/deck/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/docker-desktop/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/docker-desktop/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/dotnet-interactive/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/dotnet-interactive/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/dotnet-svcutil/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/dotnet-svcutil/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/dvc/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/dvc/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/earthly/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/earthly/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/ember-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/ember-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/eternal-terminal/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/eternal-terminal/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/f5-big-tf/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/f5-big-tf/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/f5-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/f5-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/fastlane/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/fastlane/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/feast/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/feast/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/firefox/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/firefox/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/flagsmith-api/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/flagsmith-api/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/flutter/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/flutter/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/gatsby-js/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/gatsby-js/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/golang/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/golang/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/google-cloud-sdk/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/google-cloud-sdk/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/hasura/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/hasura/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/homebrew/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/homebrew/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/hookdeck-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/hookdeck-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/humbug/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/humbug/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/imagegear/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/imagegear/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/influxdb/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/influxdb/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/infracost/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/infracost/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/ionic-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/ionic-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/k0s/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/k0s/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/k8slens/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/k8slens/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/kics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/kics/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/kpow/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/kpow/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/kubeapt/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/kubeapt/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/local-wp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/local-wp/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/lynx-vfx/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/lynx-vfx/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/materialize/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/materialize/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/mattermost-server/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/mattermost-server/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/meilisearch/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/meilisearch/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/meltano/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/meltano/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/microsoft-365-enterprise/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/microsoft-365-enterprise/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/microsoft-calculator/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/microsoft-calculator/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/mlnet-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/mlnet-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/mslab/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/mslab/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/mssql-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/mssql-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/net-core-sdk/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/net-core-sdk/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/netdata/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/netdata/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/netlify-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/netlify-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/nextjs/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/nextjs/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/nocodb/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/nocodb/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/nuke/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/nuke/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/nuxt-js/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/nuxt-js/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/nvidia-drivers/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/nvidia-drivers/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/ohmyzsh/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/ohmyzsh/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/onecodex/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/onecodex/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/openvz/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/openvz/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/ory/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/ory/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/oryx/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/oryx/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/otel-launcher-node/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/otel-launcher-node/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/packer/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/packer/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/pants/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/pants/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/pnp-powershell/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/pnp-powershell/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/power-platform-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/power-platform-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/powershell-core/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/powershell-core/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/prisma/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/prisma/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/projector-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/projector-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/prose-sdk/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/prose-sdk/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/pulumi/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/pulumi/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/pytket/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/pytket/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/quickwit/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/quickwit/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/quilt/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/quilt/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/raft/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/raft/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/rasa/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/rasa/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/react-admin/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/react-admin/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/react-native-win/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/react-native-win/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/reportportal-js-client/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/reportportal-js-client/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/reportportal-pytest-plugin/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/reportportal-pytest-plugin/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/restler/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/restler/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/rockset-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/rockset-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/root-cause/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/root-cause/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/rover-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/rover-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/salto-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/salto-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/scaleway-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/scaleway-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/serverless/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/serverless/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/sfctl/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/sfctl/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/sfdx-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/sfdx-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/skaffold/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/skaffold/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/sku/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/sku/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/stenciljs/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/stenciljs/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/strapi/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/strapi/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/stripe-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/stripe-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/telepresence/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/telepresence/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/terraform-azurerm/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/terraform-azurerm/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/terraform-cdk/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/terraform-cdk/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/terraform/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/terraform/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/tilt/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/tilt/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/timescaledb/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/timescaledb/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/tuist/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/tuist/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/typo3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/typo3/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/ubiquiti-uisp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/ubiquiti-uisp/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vagrant/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vagrant/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-app-insights/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-app-insights/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-docs-yaml/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-docs-yaml/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-esp-idf/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-esp-idf/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-js-debug/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-js-debug/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-julia/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-julia/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-printcode/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-printcode/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-rest-client/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-rest-client/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-serverless-ide/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-serverless-ide/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode-terminal/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode-terminal/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vscode/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vscode/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vstest/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vstest/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/vue-dx/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/vue-dx/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/wapm-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/wapm-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/warp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/warp/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/weave-net/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/weave-net/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/webhint/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/webhint/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/webiny/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/webiny/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/werf/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/werf/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/windows-10/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/windows-10/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/windows-terminal/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/windows-terminal/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/winget-cli/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/winget-cli/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/wksctl/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/wksctl/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/id/yarn2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/id/yarn2/index.json -------------------------------------------------------------------------------- /docs/api/telemetry/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/api/telemetry/index.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/docs/index.html -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/toptout_bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/examples/toptout_bash.sh -------------------------------------------------------------------------------- /examples/toptout_pwsh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/examples/toptout_pwsh.ps1 -------------------------------------------------------------------------------- /helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/helpers/README.md -------------------------------------------------------------------------------- /helpers/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/helpers/common.ps1 -------------------------------------------------------------------------------- /helpers/readme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/helpers/readme.ps1 -------------------------------------------------------------------------------- /helpers/shell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/helpers/shell.ps1 -------------------------------------------------------------------------------- /media/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/media/script.png -------------------------------------------------------------------------------- /media/toptout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/media/toptout.png -------------------------------------------------------------------------------- /media/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/media/vscode.png -------------------------------------------------------------------------------- /schema/.redocly.lint-ignore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/schema/.redocly.lint-ignore.yaml -------------------------------------------------------------------------------- /schema/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/schema/openapi.yaml -------------------------------------------------------------------------------- /schema/toptout.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/schema/toptout.schema.json -------------------------------------------------------------------------------- /tests/code.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/tests/code.tests.ps1 -------------------------------------------------------------------------------- /tests/data.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/toptout/HEAD/tests/data.tests.ps1 --------------------------------------------------------------------------------