I hereby claim:
- I am sebastiaankloos on github.
- I am skloos (https://keybase.io/skloos) on keybase.
- I have a public key ASA7wPKqWcMK64Ak9I2qlBQ_-ONJ44H77WVKHbNyPsDAQwo
To claim this, I am signing this object:
| #!/bin/bash | |
| # ============================================================ | |
| # Server Security Check Script | |
| # Controleert op verdachte processen, open poorten en | |
| # misconfiguraties na een incident of als preventieve check. | |
| # Gebruik: sudo bash security_check.sh | |
| # ============================================================ | |
| RED='\033[0;31m' | |
| YELLOW='\033[1;33m' |
| <?php | |
| namespace Valet\Drivers\Custom; | |
| use Valet\Drivers\ValetDriver; | |
| class MoodleValetDriver extends ValetDriver | |
| { | |
| public function serves(string $sitePath, string $siteName, string $uri): bool | |
| { |
| #!/bin/bash | |
| # Check if a path argument is provided | |
| if [ $# -eq 0 ]; then | |
| echo "Please provide the path to the local repository." | |
| exit 1 | |
| fi | |
| # Get the absolute path of the provided directory | |
| repo_path=$(cd "$1" && pwd) |
| #!/bin/bash | |
| read -p "Enter domain name (e.g. example.com): " domain_name | |
| HOME_DIR=$HOME | |
| # Check if source exists | |
| if [ ! -d "$HOME_DIR/$domain_name/storage" ]; then | |
| echo "Error: Source storage directory not found" | |
| exit 1 | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/osascript | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title Position Ray | |
| # @raycast.mode compact | |
| # Optional parameters: | |
| # @raycast.packageName Developer Utils |
| #!/bin/bash | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title Arc icon | |
| # @raycast.mode compact | |
| # Optional parameters: | |
| # @raycast.icon 🔪 | |
| # @raycast.argument1 { "type": "text", "placeholder": "Icon" } |
| #!/usr/bin/osascript | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title Screenshot resize | |
| # @raycast.mode silent | |
| # Optional parameters: | |
| # @raycast.icon 📸 | |
| # @raycast.packageName Utilities |