In this tutorial, we will be building a server using Node.js and Express to implement additional operations of Agora Cloud Recording like querying the...
Topic: None
Simple GET request using Retrofit in Android
Networking is a crucial factor in mobile development. Most, if not all mobile applications incorporate networking on some level. Applications are either...
Introduction to the Theory of Computation
Theory of computation (TOC) is a branch of Computer Science that is concerned with how problems can be solved using algorithms and how efficiently they can be...
Choosing between Django, Flask, and FastAPI
A framework is a collection of packages and modules used to develop software and help developers avoid handling low-level details. When learning Python, you...
User Registration in Django using Google OAuth
Open Authorization (OAuth) is a service that allows websites or apps to share user information with other websites without being given a users password. Users...
Introduction to Active Learning
By their very nature machine learning models are data-hungry. They require a lot of data to make decisions. However, always having high quality labeled data...
Understanding Hill Climbing Algorithm in Artificial Intelligence
A hill-climbing algorithm is an Artificial Intelligence (AI) algorithm that increases in value continuously until it achieves a peak solution. This algorithm...
Building Your First Laravel Application (Blog Application)
Laravel is a free and open-source PHP Framework for Web Artisans based on Symfony that helps craft Web Applications following the MVC (Model View Controller)...
Introduction to Constructors in C++
This article will go through basics of C++ constructors. A constructor is a special member function that initializes the objects of its class. It is said to...