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 »

 

VB.NET || How To Serialize & Deserialize XML Using VB.NET

The following is a module with functions which demonstrates how to serialize and deserialize XML using VB.NET. The following generic functions use

VB.NET || How To Split & Batch An Array/List/IEnumerable Into Smaller Sub-Lists Of N Size Using VB.NET

The following is a module with functions which demonstrates how to split/batch an Array/List/IEnumerable into smaller sublists of n size using VB.NET.

VB.NET || How To Convert An Array/List/IEnumerable To A DataTable & Convert A DataTable To A List Using VB.NET

The following is a module with functions which demonstrates how to convert an Array/List/IEnumerable to a DataTable, and how to convert a

VB.NET || How To Set & Get The Description Of An Enum Using VB.NET

The following is a module with functions which demonstrates how to set and get the description of an enum using VB.NET. This

VB.NET || How To Iterate & Get The Values Of An Enum Using VB.NET

The following is a module with functions which demonstrates how to iterate and get the values of an enum using VB.NET. This

VB.NET || How To Resize & Rotate Image, Convert Image To Byte Array, Change Image Format, & Fix Image Orientation Using VB.NET

The following is a module with functions which demonstrates how to resize an image, rotate an image to a specific angle, convert

VB.NET || How To Convert A String To Byte Array & Byte Array To String Using VB.NET

The following is a module with functions which demonstrates how to convert a string to a byte array and a byte array

VB.NET || How To Save, Open & Read File As A Byte Array & Memory Stream Using VB.NET

The following is a module with functions which demonstrates how to save, open and read a file as a byte array and

VB.NET || How To Validate An Email Address Using VB.NET

The following is a module with functions which demonstrates how to determine if an email address is valid using VB.NET. This function

VB.NET || How To Validate A Phone Number Using VB.NET

The following is a module with functions which demonstrates how to validate a phone number using VB.NET. Not only does this function

VB.NET || How To Shuffle & Randomize An Array/List/IEnumerable Using VB.NET

The following is a module with functions which demonstrates how to randomize and shuffle the contents of an Array/List/IEnumerable using VB.NET. This

VB.NET || Word Wrap – How To Split A String Text Into lines With Maximum Length

The following is a module with functions which demonstrates how to split text into multiple lines using VB.NET. The following function is

VB.NET || How To Get First/Last Day Of The Week And The First/Last Day Of The Month

The following is a module with functions which demonstrates how to get the first and last day of the week, as well

VB.NET || Roman Numeral Conversion – How To Convert Roman Numeral To Integer & Integer To Roman Numeral

The following is a program with functions which demonstrates how to convert roman numerals to integer, and integers to roman numerals. The