Browse by Tag

tutorial

C++ Undefined reference to std::cout

3 minute read

How to fix the undefined reference to std::cout in the C++ programming language. This error is usually caused by a dependency problem in the gcc compiler.

C++ Convert Int to String

2 minute read

How to convert an int to a string in C++, we will be using the to_string, stringstream and sprintf functions from the std library. Easiest methods to convert

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Python Lists vs Sets

6 minute read

In this article, we will explore the differences between lists and sets in Python, how to create them, adding, removing elements and iterating over them.

C++ STD Arrays explained

4 minute read

The C++ std::array container is a fixed-size container that stores elements in a contiguous memory location. In this tutorial, we will learn how to use it

Python 3 Ways to merge two dictionaries

3 minute read

In this article, we will learn how to merge two dictionaries in the Python programming language. We will showcase 3 different ways to achieve this.

Stack is not a member of std in C++

2 minute read

How to fix the stack is not a member of std error in the C++ programming language. We will use the stack module to fix this error

Set is not a member of std in C++

2 minute read

How to fix the set is not a member of std error in the C++ programming language. We will use the set module to fix this error

Remove is not a member of std in C++

2 minute read

How to fix the remove is not a member of std error in the C++ programming language. We will use the algorithm module to fix this error

Queue is not a member of std in C++

2 minute read

How to fix the queue is not a member of std error in the C++ programming language. We will use the queue module to fix this error

List is not a member of std in C++

2 minute read

How to fix the list is not a member of std error in the C++ programming language. We will use the list module to fix this error

Deque is not a member of std in C++

2 minute read

How to fix the deque is not a member of std error in the C++ programming language. We will use the deque module to fix this error

Array is not a member of std in C++

2 minute read

How to fix the array is not a member of std error in the C++ programming language. We will use the array module to fix this error

Convert float to int in C++

1 minute read

In this article, we will learn how to convert a float to an int in C++ using the static_cast method and the C-style casting method.

Convert float to double in C++

1 minute read

How to convert float to double in C++, we will be using the static_cast method, as well as casting it into a double type.

C++ Main Function explained

3 minute read

The main function is the entry point of a C++ program where the execution of a program starts. In this tutorial, we will learn about it and its returns.

C++ Extraction (») operator explained

2 minute read

In this article, we will take an in-depth look at the extraction operator (‘»’) in C++ and its usage with the cin function from the STD library.

C++ Arrow Operator explained

2 minute read

The C++ arrow operator, or member selection operator, is used to access members of a class through a pointer. In this tutorial, we will learn how to use it.

C++ STD Maps explained

7 minute read

C++ Std::map container is a sorted associative container that stores elements formed by a key value and a mapped value. Maps will be explained in this tutorial

Object Slicing in C++

2 minute read

C++ Object slicing is a phenomenon that occurs when an object of a derived class is assigned to a variable of the base class. We will talk about them in depth

C++ Arrays explained

4 minute read

C++ Arrays are a fundamental data structure that allow us to store multiple elements of the same data type. In this tutorial, we will learn how to use them

Virtual functions in C++

3 minute read

In this article, we will learn how to use the highly-used virtual functions in C++. We will go through these topics briefly.

Floor is not a member of std in C++

2 minute read

In this article, we will explain how to fix the floor is not a member of std error in the C++ programming language. We will use the cmath module

Cin is not a member of std in C++

2 minute read

In this article, we will explain how to fix the cin is not a member of std error in the C++ programming language. We will use the iostream module

Decimal part of a number in C++

less than 1 minute read

How to get the fractional or decimal part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Whole part of a number in C++

1 minute read

How to get the whole part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Pointers in C++

4 minute read

C++ pointers allow us to point at objects and variables in the C++ programming language. In this tutorial, we will learn how to use C++ pointers

Modf is not a member of std in C++

2 minute read

How to fix the modf is not a member of std error in the C++ programming language. We will use the cmath library to fix this error

Cout is not a member of std in C++

2 minute read

How to fix the cout is not a member of std error in the C++ programming language. We will use the iostream module to fix this error

Map is not a member of std in C++

2 minute read

How to fix the map is not a member of std error in the C++ programming language. We will use the map module to fix this error

Back to top ↑

c++

C++ Undefined reference to std::cout

3 minute read

How to fix the undefined reference to std::cout in the C++ programming language. This error is usually caused by a dependency problem in the gcc compiler.

C++ Convert Int to String

2 minute read

How to convert an int to a string in C++, we will be using the to_string, stringstream and sprintf functions from the std library. Easiest methods to convert

C++ STD Arrays explained

4 minute read

The C++ std::array container is a fixed-size container that stores elements in a contiguous memory location. In this tutorial, we will learn how to use it

Stack is not a member of std in C++

2 minute read

How to fix the stack is not a member of std error in the C++ programming language. We will use the stack module to fix this error

Set is not a member of std in C++

2 minute read

How to fix the set is not a member of std error in the C++ programming language. We will use the set module to fix this error

Remove is not a member of std in C++

2 minute read

How to fix the remove is not a member of std error in the C++ programming language. We will use the algorithm module to fix this error

Queue is not a member of std in C++

2 minute read

How to fix the queue is not a member of std error in the C++ programming language. We will use the queue module to fix this error

List is not a member of std in C++

2 minute read

How to fix the list is not a member of std error in the C++ programming language. We will use the list module to fix this error

Deque is not a member of std in C++

2 minute read

How to fix the deque is not a member of std error in the C++ programming language. We will use the deque module to fix this error

Array is not a member of std in C++

2 minute read

How to fix the array is not a member of std error in the C++ programming language. We will use the array module to fix this error

Convert float to int in C++

1 minute read

In this article, we will learn how to convert a float to an int in C++ using the static_cast method and the C-style casting method.

Convert float to double in C++

1 minute read

How to convert float to double in C++, we will be using the static_cast method, as well as casting it into a double type.

C++ Main Function explained

3 minute read

The main function is the entry point of a C++ program where the execution of a program starts. In this tutorial, we will learn about it and its returns.

C++ Extraction (») operator explained

2 minute read

In this article, we will take an in-depth look at the extraction operator (‘»’) in C++ and its usage with the cin function from the STD library.

C++ Arrow Operator explained

2 minute read

The C++ arrow operator, or member selection operator, is used to access members of a class through a pointer. In this tutorial, we will learn how to use it.

C++ STD Maps explained

7 minute read

C++ Std::map container is a sorted associative container that stores elements formed by a key value and a mapped value. Maps will be explained in this tutorial

Object Slicing in C++

2 minute read

C++ Object slicing is a phenomenon that occurs when an object of a derived class is assigned to a variable of the base class. We will talk about them in depth

C++ Arrays explained

4 minute read

C++ Arrays are a fundamental data structure that allow us to store multiple elements of the same data type. In this tutorial, we will learn how to use them

Virtual functions in C++

3 minute read

In this article, we will learn how to use the highly-used virtual functions in C++. We will go through these topics briefly.

Floor is not a member of std in C++

2 minute read

In this article, we will explain how to fix the floor is not a member of std error in the C++ programming language. We will use the cmath module

Cin is not a member of std in C++

2 minute read

In this article, we will explain how to fix the cin is not a member of std error in the C++ programming language. We will use the iostream module

Decimal part of a number in C++

less than 1 minute read

How to get the fractional or decimal part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Whole part of a number in C++

1 minute read

How to get the whole part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Pointers in C++

4 minute read

C++ pointers allow us to point at objects and variables in the C++ programming language. In this tutorial, we will learn how to use C++ pointers

Modf is not a member of std in C++

2 minute read

How to fix the modf is not a member of std error in the C++ programming language. We will use the cmath library to fix this error

Cout is not a member of std in C++

2 minute read

How to fix the cout is not a member of std error in the C++ programming language. We will use the iostream module to fix this error

Map is not a member of std in C++

2 minute read

How to fix the map is not a member of std error in the C++ programming language. We will use the map module to fix this error

Back to top ↑

std

C++ Undefined reference to std::cout

3 minute read

How to fix the undefined reference to std::cout in the C++ programming language. This error is usually caused by a dependency problem in the gcc compiler.

C++ STD Arrays explained

4 minute read

The C++ std::array container is a fixed-size container that stores elements in a contiguous memory location. In this tutorial, we will learn how to use it

Stack is not a member of std in C++

2 minute read

How to fix the stack is not a member of std error in the C++ programming language. We will use the stack module to fix this error

Set is not a member of std in C++

2 minute read

How to fix the set is not a member of std error in the C++ programming language. We will use the set module to fix this error

Remove is not a member of std in C++

2 minute read

How to fix the remove is not a member of std error in the C++ programming language. We will use the algorithm module to fix this error

Queue is not a member of std in C++

2 minute read

How to fix the queue is not a member of std error in the C++ programming language. We will use the queue module to fix this error

List is not a member of std in C++

2 minute read

How to fix the list is not a member of std error in the C++ programming language. We will use the list module to fix this error

Deque is not a member of std in C++

2 minute read

How to fix the deque is not a member of std error in the C++ programming language. We will use the deque module to fix this error

Array is not a member of std in C++

2 minute read

How to fix the array is not a member of std error in the C++ programming language. We will use the array module to fix this error

C++ STD Maps explained

7 minute read

C++ Std::map container is a sorted associative container that stores elements formed by a key value and a mapped value. Maps will be explained in this tutorial

Floor is not a member of std in C++

2 minute read

In this article, we will explain how to fix the floor is not a member of std error in the C++ programming language. We will use the cmath module

Cin is not a member of std in C++

2 minute read

In this article, we will explain how to fix the cin is not a member of std error in the C++ programming language. We will use the iostream module

Modf is not a member of std in C++

2 minute read

How to fix the modf is not a member of std error in the C++ programming language. We will use the cmath library to fix this error

Cout is not a member of std in C++

2 minute read

How to fix the cout is not a member of std error in the C++ programming language. We will use the iostream module to fix this error

Map is not a member of std in C++

2 minute read

How to fix the map is not a member of std error in the C++ programming language. We will use the map module to fix this error

Back to top ↑

error

C++ Undefined reference to std::cout

3 minute read

How to fix the undefined reference to std::cout in the C++ programming language. This error is usually caused by a dependency problem in the gcc compiler.

Stack is not a member of std in C++

2 minute read

How to fix the stack is not a member of std error in the C++ programming language. We will use the stack module to fix this error

Set is not a member of std in C++

2 minute read

How to fix the set is not a member of std error in the C++ programming language. We will use the set module to fix this error

Remove is not a member of std in C++

2 minute read

How to fix the remove is not a member of std error in the C++ programming language. We will use the algorithm module to fix this error

Queue is not a member of std in C++

2 minute read

How to fix the queue is not a member of std error in the C++ programming language. We will use the queue module to fix this error

List is not a member of std in C++

2 minute read

How to fix the list is not a member of std error in the C++ programming language. We will use the list module to fix this error

Deque is not a member of std in C++

2 minute read

How to fix the deque is not a member of std error in the C++ programming language. We will use the deque module to fix this error

Array is not a member of std in C++

2 minute read

How to fix the array is not a member of std error in the C++ programming language. We will use the array module to fix this error

Floor is not a member of std in C++

2 minute read

In this article, we will explain how to fix the floor is not a member of std error in the C++ programming language. We will use the cmath module

Cin is not a member of std in C++

2 minute read

In this article, we will explain how to fix the cin is not a member of std error in the C++ programming language. We will use the iostream module

Modf is not a member of std in C++

2 minute read

How to fix the modf is not a member of std error in the C++ programming language. We will use the cmath library to fix this error

Cout is not a member of std in C++

2 minute read

How to fix the cout is not a member of std error in the C++ programming language. We will use the iostream module to fix this error

Map is not a member of std in C++

2 minute read

How to fix the map is not a member of std error in the C++ programming language. We will use the map module to fix this error

Back to top ↑

member of std error

Stack is not a member of std in C++

2 minute read

How to fix the stack is not a member of std error in the C++ programming language. We will use the stack module to fix this error

Set is not a member of std in C++

2 minute read

How to fix the set is not a member of std error in the C++ programming language. We will use the set module to fix this error

Remove is not a member of std in C++

2 minute read

How to fix the remove is not a member of std error in the C++ programming language. We will use the algorithm module to fix this error

Queue is not a member of std in C++

2 minute read

How to fix the queue is not a member of std error in the C++ programming language. We will use the queue module to fix this error

List is not a member of std in C++

2 minute read

How to fix the list is not a member of std error in the C++ programming language. We will use the list module to fix this error

Deque is not a member of std in C++

2 minute read

How to fix the deque is not a member of std error in the C++ programming language. We will use the deque module to fix this error

Array is not a member of std in C++

2 minute read

How to fix the array is not a member of std error in the C++ programming language. We will use the array module to fix this error

Floor is not a member of std in C++

2 minute read

In this article, we will explain how to fix the floor is not a member of std error in the C++ programming language. We will use the cmath module

Cin is not a member of std in C++

2 minute read

In this article, we will explain how to fix the cin is not a member of std error in the C++ programming language. We will use the iostream module

Modf is not a member of std in C++

2 minute read

How to fix the modf is not a member of std error in the C++ programming language. We will use the cmath library to fix this error

Cout is not a member of std in C++

2 minute read

How to fix the cout is not a member of std error in the C++ programming language. We will use the iostream module to fix this error

Map is not a member of std in C++

2 minute read

How to fix the map is not a member of std error in the C++ programming language. We will use the map module to fix this error

Back to top ↑

python

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Python Lists vs Sets

6 minute read

In this article, we will explore the differences between lists and sets in Python, how to create them, adding, removing elements and iterating over them.

Python 3 Ways to merge two dictionaries

3 minute read

In this article, we will learn how to merge two dictionaries in the Python programming language. We will showcase 3 different ways to achieve this.

Back to top ↑

float

Convert float to int in C++

1 minute read

In this article, we will learn how to convert a float to an int in C++ using the static_cast method and the C-style casting method.

Convert float to double in C++

1 minute read

How to convert float to double in C++, we will be using the static_cast method, as well as casting it into a double type.

Decimal part of a number in C++

less than 1 minute read

How to get the fractional or decimal part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Whole part of a number in C++

1 minute read

How to get the whole part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Back to top ↑

string

C++ Convert Int to String

2 minute read

How to convert an int to a string in C++, we will be using the to_string, stringstream and sprintf functions from the std library. Easiest methods to convert

Back to top ↑

operator

C++ Extraction (») operator explained

2 minute read

In this article, we will take an in-depth look at the extraction operator (‘»’) in C++ and its usage with the cin function from the STD library.

Back to top ↑

pointers

C++ Arrow Operator explained

2 minute read

The C++ arrow operator, or member selection operator, is used to access members of a class through a pointer. In this tutorial, we will learn how to use it.

Pointers in C++

4 minute read

C++ pointers allow us to point at objects and variables in the C++ programming language. In this tutorial, we will learn how to use C++ pointers

Back to top ↑

convert

C++ Convert Int to String

2 minute read

How to convert an int to a string in C++, we will be using the to_string, stringstream and sprintf functions from the std library. Easiest methods to convert

Convert float to int in C++

1 minute read

In this article, we will learn how to convert a float to an int in C++ using the static_cast method and the C-style casting method.

Convert float to double in C++

1 minute read

How to convert float to double in C++, we will be using the static_cast method, as well as casting it into a double type.

Back to top ↑

difference

Python Lists vs Sets

6 minute read

In this article, we will explore the differences between lists and sets in Python, how to create them, adding, removing elements and iterating over them.

Back to top ↑

address

Pointers in C++

4 minute read

C++ pointers allow us to point at objects and variables in the C++ programming language. In this tutorial, we will learn how to use C++ pointers

Back to top ↑

number

Decimal part of a number in C++

less than 1 minute read

How to get the fractional or decimal part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Whole part of a number in C++

1 minute read

How to get the whole part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Back to top ↑

list

Python Lists vs Sets

6 minute read

In this article, we will explore the differences between lists and sets in Python, how to create them, adding, removing elements and iterating over them.

List is not a member of std in C++

2 minute read

How to fix the list is not a member of std error in the C++ programming language. We will use the list module to fix this error

Back to top ↑

dict

Python 3 Ways to merge two dictionaries

3 minute read

In this article, we will learn how to merge two dictionaries in the Python programming language. We will showcase 3 different ways to achieve this.

Back to top ↑

how

Python 3 Ways to merge two dictionaries

3 minute read

In this article, we will learn how to merge two dictionaries in the Python programming language. We will showcase 3 different ways to achieve this.

Back to top ↑

map

C++ STD Maps explained

7 minute read

C++ Std::map container is a sorted associative container that stores elements formed by a key value and a mapped value. Maps will be explained in this tutorial

Map is not a member of std in C++

2 minute read

How to fix the map is not a member of std error in the C++ programming language. We will use the map module to fix this error

Back to top ↑

cout

C++ Undefined reference to std::cout

3 minute read

How to fix the undefined reference to std::cout in the C++ programming language. This error is usually caused by a dependency problem in the gcc compiler.

Cout is not a member of std in C++

2 minute read

How to fix the cout is not a member of std error in the C++ programming language. We will use the iostream module to fix this error

Back to top ↑

whole

Whole part of a number in C++

1 minute read

How to get the whole part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Back to top ↑

fractional

Decimal part of a number in C++

less than 1 minute read

How to get the fractional or decimal part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Back to top ↑

function

Virtual functions in C++

3 minute read

In this article, we will learn how to use the highly-used virtual functions in C++. We will go through these topics briefly.

Back to top ↑

container

C++ STD Arrays explained

4 minute read

The C++ std::array container is a fixed-size container that stores elements in a contiguous memory location. In this tutorial, we will learn how to use it

C++ STD Maps explained

7 minute read

C++ Std::map container is a sorted associative container that stores elements formed by a key value and a mapped value. Maps will be explained in this tutorial

Back to top ↑

int

C++ Convert Int to String

2 minute read

How to convert an int to a string in C++, we will be using the to_string, stringstream and sprintf functions from the std library. Easiest methods to convert

Convert float to int in C++

1 minute read

In this article, we will learn how to convert a float to an int in C++ using the static_cast method and the C-style casting method.

Back to top ↑

array

C++ STD Arrays explained

4 minute read

The C++ std::array container is a fixed-size container that stores elements in a contiguous memory location. In this tutorial, we will learn how to use it

Array is not a member of std in C++

2 minute read

How to fix the array is not a member of std error in the C++ programming language. We will use the array module to fix this error

Back to top ↑

remove

Remove is not a member of std in C++

2 minute read

How to fix the remove is not a member of std error in the C++ programming language. We will use the algorithm module to fix this error

Back to top ↑

set

Python Lists vs Sets

6 minute read

In this article, we will explore the differences between lists and sets in Python, how to create them, adding, removing elements and iterating over them.

Set is not a member of std in C++

2 minute read

How to fix the set is not a member of std error in the C++ programming language. We will use the set module to fix this error

Back to top ↑

dictionary

Python 3 Ways to merge two dictionaries

3 minute read

In this article, we will learn how to merge two dictionaries in the Python programming language. We will showcase 3 different ways to achieve this.

Back to top ↑

equality

Back to top ↑

is

Back to top ↑

modf

Modf is not a member of std in C++

2 minute read

How to fix the modf is not a member of std error in the C++ programming language. We will use the cmath library to fix this error

Back to top ↑

variables

Pointers in C++

4 minute read

C++ pointers allow us to point at objects and variables in the C++ programming language. In this tutorial, we will learn how to use C++ pointers

Back to top ↑

ceil

Back to top ↑

cin

Cin is not a member of std in C++

2 minute read

In this article, we will explain how to fix the cin is not a member of std error in the C++ programming language. We will use the iostream module

Back to top ↑

floor

Floor is not a member of std in C++

2 minute read

In this article, we will explain how to fix the floor is not a member of std error in the C++ programming language. We will use the cmath module

Back to top ↑

ampersand

Back to top ↑

asterisk

Back to top ↑

github

Python Github Copilot: A review

5 minute read

In this article we will discuss my thoughts and opinions on GitHub’s new Copilot program. An AI powered program that helps you code faster.

Back to top ↑

copilot

Python Github Copilot: A review

5 minute read

In this article we will discuss my thoughts and opinions on GitHub’s new Copilot program. An AI powered program that helps you code faster.

Back to top ↑

review

Python Github Copilot: A review

5 minute read

In this article we will discuss my thoughts and opinions on GitHub’s new Copilot program. An AI powered program that helps you code faster.

Back to top ↑

virtual

Virtual functions in C++

3 minute read

In this article, we will learn how to use the highly-used virtual functions in C++. We will go through these topics briefly.

Back to top ↑

void

Virtual functions in C++

3 minute read

In this article, we will learn how to use the highly-used virtual functions in C++. We will go through these topics briefly.

Back to top ↑

ambiguous

Back to top ↑

arrays

C++ Arrays explained

4 minute read

C++ Arrays are a fundamental data structure that allow us to store multiple elements of the same data type. In this tutorial, we will learn how to use them

Back to top ↑

data structure

C++ Arrays explained

4 minute read

C++ Arrays are a fundamental data structure that allow us to store multiple elements of the same data type. In this tutorial, we will learn how to use them

Back to top ↑

elements

C++ Arrays explained

4 minute read

C++ Arrays are a fundamental data structure that allow us to store multiple elements of the same data type. In this tutorial, we will learn how to use them

Back to top ↑

manipulation

C++ Arrays explained

4 minute read

C++ Arrays are a fundamental data structure that allow us to store multiple elements of the same data type. In this tutorial, we will learn how to use them

Back to top ↑

exp

Back to top ↑

log

Back to top ↑

pow

Back to top ↑

round

Back to top ↑

trunc

Back to top ↑

iteration

Back to top ↑

whitespace

Back to top ↑

split

Back to top ↑

object slicing

Object Slicing in C++

2 minute read

C++ Object slicing is a phenomenon that occurs when an object of a derived class is assigned to a variable of the base class. We will talk about them in depth

Back to top ↑

inheritance

Object Slicing in C++

2 minute read

C++ Object slicing is a phenomenon that occurs when an object of a derived class is assigned to a variable of the base class. We will talk about them in depth

Back to top ↑

base class

Object Slicing in C++

2 minute read

C++ Object slicing is a phenomenon that occurs when an object of a derived class is assigned to a variable of the base class. We will talk about them in depth

Back to top ↑

derived class

Object Slicing in C++

2 minute read

C++ Object slicing is a phenomenon that occurs when an object of a derived class is assigned to a variable of the base class. We will talk about them in depth

Back to top ↑

associative

C++ STD Maps explained

7 minute read

C++ Std::map container is a sorted associative container that stores elements formed by a key value and a mapped value. Maps will be explained in this tutorial

Back to top ↑

sorted

C++ STD Maps explained

7 minute read

C++ Std::map container is a sorted associative container that stores elements formed by a key value and a mapped value. Maps will be explained in this tutorial

Back to top ↑

arrow operator

C++ Arrow Operator explained

2 minute read

The C++ arrow operator, or member selection operator, is used to access members of a class through a pointer. In this tutorial, we will learn how to use it.

Back to top ↑

struct

C++ Arrow Operator explained

2 minute read

The C++ arrow operator, or member selection operator, is used to access members of a class through a pointer. In this tutorial, we will learn how to use it.

Back to top ↑

class

C++ Arrow Operator explained

2 minute read

The C++ arrow operator, or member selection operator, is used to access members of a class through a pointer. In this tutorial, we will learn how to use it.

Back to top ↑

input

C++ Extraction (») operator explained

2 minute read

In this article, we will take an in-depth look at the extraction operator (‘»’) in C++ and its usage with the cin function from the STD library.

Back to top ↑

extraction operator

C++ Extraction (») operator explained

2 minute read

In this article, we will take an in-depth look at the extraction operator (‘»’) in C++ and its usage with the cin function from the STD library.

Back to top ↑

main function

C++ Main Function explained

3 minute read

The main function is the entry point of a C++ program where the execution of a program starts. In this tutorial, we will learn about it and its returns.

Back to top ↑

return value

C++ Main Function explained

3 minute read

The main function is the entry point of a C++ program where the execution of a program starts. In this tutorial, we will learn about it and its returns.

Back to top ↑

execution

C++ Main Function explained

3 minute read

The main function is the entry point of a C++ program where the execution of a program starts. In this tutorial, we will learn about it and its returns.

Back to top ↑

whole number

Back to top ↑

check

Back to top ↑

double

Convert float to double in C++

1 minute read

How to convert float to double in C++, we will be using the static_cast method, as well as casting it into a double type.

Back to top ↑

dot

Back to top ↑

arrow

Back to top ↑

deque

Deque is not a member of std in C++

2 minute read

How to fix the deque is not a member of std error in the C++ programming language. We will use the deque module to fix this error

Back to top ↑

queue

Queue is not a member of std in C++

2 minute read

How to fix the queue is not a member of std error in the C++ programming language. We will use the queue module to fix this error

Back to top ↑

stack

Stack is not a member of std in C++

2 minute read

How to fix the stack is not a member of std error in the C++ programming language. We will use the stack module to fix this error

Back to top ↑

vector

Back to top ↑

merge

Python 3 Ways to merge two dictionaries

3 minute read

In this article, we will learn how to merge two dictionaries in the Python programming language. We will showcase 3 different ways to achieve this.

Back to top ↑

hashmap

Back to top ↑

hashing

Back to top ↑

data structures

Python Lists vs Sets

6 minute read

In this article, we will explore the differences between lists and sets in Python, how to create them, adding, removing elements and iterating over them.

Back to top ↑

extract

Back to top ↑

regex

Back to top ↑

tuple

Back to top ↑

item

Back to top ↑

item assignment

Back to top ↑

duplicate

Back to top ↑

pushover

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Back to top ↑

notification

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Back to top ↑

project

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Back to top ↑

phone

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Back to top ↑

ios

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Back to top ↑

android

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Back to top ↑

undefined reference

C++ Undefined reference to std::cout

3 minute read

How to fix the undefined reference to std::cout in the C++ programming language. This error is usually caused by a dependency problem in the gcc compiler.

Back to top ↑

compiler

C++ Undefined reference to std::cout

3 minute read

How to fix the undefined reference to std::cout in the C++ programming language. This error is usually caused by a dependency problem in the gcc compiler.

Back to top ↑