- check status
systemctl status pve-cluster
systemctl status pveproxy
systemctl status pve-proxy
- Delete old backups if needed
#Notes this is a fork from GMK87 adapted to gmk87, if you notice something wrong or add any other feature, just ping me here on github.
English manual for the ZUOYA GMK87 Mechanical Keyboard. Made from the printed version (Original).
<?php | |
class Search { | |
public function __construct() { | |
add_filter('posts_orderby', array($this, 'postsOrderBy'), 10, 2); | |
$result = new PostQuery($args, Post::class); | |
remove_filter('posts_orderby', array($this, 'postsOrderBy')); | |
} | |
public function postsOrderBy(string $orderBy, WP_Query $query): string |
#!/bin/bash | |
# A bash script to update a Cloudflare DNS A record with the external IP of the source machine | |
# Used to provide DDNS service for my home | |
# Needs the DNS record pre-creating on Cloudflare | |
# Proxy - uncomment and provide details if using a proxy | |
#export https_proxy=http://<proxyuser>:<proxypassword>@<proxyip>:<proxyport> | |
# Cloudflare zone is the zone which holds the record |
#!/bin/bash | |
echo "removing evaluation key" | |
rm ~/.IntelliJIdea15/config/eval/idea15.evaluation.key | |
# for mac go to: /Users/username/Library/Preferences/IntelliJIdea2016.3/eval/idea163.evaluation.key | |
echo "resetting evalsprt in options.xml" | |
sed -i '/evlsprt/d' ~/.IntelliJIdea15/config/options/options.xml | |
# for mac go to: /Users/lzhoucs/Library/Preferences/IntelliJIdea2016.3/options/options.xml |
{ | |
"workbench.iconTheme": "vscode-great-icons", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.formatOnPaste": true, | |
"editor.matchBrackets": true, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": false |