May 23, 2021uncategorized unifi video monitor https://selfhostedhome.com/category/video-surveillance/
May 10, 2021May 22, 2021uncategorized postgresql: tweak for large databases go to pgtune, input your hardware and desired configuration and copy the recommended parameters at the bottom of your portgresql .conf file. […]
April 26, 2021May 6, 2021uncategorized google custom search https://developers.google.com/custom-search/v1/reference/rest/v1/cse/list https://github.com/googleapis/google-api-python-client
April 25, 2021uncategorized python: set pythonpath on persistent on ubuntu first test if its set: echo $PYTHONPATH if you want to set it temporarily export PYTHONPATH=/home/:$PYTHONPATH […]
April 23, 2021uncategorized openvpn: ignore redirect gateway https://community.openvpn.net/openvpn/wiki/IgnoreRedirectGateway
April 23, 2021April 23, 2021uncategorized digital ocean api controller doctl auth init --access-token $DO_TOKEN
April 23, 2021April 23, 2021uncategorized gitea: create admin user gitea admin user create --admin --username [username]--password [password] --email [emailaddress] touch README.md git init […]
April 20, 2021April 20, 2021uncategorized test email server configuration best general option https://mxtoolbox.com/MXLookup.aspx for gmail and google apps https://toolbox.googleapps.com/apps/checkmx/ remember to setup dkim and dmarc, and consider […]
April 20, 2021April 20, 2021blogs to follow, uncategorized https://www.dangtrinh.com/ https://www.dangtrinh.com/
April 18, 2021April 18, 2021uncategorized mysql: delete records with special characters DELETE FROM [table] where First_Name REGEXP '[^a-zA-Z0-9- ]' OR Last_Name REGEXP '[^a-zA-Z0-9- ]' OR Company REGEXP '[^a-zA-Z0-9-& ]' OR website […]