Archive for the 'College' Category

May 14 2008

Profile Image of toebot
toebot

JourneyEd and Microsoft DreamSpark

Filed under College, Programming

Microsoft, in another magnanimous act, is offering SEVERAL professional editions of its most popular developer software to students for free.

No, seriously.

No, I am not talking about the Visual Studio Express Editions.

If you have any further doubts just visit the Microsoft DreamSpark site. I think it is fairly pointless to repeat a bunch of information (a blogging about another blogging or article), so I will stick a few points in for brevity (a micro-blogging).

So:

  1. Sign in.
  2. Verify you are a student.
  3. Download.

Then enjoy:

  1. Expression Studio
  2. Visual Studio 2005 Professional Edition
  3. Visual Studio 2008 Professional Edition
  4. Windows Server 2003 Standard Edition
  5. SQL Server 2005 Developer Edition
  6. XNA Game Studio 2.0
  7. XNA Creators Club Online

Darn!  What if my university or student organization is not listed?  Well, if you have any kind of partnership with JourneyEd through whatever school you are enrolled in, just follow JourneyEd’s student verification process.  You will:

  1. Visit JourneyEd through your alliance link.
  2. Add “MS DreamSpark” to your cart.
  3. Checkout.
  4. Verify you are a student which is simple.

    If you came from your school homepage JourneyEd will detect that.
    If not, it will ask you to login to your school homepage and come back.

  5. Checkout.
  6. Wait for your link to the DreamSpark site.  Which by the way, didn’t come until my 2nd call to JourneyEd asking where my e-mail was.  My Comcast e-mail didn’t work.  Nor did our EDU addresses.  *shrug*

And that is about it.  You will be verified and sent straight to the DreamSpark site.

OK, maybe that was not as brief as I previously thought.

No responses yet

May 13 2008

Profile Image of toebot
toebot

Inform is part of Information

Since I recently discussed (ten minutes ago) not hiding stuff, or if you have to at least notify your users of the fact, I thought it appropriate to say this:

If you are going to take down a link — LET ME KNOW!

Yesterday I visited http://www.waldenu.edu/c/10909.htm to check if they had any online Information Technology courses.  I found http://www.waldenu.edu/c/Schools/Schools_13788.htm, which was supposed to lead to “B.S. in Computer Information Systems.”  Instead I was presented with a 404 page.

And of course today the link on the “10909″ page is now gone. If we view the source of that page we see the link is there — it is just commented out.

If you are smart enough to design applications that notify you of problems you should be just as smart in notifying your users.

Tell me that the link is temporarily unavailable.  Better yet, tell me when it is coming back online or where I can find the information in the meantime.

Walden University has lost out on a student simply because I am unwilling to check back every day to check for links that have magically disappeared.

NOTE:  As of May 20th, 2008 the Walden University llink finally reappeared.

No responses yet

May 09 2008

Profile Image of toebot
toebot

School’s Out and I Am Reborn!

Filed under C#, College, Rambling

Yep, that’s right.  I graduated April 8th — well, finished school that is. Graduation isn’t until August.

I am sure it is completely evident, but here it is again in case you missed it.

I simply hate blogging.

I have tried so many times to run a successful blog and it simply does not pan out.  By successful I do not mean one that is dependent upon advertising revenue, but one that simply sees a post once in a while.

Long story short I have decided that this blog is to have a different purpose.  It started out that I would post my happenings in C#, but inevitably became my rant zone for my idiot professor who spent the majority of his time taking comments personally.

When he was not doing that, he was busy making comments that generally pissed a lot of fellow classmates.

We all agreed that he, the class, or perhaps the university — I would vote all three — was simply too pathetic to glean anything useful.

Since I found myself bitter and angry, I gave up blogging about it.

Instead, this will be the home of my random thoughts and activities in interfaces, usability, and functionality.

I fear that I may be one of those who are far better suited to teach, than professionally exert my knowledge.

If that is the case, I sincerely promise to deliver the best possible ideas and concepts that randomly flit through this damaged brain.

No responses yet

Feb 16 2008

Profile Image of toebot
toebot

Solicitation during class, by the professor no less

Filed under C#, College, Programming, Rambling, Rant

Say what!? No way!

Yes way!

During my class last night StudentA (for some strange reason) stroked the professor’s ego by saying that he should have wrote the book, upon which the professor replied:

Student A: They should have just paid you to write the text
Professor: (I have my own C# text out there Student A)

Upon reviewing the class transcript I see that it was because the idea behind the “static” keyword finally sunk in for Student A. It was then that they fully understood why you call:

System.Console.WriteLine();

By prefixing the WriteLine method with Console, rather than instantiating an object of the Console class.

For this a student gushes about how well the professor is teaching? That he should have wrote the book? All he did was explain how static works!

*sigh*

No responses yet

Feb 14 2008

Profile Image of toebot
toebot

Is nitpicking a requirement of a PhD?

Filed under C#, College, Programming, Rambling, Rant

My professor constantly avoids any and all questions that involve anything beyond the simplistic. For example, one time he tells me:

I feel really bad because if this is your last term as a programmer, then you should have been through 3 courses in either VB or Java here. Which means then you really should already have the knowledge base for this course – you just don’t have the C# syntax (which is nearly identical to Java). Honestly, you’re the bulk of the reason why I’ve added in these ‘extra’ programs – because I think everyone else is going to be having a tough enough time with the regular projects. Hopefully I’ll be wrong about that, but having taught this course more than a few times, that’s just been my experience.

Yeah, you heard that right. He feels bad because I should have had previous programming classes to prepare me for this course. Granted, I did have an Introduction to Programming about a year ago, but it was basically a “how to use Visio” course. It didn’t teach anything worthwhile (unless you consider Visio that worthwhile).

So, I decide to continue to push my understanding of the language and ask about assemblies, specifically this (in a discussion board thread that he previously ignored):

ME

I didn’t see a necessity to pollute the global namespace with a using directive for one qualification.

And I’ll be honest, I have no absolute clue that it would pollute the “global namespace.” That is basically a carry-over from my work in client-side programming and memory resident applications that would normally suffer greatly the more you “polluted” the memory allocation.

Well, PROFESSOR? Does it increase memory whatsoever? I’m going to say, “No.” It probably doesn’t because this is a compiled language, then again, I’ve no clue how it may poll the framework. It might request that System be looked up each and every time the program runs or it may statically link in some information pertaining to the specific calls it requires. I have ZERO clue how assemblies are resolved.

PROFESSOR

For this course, it’s quite appropriate to have a ‘using statement’ even if you only use that reference one time – in fact, it’s nearly expected. For example, it’s fine to have:

using System;

public class TestMe {
public static void Main() {
Console.WriteLine("hello");
}
}

The rest of the discussion here is well beyond the scope of this course.

Say what?! How in the world did that answer ANYTHING I said?! In fact, the response didn’t even make sense.

And if that simple bit of information is outside of the scope of this course, yet it is supposed to be the 4th in a series of programming courses offered — WHEN exactly would it be in scope?

I am convinced my professor is an idiot.

Oops, almost forgot the nitpicking. I purposely did the wrong exercise to see how it would be handled (it was an extra, nothing against my grade) and this was his response:

PROFESSOR

The problem that I see in the text says:

“Show the output for each of the following data types: …”

The program code that I see here has 3 ints, a float and a double. It does some math and then outputs a single value (the double).

~~~~~~~~~~~~~~~~~~~~~~~

Now, was this first problem a real-world problem? Certainly not. It was quite abstract – BUT – it does bring up a great point. And this was something that I mentioned near the end of our first meeting together:

“The thing that folks tend to lose the most points for in this class is for not following directions.”

And while the problem itself might not be ‘real world’, following directions is definitely something that’s about as real world as it gets. I have this long, drawn out story that I tell to seated students about working your first job.

The short version is that your boss says they have a big client who wants a spreadsheet program. You want to impress your boss so you add all these extra features. At the end, you have a program that’s the best word processor EVER. It’s going to put Word out of business. The problem is – your client wanted a spreadsheet and you end up getting fired.

Ok… a little unrealistic, but the point is that reading and following directions is critical for a programmer. After all, what does a programmer do for a living? They write instructions for a machine.

Again, I feel bad posting this here — hey, you’ve taken the time out of your life to write an extra program. However, this is really part of the reason why I’ve created these ‘extras’. Because there’s so much to learn and really the best way to find out is to actually write a program and then get feedback on it.

Overall, I think it’s wonderful that you were able to get this program working — but I’ll challenge you to try to slow down a bit and pay close attention to what the problem is stating. This is going to be critical in your Projects this term as I’ll always grade based on the Project specs.

Thanks!

ME

Thanks for that lengthy response — I think.

I am worried about something small — I’m not sure if it was the fact that I did the wrong exercise, or the fact that you didn’t catch it.

PROFESSOR

Well, to be fair to myself, I do not have 100% complete knowledge of every single problem that is written in this textbook.

I sincerely apologize for not being better at catching the fact that you did a different problem.

All of my comments still apply to everyone though. Reading and following directions is critical.

Um… to be fair to me should I not have a competent professor in the field I’m studying? Why do I have to have the Gomer Pyle of C#?

So, I post the right exercise:


2. “Initialize each variable with an appropriate test value.”

I figured this meant no values outside of the types natural range. So I pushed the limit and casted a float value to my integer variable. (Just because I wanted to use 12345.12345 in each example. I know… silly…)

namespace IT254_01_Unit2_Extra
{
	class Program
	{
		static void Main()
		{
			int varInteger = (int) 12345.12345; // casting so I can use 12345.12345
			float varFloat = 12345.12345F; // no implicit conversions
			double varDouble = 12345.12345;
			decimal varDecimal = 12345.12345M; // no implicit conversions

			Console.WriteLine("\r\nFormatted with 0 digits:");
			Console.WriteLine("varInteger:\t{0:C0}", varInteger);
			Console.WriteLine("varFloat:\t{0:C0}", varFloat);
			Console.WriteLine("varDouble:\t{0:C0}", varDouble);
			Console.WriteLine("varDecimal:\t{0:C0}", varDecimal);

			Console.WriteLine("\r\nFormatted with 2 digits:");
			Console.WriteLine("varInteger:\t{0:C2}", varInteger);
			Console.WriteLine("varFloat:\t{0:C2}", varFloat);
			Console.WriteLine("varDouble:\t{0:C2}", varDouble);
			Console.WriteLine("varDecimal:\t{0:C2}", varDecimal);

			Console.WriteLine("\r\nFormatted with 5 digits:");
			Console.WriteLine("varInteger:\t{0:C5}", varInteger);
			Console.WriteLine("varFloat:\t{0:C5}", varFloat);
			Console.WriteLine("varDouble:\t{0:C5}", varDouble);
			Console.WriteLine("varDecimal:\t{0:C5}", varDecimal);
			Console.WriteLine();
			Console.Write("Press any key to continue... ");
			Console.ReadKey();
		}
	}
}

He responds with:

Sounds fine. I'm not sure that I totally understand why you cast a double into an int, instead of just storing the int. Yes, I see your explanation there, but I think that was part of the deal with having 4 different variables and was probably an extra line of text that wasn't necessary.

Oh, and keep in mind that often times with these textbooks, the author writes the text and someone else (maybe multiple someone elses) write the problems, summaries, student materials, etc, etc, etc. Not really that big of a deal, but its more than likely true. (See you never know what you might learn here)

So of course, why the heck are we learning from this 5 year old book in the first place — you know, the one my PROFESSOR told me was not really all that old and was a great book to learn C# from?

And of course that brings me to my final and most important point of my post — why can he not stop nitpicking? I mean, I explained that OCD frequently makes me do neurotic things and I've explained inline and in comments that I just wanted to, for no reason whatsoever. The only thing this moron can do is try and justify it in his own mind?

He cannot answer a simple question about C# coding conventions, but he can nitpick every moot point he sees fit?

I think my professor is an idiot.

You know what? Since I am rambling... let me tell you this final story. It relates to him saying that I should have had more programming classes before this one, but offers nothing in the way of actual assistance or guidance — and coding conventions just reminded me of it.

I asked if he had any C# design patterns or specifically a way to lay out my projects in a way that made sense and were easy to revisit after months or years of not perusing the code.

His response:

Are there any design patterns that I recommend? Yes, I'd recommend that you learn the different patterns and choose the most appropriate for the situation at hand. A good text to use when learning these is "Design Patterns" (Gamma, Helm, Johnson, Vlissides) ISBN 0-201-63361-2.

I am so letdown at my college's offerings and staff at this point, I feel as if I have wasted an entire 2 years of my life and over $30,000 USD in tuition.

Did I mention I think my professor is an idiot?

No responses yet

Feb 01 2008

Profile Image of toebot
toebot

Second omen. Good or bad? You tell me.

Filed under College, Programming

OK, yet another area of slight distress has popped up.  As with most of the curriculum and overall coursework I’ve received, completed, and submitted, I feel as if it is not being transferred to me by competent hands.

I had my first C# class tonight and here is but an excerpt from it:

PROFESSOR: So the next question I usually get is, “C# 2003, 2005, or 2008?”

PROFESSOR: Let’s start from the first one – 2003

PROFESSOR: This is the version that comes bundled with your book.

PROFESSOR: I believe this is a free trial for Visual Studio, which is a good thing.

PROFESSOR: However, this is a trial so it’ll eventually expire.

PROFESSOR: Then there’s 2005.

PROFESSOR: Now I’ve used this in the past for this course and have recommended that folks use it here as well

PROFESSOR: It’s pretty much the same as 2003, but some things are a bit easier

PROFESSOR: The problem is that then your screen won’t match what it shows in the text, which is a bit of a problem sometimes

PROFESSOR: And just recently we got the chance to get 2008

PROFESSOR: Now this thing was just released in the past couple weeks, so I haven’t really had a chance to play with it very much

PROFESSOR: My guess is that for the purposes of this course, it’s probably about the same as 2003 … but I can’t promise anything

StudentA: If we want 2005, can we get a demo for free?

PROFESSOR: Either way, if you do choose to use 2005 or 2008, be aware that you should bother buying it.. at least not yet

PROFESSOR: Right StudentA… here’s the deal with that

PROFESSOR: Microsoft provides their ’Express Editions’ to us for free!

PROFESSOR: And again, for purposes of this course, the Express Edition is more than enough

PROFESSOR: So if you’re interested, and willing to work with something that looks different from your text,

PROFESSOR: then you might consider downloading the Express edition and using it for this course

PROFESSOR: I personally have all the versions on my machine (since Visual Studio 6!), so they all co exist just fine and

PROFESSOR: I’m able to handle any version you choose to submit to me

PROFESSOR: Ok, let me pause and see what questions you have

PROFESSOR: Uh-oh… is anyone still here?

StudentC: yes

StudentA: Yeah, still here. No questions

PROFESSOR: Ok good… one thing that worries me is when I ask a yes/no question and I don’t get a response.

PROFESSOR: I want to be sure you’re still here and participating

[[After having to reconnect because of server latency.]]

ME: Couple of weeks?

StudentB: I’m still here and I have no questions.

PROFESSOR: I also need to apologize for all the ’blue text’ tonight… there’s just a lot of info to go over

PROFESSOR: I’m sorry ME, can you rephrase your question?

StudentC: understandable

PROFESSOR: Well.. no matter which version of C# you choose to use for this class

ME: I was wondering about what you said about VS Express 2008 being released only a few weeks ago.

PROFESSOR: Yes, that’s correct.

PROFESSOR: The full release just came out

From what I remember, the 2008 Express Editions were talked about publicly as early as third quarter 2006, but officially released to the public fourth quarter 2007.  See here for example.  (And let’s not forget that Microsoft’s “RTM” means if it doesn’t blow up your computer it’s the product you’ll be stuck with for a while.)

Then on November 19th, 2007 the pre-release of Visual Studio Express and its many incarnations were released.  There was definitely a bit of buzz about it.

So am I missing something fundamental or does “a couple of weeks” not equate to well over two months?

I think my final point is basically that because the newest release is dubbed “2008,” then everyone, my professor included assumes it must have been concocted on January 1st, 2008.

Should I be worried?

2 responses so far

Jan 30 2008

Profile Image of toebot
toebot

Want to learn programming? Surf the Web!

Filed under College, Programming

I am not entirely sure if it is reason to worry or not, but I contacted my professor as to why we were instructed to find and download Visual C# Express 2003 — their response was that they had not yet updated the material to cover 2008, but perhaps 2005 would suffice.

I questioned also why the class was directed to Google in search of the downloads instead of being given a direct link.  I was told (verbatim mind you):

Honestly, it’s a good exercise for people to get used to locating information online – especially on MS’s site.  The more practice folks get, the better.  Besides I only want the ‘adventurous’ to go get the newest version.  Remember our text was written with 2003.  If you can’t find and install the newest version, then you probably will be freaked out by the differences between your screen and the text.

I cannot lie and say that I’m not completely worried as to the competency of either the professor or the curriculum.  I’m also not entirely sure how the professor feels this little “exercise” will benefit those seeking to program in C#.

No responses yet

Jan 28 2008

Profile Image of toebot
toebot

Scratch Java, C# here I come.

Filed under College, Programming

Well, I signed up for a Java class weeks ago but my seriously slow academic advisor e-mails me a few days ago to say that it is full.

So I request VB.NET — which after another couple days he informs me is also full.

So I request Programming II — which happens to be a C# class, and what do you know?  It’s empty.  Too bad I hate .NET and really didn’t want to be in this class.

Ah well, I’ll try and make the best of it.  It really shouldn’t be too terribly difficult as it is an entry level programming class.  Programming I was an Introduction to Programming (abstract) and Programming II is just starting in a specific language, so it is technically an entry level one.

So, that’s that… now to add a C# category and stare at my Java category with longing eyes every time I post something about the former.

No responses yet