Skip to content

Instantly share code, notes, and snippets.

@RichardNesbitt
RichardNesbitt / commands.sh
Created February 13, 2025 23:09
Clear and Launch new VNCServer Sessions - Ubuntu
rm -rf ~/.vnc && mkdir ~/.vnc
cat > ~/.vnc/xstartup << 'EOL'
#!/bin/bash
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
export XKL_XMODMAP_DISABLE=1
export XDG_CURRENT_DESKTOP="XFCE"
export DISPLAY=:1
export XAUTHORITY=$HOME/.Xauthority
@RichardNesbitt
RichardNesbitt / db-import.php
Created March 31, 2026 06:01
Useful WordPress tools
<?php
// place a database dump and this file in the root directory of the WordPress site
// to be able to import the .sql file into the active datbase.
// You trigger this script by visiting https://yourdomain.com/db-import.php?key=mysecret123
## SET THESE VARIABLES ACCORDINGLY
$allowed_key = 'mysecret123';
$sqlFile = __DIR__ . '/your_database_dump.sql';