Create

Network Programming in Java - #3 - Creating a Test Client

Introduction: This tutorial is the third in my Java Network Programming using KryoNet series in which we are creating a test client to connect to our test server. Previous: In the previous tutorial we created a test server. IMPORTANT: A) Your server and client can not be running at the same time, in Eclipse, in the same Java Project.

How To Create a Stopwatch in C#

In this tutorial, I will teach you how to create a program that has a function of a digital stopwatch. Stopwatch is a timepiece that can be started or stopped for exact timing as of a race or any activity. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Management System in Python - #1 - Main Menu & Adding Users

Introduction: In this tutorial we will begin making a local user management system in Python. We have done this before in a simple SQLite database, but this series will be storing the information in simple plain text files ready for editing manually and portable safe. The Main System: First we want to create a main function which will be our menu system. The user will loop around this until they enter "0" to exit the program.

How to Create a User Management System in Python Using SQLite

Introduction: This tutorial is on how to create a user management system in Python using SQLite. The Database: First we need to create the database to store the information, to do this open CMD (on Windows) and type cd followed by your SQLite installation path, mine is:
  1. cd /d G:
  2. cd Libaries\Documents\SQLite
Now we use the command sqlite3 f

How to Create a Rock Paper Scissors Game in Python

Introduction: This tutorial will be covering how to make a simple rock, paper, scissors game in Python. How It Works: First we get the user choice through input. Then we generate a random number 1 through 3. Convert the random number to rock, paper or scissors. Output the comparison result. Imports: To generate a random computer choice we need to import the random module...
  1. import random

How to Create a Text Explorer Game in Python

Introduction: This tutorial will cover how to create a simple text based exploration game. How It Works: What we are going to do is; Give the user instructions. Show the current place where the user is within the game. Give the user options. Take them in the direction they enter. Restart loop from step 3. The Instructions: So the first thing we do is give the user instructions on how to play the game...
  1. print