Sunday, July 15, 2007

The Blog that hasn't

I apologize to my blog first and foremost for not showing any love the past week. While I still have been coding and working on C# I am not updated any progress. The main reason for this is because I feel I have remained stuck and have more or less just been reviewing or touching or even refining what I already know. By no means does this mean I am not determined in my quest. So on that note let the coding.........oh wait my boy just had a kid............I guess he did his own coding!

So now I have to go visit the little one and then let the coding begin!

Saturday, July 7, 2007

Time.........................

Well it is a slow process much like I have thought it would be. But the learning has not stopped. The input just keeps coming everyday and the more I try the more I will understand. I am just writing code everday and making little projects. But everyweek I am expanding what I can do within my projects and hopefully I will be completely comfortable with what I am doing. Until then...................its coding time!

Tuesday, July 3, 2007

Project TimeTable

Hahahaha, like 2 weeks later and I have finally finished the TimeTable project, well with the help of my mentor. But more importantly I understand how it is working. As well as still performing little projects I am still heavily engulfed with my C# workshop. I am still reading through the chapters and answering the questions. Well I have some C# to learn so hopefully I will have something new to updater later today if then there is always tomorrow.

Here is the code for Project TimeTable:

namespace TimeTable
{
class TimeTable
{
static void Main(string[] args)
{
Console.Title = "TimeTable";
Console.Write("Enter Max: ");
int iMax = int.Parse(Console.ReadLine());

for (int i = 0; i < iMax; i++)
{
for (int j = 0; j < iMax; j++)
{
Console.Write("{0,5}", ((i + 1) * (j + 1)));
}
Console.WriteLine();
}

}
}
}

Sunday, July 1, 2007

C# Update

Well at the request of my friend and mentor I have signed up to GameDev, link to the right, to further my learning process. I will participate in an 8 week crash course on C#. The only way to imbed this into my brain is to eat and sleep in the C# language. Well wish me luck!