Skip to content

Instantly share code, notes, and snippets.

View GaProgMan's full-sized avatar
💭
Somewhere on the call stack

Jamie Taylor GaProgMan

💭
Somewhere on the call stack
View GitHub Profile
@GaProgMan
GaProgMan / Form1.cs
Last active December 11, 2015 07:49
A VERY basic random quote generator in C#, windows Windows Forms and reflection
/*
* Project Name: Random Quote Generator
* Solution Name: Random Quote Generator
* Original creation date: 18/06/2006
* Edit date: 18/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: Form1.cs
*
* Purpose of the project:
*
@GaProgMan
GaProgMan / ProblemSixEdit.c
Created January 18, 2013 23:17
One possible solution for problem 6 on the Project Euler website
/*
* Project Name: Problem Six Edit
* Solution Name: Problem Six Edit
* Original creation date: 11/07/2011
* Edit date: 18/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: ProblemSixEdit.c
*
* Purpose of the project:
* This code is my solution for "Problem Six" listed
@GaProgMan
GaProgMan / SumLargestSmallest.cs
Created January 20, 2013 11:57
An un-optimized algorithm for searching through a list of integers to find the sum of the largest and smallest values.
int n, smallest, biggest, sum, difference = 0;
for ( int i = 0; i ++; i < listOfNumbers.Count ) {
n = lisOfNumbers[i];
if ( n > biggest ) {
biggest = n;
}
else if ( n < smallest ) {
smallest = n;
}
@GaProgMan
GaProgMan / ProblemSix.c
Created January 20, 2013 12:02
One possible solution for problem 6 on the Project Euler website
/*
* Project Name: Problem Six
* Solution Name: Problem Six
* Original creation date: 06/07/2011
* Edit date: 18/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: ProblemSix.c
*
* Purpose of this project:
* Problem Six, from Project Euler.
@GaProgMan
GaProgMan / ProblemFive.cpp
Created January 20, 2013 12:11
One possible solution for problem 5 on the Project Euler website
/*
* Project Name: Problem Five
* Solution Name: Problem Five
* Original creation date: 09/07/2011
* Edit date: 18/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: ProblemFive.cpp
*
* Purpose of the project:
* This code is my solution for "Problem Five" listed on
@GaProgMan
GaProgMan / ProblemTwo.cpp
Created January 20, 2013 12:20
One possible solution for problem 2 on the Project Euler website
/*
* Project Name: Problem Two
* Solution Name: Problem Two
* Original creation date: 03/07/2011
* Edit date: 18/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: ProblemTwo.cpp
*
* Purpose of the project:
* This code is my solution for "Problem Two" listed
@GaProgMan
GaProgMan / FizzBuzz.cpp
Created January 20, 2013 12:27
One possible solution for the famous "Fizz Buzz" problem
/*
* Project Name: FizzBuzz
* Solution Name: FizzBuzz
* Original creation date: 18/04/2011
* Edit date: 18/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: FizzBuzz.cpp
*
* Purpose of the project:
* This code is my solution for a common programmer
@GaProgMan
GaProgMan / ProblemOne.cpp
Created January 20, 2013 12:33
One possible solution for problem 1 on the Project Euler website
/*
* Project Name: Problem One
* Solution Name: Problem One
* Original creation date: 03/07/2011
* Edit date: 18/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: ProblemOne.cpp
*
* Purpose of the project:
* This code is my solution for "Problem One" listed on
@GaProgMan
GaProgMan / CollisonDetection.cpp
Created January 20, 2013 12:56
A very basic implementation of 2D collision detection
/*
* Project Name: CollisionDetection
* Solution Name: MandelbrotCalc
* Original creation date: 25/03/2011
* Edit date: 19/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: CollisionDetection.cpp
*
* Purpose of the project:
* To re-write the psuedo-code found in a previous
@GaProgMan
GaProgMan / VideoFrameSizes.c
Created January 20, 2013 13:05
A quick and dirty explanation (through C code) of why we need video compression techniques
/*
* Project Name: VideoFrameSizes
* Solution Name: MandelbrotCalc
* Original creation date: 24/03/2011
* Edit date: 19/01/2013
* Programmer name: Jamie Taylor (aka "GaProgMan")
* File name: VideoFrameSizes.c
*
* Purpose of the project:
* To underpin the reasons why video compression exist