✧・゚: *✧・゚:*Work Samples *:・゚✧*:・゚✧




Planetary Weight Application

Windows form object showing image of space with options to enter weight, pick a planet, and display/clear weight results. Section of code showing Select Case statements for planetary weight conversions. Windows form object displaying weight of 100, with Jupiter selected, and weight results equaling 234lbs and 106.2kgs.

This application was created in Visual Studio using Vb.net. The app allows a user to enter their weight and select a planet. The app then converts their weight to the weight they’d be on the selected planet.The selected portion of code shows the Select Case statements I used for the planetary weight conversions. It also shows how I did my calculations and displayed the weight results. The results shown are for a weight of 100 on the planet Jupiter.


Body Mass Index Calculator Application

Windows form object showing CDC BMI chart with options to select a system, enter height and weight, and compute BMI. Section of code showing Select Case statements for weight status and system conversions. Windows form object displaying BMI of 19.53 with weight status of Normal Weight, with Imperial system selected and a height of 60 and weight of 100.

This application was created in Visual Studio using Vb.net. The app allows a user to select either the Imperial System or Metric System. After selecting a system, the user enters their height and weight, then is able to compute their BMI. The selected portion of code shows the Select Case statements I used to call subprocedures and determine the user's weight status. The results shown using the Imperial System with a height of 60 and weight of 100 display the user's BMI and weight status according to the CDC.


Penny or Nickle Application Flowchart

This flowchart shows how an application named Penny or Nickle Challenge runs. Flowcharting is very useful to programmers and developers because it shows how an application will run and how the different parts of the program come together.


Arkanoid Game

This game was created in Unity and Visual Studio using C#.