This guide covers all supported ways to fully remove OpenClaw, including cases where the CLI is missing but background services are still running.
Use this if the openclaw command still works.
| #!/bin/bash | |
| set -euo pipefail | |
| # Configuration | |
| UPS_NAME="my-ups" | |
| UPS_USER="ups-admin" | |
| UPS_PASS="super-secret-password" | |
| EMAIL_RECIPIENT="youremail@example.com" | |
| CHECK_INTERVAL=10 # Seconds between status checks |
| # | |
| # This is how to access the online service of Microsoft Office 365 by IMAP protocol in Ruby. | |
| # | |
| # It uses OAUTH2 authentication through the browser. | |
| # The authentication is done with the Thunderbird client_id, so that it should work equally to your Thunderbird access. | |
| # | |
| # Adjust your mail address: | |
| email_address = 'your.name@domain.onmicrosoft.com' |
| #!/bin/bash | |
| # Credits | |
| # DiabloSat - https://github.com/progzone122 | |
| # Andrés Alberto - https://gist.github.com/andriandreo | |
| while true; do | |
| # Capture the current clipboard content | |
| clipboard_content=$(wl-paste) | |
| # Remove trailing newlines using sed | |
| cleaned_content=$(echo "$clipboard_content" | sed ':a; /^$/{$d; N;}; /\n$/ba') |
My laptop specs: MSI Bravo 15 B7E
git clone --recursive https://github.com/ollama/ollama.gitcd ollamaDate of the guide : April, 2026
In this post, I will provide the solution that worked on my system on how to install Radeon Open Compute (ROCm) on Arch (linux- 6.19.11.arch1-1) for RX 6900 XT (Should work on other 6000 series and more recent). ROCm is an open-source software platform that allows GPU-accelerated computation. This tool is a prerequist to use GPU Acceleration on TensorFlow or PyTorch.
| ####### | |
| ## These results are still open to the public. See | |
| ## https://blog.ktz.me/the-best-media-server-cpu-in-the-world/ | |
| ## for analysis of them. | |
| # https://github.com/ironicbadger/quicksync_calc | |
| # zoidberg - dell 7040 sff pc | |
| CPU TEST FILE BITRATE TIME AVG_FPS AVG_SPEED AVG_WATTS | |
| i5-6600T h264_1080p_cpu ribblehead_1080p_h264 18952 kb/s 116.352s 29.88 1.04x N/A |
| #!/usr/bin/env bash | |
| # current_shell_rcfile() { | |
| # if [ -n "$BASH_VERSION" ]; then | |
| # printf "%s\n" ~/.bashrc | |
| # elif [ -n "$ZSH_VERSION" ]; then | |
| # printf "%s\n" ~/.zshrc | |
| # elif [ -n "$FISH_VERSION" ]; then | |
| # printf "%s\n" ~/.config/fish/config.fish | |
| # elif [ -n "$XONSH_VERSION" ]; then |
| // insert into ~/.config/waybar/config | |
| "custom/ddc_brightness": { | |
| // I don't even want to know why this works. | |
| // Change it to the following for your custom icons, | |
| // current format is a hack for Material Symbols to display normally: | |
| // "format": "{icon} {percentage}%", | |
| "format": "<span rise='-2pt' size='12pt'>{icon}</span> <span rise='1pt' size='10pt'>{percentage}%</span>", | |
| "format-icons": [ | |
| // Icons from Google Material Symbols. |