Friday, September 14, 2007
Growing Pain
Wow I can not believe it is going to be 3 years already but it will be. Tyler is almost 3 and started his first day of class in nursery. I am very proud of him. On another note Karissa is still 6 and in first grade. My baby girl is already cheating as she wrote her last name on her hand so she can remember it...not that I blame since it has 10 letters and looks like a scrabble board.
Wednesday, August 29, 2007
Off Site
I am heading to Orlando for my team offsite/onsite meeting. I will be bringing my C# book with me on the plane. It has been awhile and it is time to step it up and get back into it.
Wish me luck in reading!
C#!!!!!!!!!!!!!!!!!!!!!!
Wish me luck in reading!
C#!!!!!!!!!!!!!!!!!!!!!!
Tuesday, August 7, 2007
ReCharged
Wow after some family time in Florida I am now recharged and ready to go. Time to get back to work. Also time to start getting back into my C#. Yes I cant wait at the end of the this week I jump back into the programming world. But until then it is just good to be back home!
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!
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();
}
}
}
}
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!
Subscribe to:
Posts (Atom)