Build a Discord Bot with Chat GPT 3 in Node.js

Build discord bot with chat gpt 3 in nodejs

Hello everybody, today we’re going to build a Discord BOT. In which we will integrate our Chat GPT 3. And we’re going to build this on Node.js platform but fundamentals are same, so you can apply it anywhere. What you will learn in this article: Although whatever I am gonna show you in this article … Read more

Difference between emplace_back and push_back in C++

Hi programmer’s, this is gonna be very short and simple explanation. In this article, I’m gonna explain you differences between push_back and emplace_back methods used inside vector container. Difference between emplace_back and push_back method in vector If you’re using c++ for a while, then you might have seen people using emplace_back to insert element at … Read more

PostgreSQL Basics: Aggregate functions (SUM, AVG, etc)

In this article, I’m gonna show you different Aggregate functions in PostgreSQL. Basically, aggregate function are those function which performs a specific task on columns and then produce one aggregate result inside a row. We have different aggregate functions e.g. COUNT, SUM, MIN, MAX, AVG. We’re going to explore each of them one by one. … Read more

Python Basic: Lists methods and operations (Basic Guide)

Hi coders, In this article, I’m gonna explain you Lists in Python. Basically we’re going to explore basic of lists in python and also we will explore methods and operation that you can perform on lists. Python Lists In python, lists are used to store data of different data types in ordered form. You can … Read more

Python Basic: String Methods and Operations (Basic Guide)

python string methods

Hey coders, today we are going to see basic string manipulation and methods in python programming language. What is String? In python, a string is a sequence of characters, where they are surrounded by double quotes(” “, or ‘ ‘). Anything between these quotes will be considered as a string, e.g: “My name is pk … Read more

Automation With Python Selenium (Browser Automation)

Automation With Python Selenium (GUIDE): Hey Learners, Today we’re back with interesting topic of Python Programming. In the real world, there are lots of repetitive nature of task that we’re doing again and again in same pattern. In the Python, We have a package called Selenium, Which helps us to automate some tasks that are … Read more

Exception Handling in Python: An Introduction(GUIDE)

Hey, Coders, Today, I’m going to explain Exception Handling in Python. In this article, I’m going to tell you that How you can Raise an Exception in Python and handle them to prevent your program from termination. What Is Exception ? During the program execution, Sometimes your programs terminated due to some unusual error occur, … Read more

Django Beginner Project – Random Password Generator

Hey Coders, In today’s article, We’re going to build a beautiful basic project in Django Framework. I think It will be one of the best project for all newbie beginners. So, If you just entered and have learned some basic things about Django then I think this Random Password Generator project would be best for … Read more