An example of a portfolio in GitHub, created for coding and programming courses at Columbia College Chicago. Use markdown and GitHub's walkthrough to build a portfolio showcasing your work from class.
Code Projects | C# Projects | Gists
🏅 PROG 102 Code 😺
Information would be here
Description of the project would be here.
Description of my awesome game.
Creates random compositions using Processing.
- Loads random images
- Sets random location, transparency, and tint
- Built with Processing
Code Projects | C# Projects | Gists
🏅 PROG 205, 205, and 405
Information would be here
A WPF app created with C# that uses LINQ to query a set of data and show the results.

A game that demonstrates object-oriented programming principles inheritance, encapsulation, and polymorphism. C# Adventure Game
A Study Application that reads in terms and definitions from an external file (or files).
A command-line application with areas to explore and items for the player to find in each area. Before you can travel to the lake for snorkeling, the equipment must be found in one of the other areas. Explorable Areas
Underwater Creatures demonstrates inheritance, polymorphism, and encapsulation.
An application that lets a player create a custom insect character: Adopt-An-Insect
Shift Cipher is an application that encodes and decodes using a simple substitution cipher.
Zero Sum is a C# WPF application of the penny game described in 'The Computational Beauty of Nature'.
WPF Navigation is a C# WPF example of using a frame and multiple pages.
WPF-CharacterCustomizationExample is an example of using WPF and C# to allow a player to modify something with radio button choices (like an item or a creature companion).
More projects on my github repo site
Code Projects | C# Projects | Gists
Code examples can be shown like this:
private void Play()
{
foreach (TriviaItem triviaItem in Questions)
{
Clear();
WriteLine(player.PlayerInformation());
WriteLine(triviaItem.Question);
string input = ReadLine();
if (triviaItem.CheckAnswer(input))
{
player.IncrementScore();
}
}
}For more details see GitHub Flavored Markdown.
Code Projects | C# Projects | Gists | Top
