Skip to main content

Developer Update

I felt it was time to update what I've done in development lately. Sadly, it's not as much as I had hoped. My current plans are to enroll in Western Governor's University and continue my programmer education there, as well as these pet projects on the side. The requirements for enrollment are a little strict, though. I have to have either an Associate's degree already in the area of study or better, or I have to have 3 years experience in that field. I have six months in the area right now, but I worked as a tech liason for about 10 years in my customer service position. I'm hoping that will help.

Here's the unusual part at the moment: I cannot reach the enrollment counselor. We've spoke, been introduced, he was going to read my resume over and discuss options, and we were supposed to get back together on the phone that Friday (two weeks ago). I missed the call due to a meeting at work, but called back an hour later. I've left three voice mails since. I'm hoping he's just out of the office.

Currently at work, I've finally met the development team I've been working with for the past six months in person. We're together for three days this week at a hotel. Great group of people. Since Tuesday, we have been going over the year, things we can do better, things we've done right, and learning new skills. Keep in mind, I'm a software Tester, so much of the detail that's been involved is over my head for now, but the past couple of days have been awesome. I actually got to see the entire group debug and refractor code on a projector screen so I can follow along. Even though I don't understand 100% of what's going on, simply seeing it done, and the developers asking similar questions that I also quietly have in my mind is the most educational and encouraging part of the last few days for me personally.

I'm going to keep this blog relatively short. I'm writing it on my cell phone just before crashing, but I wanted to let others know that, although I'm not where I want to be yet, I am still moving forward.

Comments

Popular posts from this blog

Detailer Calculator GUI

I'm probably not done. I'm going to sit on this design for a day or two to see how it feels. I had a suggestion about adding a right triangle showing people base, slope, rise, angle, etc. I'm kind of torn on that part. In essence, this is probably about 90% done as far as the User Interface goes. I like it, I think. I'm hoping to be able to pass the keyboard strokes directly into the program, rather than have someone point and click. If I can get that done, the flow will be ten times better. I'm excited about the math involved and the fact that this will actually be functional. There are two things I'm struggling with right now. The first is the programming language. I've mentioned this before, I believe, but the programs my group works with are all programmed in VB.net. So, that's the language I'm learning right now. The problem, however, is that the system architect here at work is telling everyone that any new programs should be written in...

Big Scare

I learned an important lesson. Actually, I learned a few lessons. The first lesson - always back up. Have copies of files if backing up isn't easy. Next, it's a good idea to not proceed too far without checking to make sure everything still work, while you can still undo something. Third, and more specifically, apparently, renaming certain items in Visual Studio can completely erase a design. Let me explain... To recap, Visual Studio is the IDE I use to write my programs. I'm learning the VB.Net programming language because that's the language the software my company maintains was written in. It makes sense to get more familiar with that. I'm still extremely  new to Visual Studio, and I'm very new to coding and general coding principles. I'm reading tons of books (often at the same time) to get general coding practices, as well as very specific programming details for VB.Net. All this combined to say, I'm still learning, and I'm really new. No...

Progress on the Pet Project

So, I don't have much, but I do have some. Behold my genius code for my hours calculation:     Private Sub btnCalculate_Click(sender As Object, e As EventArgs) Handles btnCalculate.Click         Dim s1 As Integer         Dim s2 As Integer         Dim s3 As Integer         Dim s4 As Integer         s1 = Val(txtTimeInSunday.Text)         s2 = Val(txtTimeOutLunchSunday.Text)         s3 = Val(txtTimeInLunchSunday.Text)         s4 = Val(txtTimeOutSunday.Text)         lblSundayHoursTotal.Text = s4 - s1 - (s3 - s2)         Dim m1 As Integer         Dim m2 As Integer         Dim m3 As Integer         Dim m4 As Integer         s1 = Val(txtTimeInMonday.Text)         s2 = Val...