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 […]
Year: 2022
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. See the […]
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
You can preview the code See the Pen How to create searchable list data using html and pure Javascript? by vijay (@vijaywaskrishna) on CodePen. Full code given below <!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; […]
How to Host Flask Application on cpanel?
To host a Flask or a Django applications, I find it very difficult to deploy it to a production server. For example most of the tutorials that i have found in the internet only showing to host a python application running on port (www.example.com:8083) like this. But cPanel provide us a complex free solution to […]