Posts
All the articles I've posted.
-
How to Use Filter in PostgreSQL with example
Postgres 9.4 was released in December 2014 adding the `FILTER` clause to aggregate functions and this clause is quite useful when you want to count or sum specific records when executing group by.
-
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".