Posts
All the articles I've posted.
-
How to use python virtual environment with conda
A virtual environment is a Python environment such that the Python interpreter, libraries and scripts installed into it are isolated from those installed in other virtual environments.
-
How to install jupyter notebook on ubuntu 20.04/18.04 using python 3 and virtualenv
Jupyter Notebook is an essential software used by data scientists, it lets you create and share interactive code, visualisations, and more.
-
Add ellipses to overflowing text and truncate the text using CSS
The text-overflow property specifies how overflowed content that is not displayed should be signaled to the user. It can be clipped, display an ellipsis (...), or display a custom string. If you don't want text to wrap and add ellipses to overflowing text this is how to do it.
-
Using Redis to make your website 30-40% faster
Redis is a type of database and it can be added to your production level application to make it more performant.
-
How to add Next.js 11 image component to your website
How we can blur image while loading in version 11 next.js? Showing low quality placeholder till the high quality image loads with coding examples.
-
How to return value from image.onload function
The onload event occurs when an object has been loaded, and is commonly used in scenarios with image manipulation in JavaScript.
-
Tips For Using Async/Await - Write Better JavaScript!
There’s a special syntax you can use in JavaScript that makes working with promises easier. It's called “async/await".
-
How to convert existing react website into progressive web app (PWA)
Progressive Web Apps (PWAs) are web apps that use service workers, manifests, and other web-platform features in combination with progressive enhancement to give users an experience on par with native apps.