Git tips

Useful Git commands and options. git branch -a show current branch and show all branches, -а key means all git branch newbranch – create new branch with name called”newbranch” git branch -f master / – move HEAD of “master” branch to commit with hash or to the HEAD of branch called , if there is […]

Continue reading


Find out your IP address

My IP: If you need to quickly obtain external(public) IP address, which your device uses to send requests from, then simply follow this link: https://sysopnotes.net/myip Response is in JSON format: {“ip”:”11.12.13.14″} Request could be performed from browser, as well as using CURL or another HTTP-client. CURL: curl https://sysopnotes.net/myip JavaScript: fetch(‘https://sysopnotes.net/myip’) .then(response => response.json()) .then(data => […]

Continue reading


Adding domain to Cpanel account

Adding domain to Cpanel account During creation of Cpanel account in WHM a new domain is being created as a main account domain. Then needed subdomains could be easily created in Cpanel interface. There is corresponding subsection which is called Subdomains. Sometimes there is need to create additional domains in the same Cpanel account(not subdomains […]

Continue reading


WordPress password reset

Here I will describe several ways to reset administrator’s account password in WordPress CMS, those ways could be called radical, because they are being used in cases when you couldn’t reset password in user’s profile or via embedded password recovery option of WordPress. I’ll not touch last two mentioned methods, as long as I suppose […]

Continue reading