Xiaomi phones are among the most popular smartphones on the market. Their MIUI ROMs have gained a huge following thanks to their customization options and usability. While many users prefer using the latest version of MIUI, there may be cases when you’d like to downgrade. In this article, we will show you how and the […]
Author: Vijay Krishna
How to get Client WordPress website content checklist
Having an effective website content checklist is essential for any business. It helps ensure that the content you create is of the highest quality and meets your client’s expectations. A good website content checklist should include elements such as keyword research, SEO optimization, grammar and spelling checks, readability tests, and other relevant factors. With this […]
How to request Letter for Installation of Software in Office/School/Lab
Dear IT Team, I am writing to request the installation of [name of software] on my work computer. I understand that this software is not currently installed on our company’s computers, but I believe it would be a valuable tool for me to use in my work. [Provide a brief explanation of why you think […]
How to take a leave from office template
Dear [Manager’s Name], I am writing to request a leave of absence from [start date] to [end date]. The reason for my leave is [state the reason for your leave, such as needing to care for a family member, personal illness, etc.]. I understand that this may cause some inconvenience, and I will do my […]
What is OpenAI ?
OpenAI is a research organization that focuses on developing and promoting friendly artificial intelligence (AI). Founded in 2015 by a group of entrepreneurs, researchers, and philanthropists, including Elon Musk and Sam Altman, OpenAI has become one of the leading organizations in the field of AI research and development. One of the main goals of OpenAI […]
How to Convert HTML div into Multipage PDF using jsPDF
jsPDF is a nice library to convert HTML content into PDF. We can put the different type of elements in PDF from HTML like an icon, images, text, CSS styles.Here we will discuss an example of jsPDF to convert long HTML page into PDF document which will be generated client-side and download. Page Title Print […]
How to hide a div when a value is null or empty using pure css or pure javascript
A much cleaner approach is to just use CSS. The below style will hide divs which are emtpy. div:empty { display: none } Below code will hide the empty fields (including their labels) when the content is empty. This code will hide the email Heading with an empty value. Javascript code let empty = document.querySelectorAll(‘.row […]

How to setup Django application on Cloudpanel with uWSGI and nginx
In this blog, I am going to show you how to simply setup Django application on Cloudpanel 2 with uWSGI and nginx This tutorial is aimed at the Django user who wants to set up a production web server. It takes you through the steps required to set up Django so that it works nicely […]




How 5 things will change the way you approach Tech Innovations
Technology moves extremely quickly. It seems like there is a new innovation produced nearly every day. Technology has changed the way business is done and has enabled many people to reach goals and try new things that they’ve never done before. 1. Augmented Reality Augmented reality stands to be the most immediate tech development that […]
How to create searchable list data using html and pure Javascript
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * { box-sizing: border-box; } #myInput[type=text]:focus { border: none; outline: none; } #myInput { width: 100%; font-size: 16px; padding: 12px 40px 12px 20px; border: none; margin-bottom: 12px; font-family: "Poppins", Sans-serif; margin: 0 auto; display: block } #myUL { list-style-type: none; padding: 0; margin: 10px; } #myUL […]