Let’s encrypt SSL certificates are issued for 90 days by default. After 90 days, you need to renew your SSL certificate. You can renew your Let’s Encrypt SSL certificate before 30 days of expiration. Renewal can be done manually or…
How to compress and extract files using tar command in Linux – Basic Example
Here is a quick example of how to compress and extract a tar files in linux operating system. We can see what are the available options we have got of tar command by doing: man tar or tar –help We…
How to Publish ReactNative Expo Mobile App to Apple App Store and Google Play Store
In this tutorial, I will walk you through the entire process of publishing a ReactNative Expo Mobile App. In the tutorial, we will use Expo for building and publishing ReactNative App. Challenges in Publishing a ReactNative Expo Mobile App In…
EnlighterJS CSS: Syntax Highlighter Basic Example
EnlighterJS CSS: Syntax Highlighter Basic Examples of CSS Language in all available themes at the time of making this post. Language: CSS, Theme: Classic /* buttons used in codegroups + toolbar */ .enlighter-btn{ display: inline-block; margin: 0px 5px 0px 5px;…
Deploy React App on Ubuntu 22.04 LTS on Amazon EC2 instance
React, also known as React.js or ReactJS, is a free and open-source front-end JavaScript library for building user interfaces based on UI components. ReactJS is maintained by Meta (formerly Facebook) and a community of individual developers and companies. Some of…
How to add new user to www-data group in Ubuntu
In some of the customised Ubuntu systems, such as Amazon EC2 instance, the name of the default system user is ubuntu. On the other hand www-data is the user and group name that web servers on Ubuntu (Apache, nginx, for…
How to Remove Appends Attributes from Laravel Eloquent Model
In Laravel the set{Attribute}Attribute accessor methods are used to set new attributes in a model. For example, we do use $appends property to create our popular “full_name” attribute to combine “first_name” and “last_name” attributes. Following the syntax to define $appends…
How TO – Remove a Property from an Object in JavaScript
JavaScript is the world’s most popular programming language. JavaScript is the programming language of the Web. JavaScript is easy to learn. In this simple tutorial we will learn to remove a property of a JavaScript object. A sample JavaScript object…
Array Destructuring With or Without List Function in PHP
Have you been unwillingly using the useful “extract” function to convert array elements into their corresponding names with same variable name as the key of the array element? Have you been worrying about the non-friendly nature of your code for…
Git Cannot open .git/FETCH_HEAD: Permission denied Solution
Did you face Cannot open .git/FETCH_HEAD: Permission denied when you try to run a git pull command on your site root folder hosted on a linux server running ubuntu? If you do you are at right place for a permanent…