This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # macos-dyld-cache-analyse.sh | |
| # https://gist.github.com/StudioEtrange/8c2801df68969538cfccc6dcdb8d6bcc | |
| # Author: StudioEtrange https://github.com/StudioEtrange | |
| # License: MIT | |
| set -euo pipefail | |
| man() { | |
| cat <<MAN | |
| Usage: macos-dyld-cache-analyse.sh [options] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # macos-link-analyse.sh | |
| # https://gist.github.com/StudioEtrange/c2f1a2f625c5745c84dda2bc02fea4eb | |
| # Author: StudioEtrange https://github.com/StudioEtrange | |
| # License: MIT | |
| set -euo pipefail | |
| man() { | |
| cat <<MAN | |
| Purpose: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # homebrew-get-bottle.sh | |
| # https://gist.github.com/StudioEtrange/5b0eac67f8917d7bc69e01d262854b5b | |
| # Author: StudioEtrange https://github.com/StudioEtrange | |
| # License: MIT | |
| # --- Options parsing --- | |
| usage() { | |
| cat <<EOF |
To install the official linux development environment on android which is a vm debian :
- 1 - settings > About > press 7 times on build number to activate developper mode
- 2 - settings > system > developpeur option > activate linux environment development
- 3 . launch the new terminal launcher
-
Rancher Desktop
- https://rancherdesktop.io/
- Container and Kubernetes management
- windows, macos, linux
-
wsl2-distro-manager
-
A GUI to quickly manage your WSL2 instances
- Microsoft VSCode marketplace : https://marketplace.visualstudio.com/VSCode
- Container Tools : https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-containers
- Kubernetes : https://marketplace.visualstudio.com/items?itemName=ms-kubernetes-tools.vscode-kubernetes-tools
- Git Graph v3 : https://marketplace.visualstudio.com/items?itemName=Gxl.git-graph-3
- Remote SSH : https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh
- WSL : https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Useful references: | |
| # | |
| # https://superuser.com/questions/992511/emulate-a-keyboard-button-via-the-command-line | |
| # https://ss64.com/vb/sendkeys.html | |
| # https://social.technet.microsoft.com/Forums/windowsserver/en-US/96b339e2-e9da-4802-a66d-be619aeb21ac/execute-function-one-time-in-every-10-mins-in-windows-powershell?forum=winserverpowershell | |
| # https://learn-powershell.net/2013/02/08/powershell-and-events-object-events/ | |
| # | |
| # Future enhancements - use events rather than an infinite loop | |
| while (1) { | |
| $wsh = New-Object -ComObject WScript.Shell |
NewerOlder