The solution to your resolution! Level up your…
VMware #Homelabs are an excellent way to improve your professional growth and advance your career. #VMUGAdvantage is one of the best ways to become a Homelab expert – learn more here:
My little Information Technology blog
VMware #Homelabs are an excellent way to improve your professional growth and advance your career. #VMUGAdvantage is one of the best ways to become a Homelab expert – learn more here:
I have been working with the Project Keswick team for quite some time now, which is an OCTO project is lead by my good friend Alan Renouf, who is doing some really innovative work with ESXi at the edge and application deployment using a desired state engine. Recently I had met with the team to […]
In vSphere 7.0 Update 2, an enhancement was made to the Virtual Machine’s UEFI firmware called VirtualEFI that would enable ESXi to run in a VM (Nested ESXi) and perform an HTTP Boot given the ESXi bootloader URL without requiring any traditional PXE infrastructure. This was especially useful […]
If you have accidentally changed the WordPress Site address in General Settings and now cannot access your site, this post is for you.
Using FTP, open up the wp-config.php file found in the root of your website files, edit it with a notepad program,
and paste these lines (with your site name) into it after the initial commenting:
define('WP_HOME', 'http://sitename.com');
define('WP_SITEURL', 'http://sitename.com');
Thats it! It will essentially hard code the two URLs into WordPress so it can no longer be changed via the UI.
Special Thanks: Blake Imeson
A nice and easy way to search files for specific content in the files using GREP.
grep -rnw '/path/to/somewhere/' -e 'pattern'
-r
or -R
is recursive,-n
is line number, and-w
stands for match the whole word.-l
(lower-case L) can be added to just give the file name of matching files.Along with these, --exclude
, --include
, --exclude-dir
flags could be used for efficient searching:
grep --include=\*.{c,h} -rnw '/path/to/somewhere/' -e "pattern"
grep --exclude=*.o -rnw '/path/to/somewhere/' -e "pattern"
--exclude-dir
parameter. For example, this will exclude the dirs dir1/, dir2/ and all of them matching *.dst/:
grep --exclude-dir={dir1,dir2,*.dst} -rnw '/path/to/somewhere/' -e "pattern"
For more options check man grep
.