Create A Discord Webhook in Python for a bot

By Monish C

Hello everyone! In this tutorial, we are going to learn about how to create a Discord webhook in Python for a bot. All you need is to know how to create a server and bot in Discord.... Read More

Python program to swap two nibbles in a byte

By Monish C

Hello Everyone! In this tutorial, we are going to swap two nibbles in a byte in Python. First of all, A nibble is a four-bit binary number. for example, 0011,1010,1111 are all nibb.... Read More

How to make chain of function decorators in Python

By Monish C

In this tutorial, we are going to see how to make a chain of function decorators in Python. Firstly we should know about the properties of functions in Python. Functions act like o.... Read More

Difference between inline and macro in C++

By Karandeep Singh

Hey, guys today we are going to learn about the difference between inline and macros in C++. Before starting with the difference lets discuss macro and inline first. Macro in C++ M.... Read More

Explain the Aho-Corasick Algorithm for Pattern Searching in Python

By Taanvi Goyal

Aho-Corasick algorithm, a type of Dictionary-matching algorithm. This algorithm can be helpful to find word or words appearing from a set of keywords or data we feed. Aho-Corasick .... Read More

Functions in C++ that cannot be overloaded

By Prabhnoor Singh

There are many function declarations in C++ that cannot be overloaded. We will look forward to those in this article. What is Function Overloading? It is an attribute in C++ where .... Read More

Unbounded fractional knapsack problem in Java

By Adit Gupta

In this tutorial, I will show how to solve the problem of unbounded fractional knapsack problem in Java language. It is somewhat different from the conventional knapsack problem. T.... Read More

Java Ternary operator with example

By Anisha Gupta

Java Ternary operator is a conditional operator and an only operator that accepts 3 operands. We can replace the if-else-then statement by one-liner using the ternary operator. var.... Read More

Related Posts