Architecture
Articles detailing different Architectures and setting up backend channels. Relevant Topics: Hosting, Databases, Testing, and more!
Phone Verification API in Django using Sparrow SMS - Part 2
Starting off imports, the most basic module to import is path that returns for urlpatterns. ValidatePhoneSendOTP and ValidateOTP are API view classes that subclass Django's View class. These will arrive later in Writing Final Views part of this tutorial.
Sort list items with iComparer and iComparable
Sorting primitive data is easy. The list has the method "Sort()" for sorting items in ascending order. And we can use the Reverse() function after sorting to get the list in descending order. Let's first sort simple data types using the Sort method.
Implementing a "Kick Out" Feature in a Multiplayer Game Lobby
The main goal of this module is to be able to kick players from the private lobby. Only the host should be able to kick other players from the lobby. Let's look at how it can be accomplished in a simple multiplayer game.