12 Best New Features Of Ubuntu 23.04 – Lunar Lobster

Top features of Ubuntu 23.04 (Lunar Lobster)

Canonical has released Ubuntu 23.04 with great new features. This article discusses all the new features introduced in Ubuntu 23.04 (Lunar Lobster). Official release date: 20 April 2023 Support end date: Ubuntu 23.04 will be supported for 9 months until January 2024. For long-term support(LTS) we need to use Ubuntu 22.04 LTS. You can read … Read more

How To Use Amazon CodeWhisperer with VS Code- Free alternative to GitHub Copilot

How to use amazon codewhisperer with vscode

Amazon CodeWhisperer is an artificial intelligence tool that helps to generate and suggest code. Github copilot pricing for individuals is 10$ per month whereas the Amazon CodeWhisperer is completely free. In this article, we will discuss Amazon CodeWhisperer and how to use it with VSCode. The main focus of Amazon code whisperer is Build applications … Read more

11 Best Vector Databases For Artificial Intelligence Apps

11 best vector databases

Vector databases are an essential tool for building AI applications with embeddings. Vector databases have become increasingly popular in recent years due to their ability to handle complex data types(text, image, audio, video) and efficiently search high-dimensional data. In this article, we will discuss the top 11 vector databases in the market today. 1. Faiss … Read more

How to use Win32 API in Python

Sometimes we need to use Win32 APIs in Python. This article explains how to use Win32 APIs in Python. To use Win32 APIs in Python we can use the following options. Using the PyWin32 package One of the most popular options is the PyWin32 library, which provides Python bindings for many Win32 API functions. Here’s … Read more

How to check Python dictionary is empty?

Dictionary empty check python

Python dictionaries are one of the important data structures used in Python programming. Sometimes we might need to check whether the dictionary is empty or not. This article will discuss different ways to check whether the python dictionary is empty. 1. Using the len() function We can check the length of any container using Python’s … Read more

Best Free Alternatives to ChatGPT

ChatGPT alternatives feature image

Text generation using artificial intelligence(AI) is a trending thing. The OpenAI’s ChatGPT chatbot can generate human-like text responses. The ChatGPT (Chat Generative Pre-trained Transformer) is an artificial intelligence chatbot developed by OpenAI, and launched in November 2022. It is based on the large language model GPT 3 (Generative Pre-trained Transformer 3). The underlying model was … Read more

Python Class Decorators

Python class decorators feature image

Python class decorators are a powerful feature that allows developers to modify the behavior of a class or its methods. In this article, we will learn about Python decorators. A class is a blueprint for an object, and it defines the properties and methods of an object. You can read more about Python class here. … Read more