C++ || Yahoo! Sports – Current Batting Order – Programming Interview Test (Question 3 of 3)

The following is sample code which demonstrates a solution to the Yahoo! Sports programming interview question titled “Current Batting Order.” The test was taken on November 2013 for educational More »

C++ || Knapsack Problem Using Dynamic Programming

The following is another homework assignment which was presented in an Algorithm Engineering class. Using a custom timer class, the following is a program which reduces the problem of More »

C++ || Multi Process Server & Client Hash Table Using Thread Pools, Message Queues, & Signal Handlers

The following is another homework assignment which was presented in an Operating Systems Concepts class. Using commandline arguments, the following is a program which implements a multi threaded hash More »

Python || Aku Aku Snake Game Using Pygame

The following is another homework assignment which was presented in an Introduction to Game Design and Production class. This project is an implementation of the classic “Snake” game using More »

Python || Brainy Memory Game Using Pygame

The following is another homework assignment which was presented in an Introduction to Game Design and Production class. This project is an implementation of the classic “Memory” game using More »

 

C# || How To Generate A Random String Of A Specified Length Using C#

The following is a module with functions which demonstrates how to generate a random code of a specified length using C#. The

C# || How To Get A List Of Files At A Given Path Directory Using C#

The following is a module with functions which demonstrates how to get a list of files at a given directory path using

C# || How To Get The Computer & User Client IP Address Using C#

The following is a module with functions which demonstrates how to get the computers and user client request IPv4 IP address using

C# || How To Copy DataTable DataRow From One DataRow To Another Using C#

The following is a module with functions which demonstrates how to copy a DataTable DataRow from one DataRow to another using C#.

C# || How To Generate, Create & Read A QR Code Using C#

The following is a module with functions which demonstrates how to generate, create and read a QR code using C#. The functions

C# || How To Append & Join A Date & Time Value Together Using C#

The following is a module with functions which demonstrates how to append and join a date and time value together using C#.

C# || How To Generate Hourly Time Range With Minute Interval Using C#

The following is a module with functions which demonstrates how to generate an hourly time range with minute interval between a start

C# || How To Add & Use Custom Attributes To Class Properties Using C#

The following is a module with functions which demonstrates how to add and use custom attributes for class properties using C#. The

C# || How To Remove Excess Whitespace From A String Using C#

The following is a module with functions which demonstrates how to remove excess whitespace from a string, replacing multiple spaces into just

C# || How To Remove All Whitespace From A String Using C#

The following is a module with functions which demonstrates how to remove all whitespace from a string using C#. 1. Remove All

C# || How To Remove Non Alphanumeric Characters From A String Using C#

The following is a module with functions which demonstrates how to remove and replace non alphanumeric characters from a string using C#.

C# || How To Replace Entire Words In A String Using C#

The following is a module with functions which demonstrates how to replace entire words in a string using C#. This function is

C# || How To Manually Copy Two Streams From One To Another Using C#

The following is a module with functions which demonstrates how to manually copy two steams from one to another using C#. 1.

C# || How To Copy All Properties & Fields From One Object To Another Using C#

The following is a module with functions which demonstrates how to copy all properties and fields from one object to another using