Upgrade ruby gem
To upgrade a ruby gem run gem update –system VERSION_HERE Example gem update –system 1.3.7 See Ruby
To upgrade a ruby gem run gem update –system VERSION_HERE Example gem update –system 1.3.7 See Ruby
Code Server allow you to run Microsoft Visual Studio Code in the browser. Code Server runs on a remote web server, you…
APC Cache is an open source opcode caching module for PHP. You can find documentation for APCu at https://www.php.net/manual/en/book.apcu.php Zend OpCache install…
How to install .NET SDK in Ubuntu 20.04 Install .NET SDK on Ubuntu 20.04 How to create .NET console program
You can use the PHP header() function to do redirect. To do 301 redirect, use For 302 redirect, use If you need…
PECL is a repository for PHP Extensions, providing a directory of all known extensions and hosting facilities for downloading and development of…
This PHP script will redirect website visitors to HTTPS (SSL) URL. You can add this in your index.php of the website To…
gem is package manager for Ruby. To get list of all install packages, run gem list To install a package, run gem…
Create a file 1.go with following content package main import “fmt” func main() { fmt.Println(“My First GoLang Program”) } To run the…
To execure a system command on a server, use PHP exec function. For example