How to Install Multiple Redis on a Single Server
Redis is an advanced key-value store that is open source. Because keys may contain strings, hashes, lists, sets, and sorted sets, it is sometimes referred to as a data structure server.This artical is about how to install multiple redis on a single server Redis is a single-threaded event loop that is highly efficient. It’s really …
Linux Ubuntu Commands
This article is about linux terminal commands $ pwd – The pwd command is used to display the location of the current working directory. $ mkdir <directory name> The mkdir command is used to create a new directory under any directory. $ rmdir <directory name> The rmdir command is used to delete a directory. $ ls The ls command is used …
Send Mail using Gmail SMTP with PHP.
A website is incomplete without mail functionality Both static and dynamic websites require it. As contact form or another way like feedback form or anyway, you can use it, So today I will tell you how you can send email from the website in an easy way. With Few steps, you can, integrate this PHP …
Typing Game with jquery
This is a simple typing game experimental using jquery. The main criteria here is to understand how to read Keyboard Character Codes and displaying its equivalent Character on to screen. You may notice so many bugs in live demo, because this program is not implemented fully as we concentrated on important code blocks only. Live …