Use the following commands to add the kubectl autocomplete to zsh:
mkdir -p ~/.oh-my-zsh/custom/plugins/kubectl-autocomplete/
kubectl completion zsh > ~/.oh-my-zsh/custom/plugins/kubectl-autocomplete/kubectl-autocomplete.plugin.zsh| # How to fully uninstall Logitech G HUB on macOS via terminal/command line | |
| # Tested on macOS version 12.3.1 (21E258) Monterey in April 2022 | |
| # with Logitech G HUB version 2022.3.242300 (released on 2022-03-22) installed. | |
| # 1. Make sure "Logitech G HUB" itself is not running. If it is, quit it. | |
| # 2. Open "Activity Monitor" and force-quit all processes named "lghub*". | |
| # 3. Delete system-wide files | |
| sudo rm -rf /Applications/lghub.app |
| #!/bin/sh | |
| # Set bash behaviour | |
| set -eux | |
| # Configure sonar version | |
| SONAR_SCANNER_VERSION=4.6.2.2472 | |
| # Install dependencies | |
| apk add --no-cache \ |
| #!/bin/bash | |
| # usage: | |
| # checker "https://myapp.com" | |
| counter=0 | |
| while true | |
| do | |
| counter=$((counter + 1)) | |
| status=$(curl -o /dev/null -s -w "%{http_code}\n" ${1}) |
| version: '3' | |
| # Networks | |
| networks: | |
| # Internal network | |
| internal: | |
| driver: bridge | |
| # Volumes | |
| volumes: |
| sudo apt-get update | |
| echo 'installing curl' | |
| sudo apt install curl -y | |
| echo 'installing git' | |
| sudo apt install git -y | |
| echo "What name do you want to use in GIT user.name?" | |
| read git_config_user_name |
| <?php | |
| $array = array( | |
| array('texto'=>'Olá ' . $_POST['nome'] . '!'), | |
| array('texto'=>'Bem-vindo(a) ' . $_POST['nome']), | |
| array('texto'=>'Tudo bem ' . $_POST['nome']) | |
| ); | |
| echo json_encode($array); |
| FROM node:10.15-alpine as base | |
| RUN apk --no-cache --virtual build-dependencies add \ | |
| python \ | |
| make \ | |
| g++ \ | |
| && rm -f /var/cache/apk/* \ | |
| && npm config set unsafe-perm true \ | |
| && npm install --quiet node-gyp -g --cache /tmp/empty-cache |