How to get free SSL certificate

How to get the free SSL certificate Let’s Encrypt is a Certificate Authority (CA) that provides free certificates for Transport Layer Security (TLS) encryption, thereby enabling encrypted HTTPS on web servers. It simplifies the process of creation, validation, signing, installation, and renewal of certificates by providing a software client that automates most of the steps—Certbot. Here we … Read more

How to Install Krita in Ubuntu

Krita is a free and open-source digital painting, editing and animation application developed by KDE. It has excellent user interface with everything placed perfectly so that you can easily find the tool you need. Installing Krita Ubuntu offers multiple ways for users to install Krita on their computers. The next sections will take a look … Read more

How to install Neofetch in Ubuntu

Neofetch is a cool system information tool that gives you all the information about your system by running “neofetch” command in Terminal. It is cool tool to have because it gives you information about desktop environment, kernel version, bash version and GTK theme you are running. The repositories have been added. Run the apt update command to … Read more

How to install Mailspring on Ubuntu

MailSpring earlier known as Nylas Mail or Nylas N1 is an open-source email client. It saves all the mails locally on computer so that you can access them anytime you need. It features advanced search which uses AND and OR operations so that you can search for mails based on different parameters. The easiest way … Read more

How to install WordPress.com desktop app on Ubuntu

Start by opening your terminal and executing the following command to install all prerequisites: $ sudo apt install libgtkextra-dev gdebi-core Use your browser to download the wordpress.com Desktop app DEB package or use the following wgetshortcut command: $ wget -O wordpress_app.deb https://bit.ly/2uUiTdz Next, install the wordpress_app.deb package downloaded in the previous step: $ sudo gdebi wordpress_app.deb

How to Install SimpleScreenRecorder

SimpleScreenRecorder is available in Ubuntu Software Centre in most of the recent Ubuntu releases. But somehow if you don’t find it there you can run following command in Terminal to install this screen video recorder. $ sudo add-apt-repository ppa:marten-baert/simplescreenrecorder $ sudo apt-get update $ sudo apt-get install simplescreenrecorder

How to install FileZilla FTP client in Ubuntu

A brief intro of FileZilla FileZilla is the open source FTP client program. It uses FTP/SFTP protocol to transfer the files. It allows us to securely transfer files from the local computer to the remote computer. It is mostly used by the web developers in the uploading, downloading and editing web pages. Webpages are stored … Read more

Laravel “Framework” Basic Task List Tutorial

Basic Task List Introduction Installation Prepping The Database Database Migrations Eloquent Models Routing Stubbing The Routes Displaying A View Building Layouts & Views Defining The Layout Defining The Child View Adding Tasks Validation Creating The Task Displaying Existing Tasks Deleting Tasks Adding The Delete Button Deleting The Task Introduction This quickstart guide provides a basic … Read more

Laravel “Framework” Installation

Install Composer Laravel utilizes Composer to manage its dependencies. First, download a copy of the composer.phar. Once you have the PHAR archive, you can either keep it in your local project directory or move to usr/local/bin to use it globally on your system. On Windows, you can use the Composer Windows installer. Install Laravel Via … Read more