brew install proxychains-ng
/opt/homebrew/etc/proxychains.conf
[ProxyList] socks5 127.0.0.1 8080
proxychains4 /Applications/Abc/Content/MacOS/Abc
brew install proxychains-ng
/opt/homebrew/etc/proxychains.conf
[ProxyList] socks5 127.0.0.1 8080
proxychains4 /Applications/Abc/Content/MacOS/Abc
Aerial drone photo of Godzilla breaching Marina Bay, shot from directly overhead. The monster's massive dorsal plates slice through the bay's turquoise water, leaving a violent wake that crashes against the Esplanade's glass domes. Marina Bay Sands' three towers and SkyPark are perfectly framed in the upper right, giving scale to the creature's enormity. Below, traffic has stopped on the Helix Bridge as tiny figures scatter. Saltwater sprays in crystalline arcs under harsh midday sun, creating prismatic light effects. The beast's charcoal-black hide shows battle scars and barnacles, with realistic water beading and streaming off its ridged back. Helicopters hover at a safe distance, their rotors whipping up additional spray patterns. The entire scene maintains photojournalistic authenticity – motion blur on fleeing crowds, accurate shadows and reflections, heat haze rising from the monster's body. |
Ultra-realistic aerial photograph of Singapore in 2049, shot from the height of a 15th-storey apartment. The familiar Marina Bay Sands still stands, its once-pristine infinity pool now edged by a discreet sea-wall. Victoria and Clifford Piers have become a dense lattice of timber boardwalks on reclaimed concrete pylons, connecting to new three-storey stilt houses painted in the same pastel palette as HDB blocks—just higher. The Singapore River, now tidal, laps at the base of Raffles Place; glass towers still glint, but their ground floors have been retro-fitted with roll-down flood barriers in brushed aluminium. Across the bay, Gardens by the Bay remains instantly recognisable, yet the Supertree Grove is crowned with thin photovoltaic canopies angled against stronger sun. To the left, the ArtScience Museum’s lotus petals are half-submerged; a new pedestrian bridge—simple precast concrete segments on galvanized piles—cuts straight from its steps to Merlion Park, now relocated a few metres up-slope on a modest |
Complete setup for 20 concurrent users with web-based remote desktop access via Apache Guacamole, RDP, and Cloudflare tunnel on Ubuntu 24.04 LTS.
# Multi-User VNC Setup Guide | |
Complete setup for 20 concurrent VNC sessions with web access via Cloudflare tunnel on Ubuntu 24.04 LTS. | |
## Prerequisites | |
- Bare metal Ubuntu 24.04 LTS server | |
- SSH access as root | |
- Domain configured with Cloudflare |
#!/bin/bash | |
# --- Configuration --- | |
# Define the maximum size for each zip file in bytes (4 GB) | |
# 1 GB = 1024 * 1024 * 1024 bytes | |
MAX_SIZE_BYTES=$((4 * 1024 * 1024 * 1024)) | |
# Define the prefix for the zip file names (e.g., archive_001.zip, archive_002.zip) | |
ZIP_PREFIX="archive" |
The XModules are add-ons for the UI.Vision browser extensions. If you open the browser extension now, the XModules should be displayed as “Installed”. | |
macOS Catalina/Big Sur: Please note that you need to allow the XModules to take screenshots (etc) in the Mac's Privacy settings. For more details see: https://ui.vision/rpa/x/download#install-mac | |
If you have any question, please ask in the user forum athttps://forum.ui.vision/ | |
Uninstall UI.Vision XModules | |
Run the following command to uninstall UI.Vision XModules. | |
$ sudo bash /Library/uivision-xmodules/2.2.2/uninstall.sh |
export ANTHROPIC_API_KEY=sk-XXXX | |
docker run \ | |
-e ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY \ | |
-v $HOME/.anthropic:/home/computeruse/.anthropic \ | |
-p 5900:5900 \ | |
-p 8501:8501 \ | |
-p 6080:6080 \ | |
-p 8080:8080 \ | |
-it ghcr.io/anthropics/anthropic-quickstarts:computer-use-demo-latest |
curl --location 'localhost:7860/sdapi/v1/txt2img' \ | |
--header 'Content-Type: application/json' \ | |
--data '{ | |
"height": 576, | |
"width": 1024, | |
"seed": -1, | |
"prompt": "Futuristic abandoned city, taken by plants, rust, green, destroyed robots, rain, heavy clouds, 8k, realistic", | |
"negative_prompt": "" | |
}' |