Ever had a good experience with one of those IT short courses?

Armitage

Banned
Feb 23, 2001
8,086
0
0
My boss got excited about a flyer for one of those IT short course, and the next thing you know, I was signed up for two days of "Mastering Java Web Applications" So I spent the last two days in a dingy hotel conference room up in Denver.

1. Two ancient computers for 3 students. 900MHz P3 with 256MB of RAM running XP. It literally took minutes for the Java IDE we were using to load.

2. Instructor was completely unprepared - we had to download the Java JDK over the hotels dog slow network and install it ourselves - taking up most of the first morning.

3. The instructors idea of "teaching" was reading verbatim from the powerpoint and the ~50 page info packet we got. Any attempts to break him loose from that revealed that he was completely clueless.

4. That 50 pages of material consisted mostly of step-by-step tutorials of the trained monkey variety (push a button, eat a banana) which were completely bug-ridden. And this is for a class which this instructor alone claims to have taught 6 times before.

5. At the beginning of the class the instructor asked what we wanted to accomplish. I spoke up and said I wanted to learn how to set up a web service. With 2 hours left yesterday, I brought it up again - his reply was to find a section on web services in one of his big Java books, put it in front of me and say "here, look at this." I asked him point blank if he had ever set up a Java web service. No

6. The class was 0900 to 1600 with a 1.25 hour lunch and two 15 minute breaks per day. So about 11.5 total hours of "instruction" for about $1200.

Now, I didn't expect to "master" java web applications in two days. But I did expect to come away with a good feel for what they were, where to start, etc. I've taken other short courses on engineering subjects and have been generally happy with what we covered. But they were much more intense, focused, fast paced, and usually put in at least a 10 hour day. And the instructor was generally a recognized expert in the field. This guy did have all the certs though - he rattled off a whole alphabet soup list of them at the beginning of the class :roll:

On top of all that, the guy was a complete MS shill - but he always prefaced those statements with "I'm not a microsoftie but ..."

All in all, a very disapointing experience. I told my boss that the next time he can just give me a $1200 bonus and two days off and I'll teach myself whatever it is.

 

mundane

Diamond Member
Jun 7, 2002
5,603
8
81
Originally posted by: Armitage
...
All in all, a very disapointing experience. I told my boss that the next time he can just give me a $1200 bonus and two days off and I'll teach myself whatever it is.

You would've gotten much better returns on your time. Was there any feedback mechanism after the course?
 

Armitage

Banned
Feb 23, 2001
8,086
0
0
Originally posted by: diegoalcatraz
Originally posted by: Armitage
...
All in all, a very disapointing experience. I told my boss that the next time he can just give me a $1200 bonus and two days off and I'll teach myself whatever it is.

You would've gotten much better returns on your time. Was there any feedback mechanism after the course?

Yea - there was a feedback form. Which you filled out in front of the instructor and placed in an unsealable envelope which he took with him. I ripped the class anyway, and I will be sending what I wrote above directly to CompuMaster as well - except their website is down ... of course.
 
Dec 27, 2001
11,272
1
0
I took some NT classes a long time ago and they were an excellent way for somebody with zero exposure to get some hands-on experience with server configuration. Gave me enough knowledge and confidence to apply for and win the network admin role at work like 7 years ago. Also, took a two day SQL class that was decent as an introduction to scripting 4-5 years ago.

For stuff like programming, though, I just got books as it's really too deep a subject to approach in a short classroom manner, imo.
 

Armitage

Banned
Feb 23, 2001
8,086
0
0
Originally posted by: HeroOfPellinor
I took some NT classes a long time ago and they were an excellent way for somebody with zero exposure to get some hands-on experience with server configuration. Gave me enough knowledge and confidence to apply for and win the network admin role at work like 7 years ago. Also, took a two day SQL class that was decent as an introduction to scripting 4-5 years ago.

For stuff like programming, though, I just got books as it's really too deep a subject to approach in a short classroom manner, imo.

Yea - I didn't expect to be writing much code. More like an overview of the various archtectures, tools, standards, etc. Maybe a case study on how to go about it, poke around inside a sample system, etc. And some insight from somebody who's been there on what works, what doesn't, how to approach the problem.

Instead we spent half a day learning how to build custom tags for JSP :roll: I mean, that's kind of cool, but it's really just a fancy interface for a function call, right? Convenient, but not terribly interesting.
 

Garet Jax

Diamond Member
Feb 21, 2000
6,369
0
71
Originally posted by: diegoalcatraz
You would've gotten much better returns on your time. Was there any feedback mechanism after the course?

I don't necessarily agree with this as a general statement, but in this specific case, it appears to be true.

On a side note, I would not have expected a 2 day mastering web course to cover web services. They are largely configuration and don't require you to know a lot about the web infrastructure.
 

Garet Jax

Diamond Member
Feb 21, 2000
6,369
0
71
Originally posted by: Armitage

Instead we spent half a day learning how to build custom tags for JSP :roll: I mean, that's kind of cool, but it's really just a fancy interface for a function call, right? Convenient, but not terribly interesting.

Custom tags is where the industry is moving now. They are trying to stay away from JSP code in the JSP page since it is clunky and can get very complex quickly. Moving the code into tags, keeps the code simpler, the JSP page simpler and lets the Java developers do the Java development.
 

EagleKeeper

Discussion Club Moderator<br>Elite Member
Staff member
Oct 30, 2000
42,589
5
0
I had that happen on a course.

When I went back, I had the company file a detailed complaint.

We were offered a replacemnt 5 day course or $$ back.
 

Armitage

Banned
Feb 23, 2001
8,086
0
0
Originally posted by: EagleKeeper
I had that happen on a course.

When I went back, I had the company file a detailed complaint.

It's probably going to come to that - this was advertised via one of our corporate "training partners" and HR isn't very happy about my report that got forwarded up to them.

We were offered a replacemnt 5 day course or $$ back.

I'd have to take the $$$ - don't think I'd risk losing more worktime for no gain.
 

Armitage

Banned
Feb 23, 2001
8,086
0
0
Originally posted by: Garet Jax
Originally posted by: Armitage

Instead we spent half a day learning how to build custom tags for JSP :roll: I mean, that's kind of cool, but it's really just a fancy interface for a function call, right? Convenient, but not terribly interesting.

Custom tags is where the industry is moving now. They are trying to stay away from JSP code in the JSP page since it is clunky and can get very complex quickly. Moving the code into tags, keeps the code simpler, the JSP page simpler and lets the Java developers do the Java development.

Yea, I agree that the complex and/or reused code should be moved outside of the JSP page - just like you do functions in any other programming environment. It just seems to me that the "custom tags" bit is nothing more then a function call made to look syntactically like an HTML tag. Which is fine & convenient. But I don't see it as anything revolutionary in it, or core to the java web application paradigm.

But what do I know - I've only taken one completely sucky short course on the subject :p
 

lokiju

Lifer
May 29, 2003
18,526
5
0
I've been to a lot of bad classes like that in the past but I've been to some decent ones also that was clear the instructor knew what they were talking about.

 

JDMnAR1

Lifer
May 12, 2003
11,984
1
0
I got sent to a CompuMaster two- or three-day class several years back by my old company, and it was a huge waste of my time and my company's money. Unfortunately, given my boss at the time, I couldn't complain or he would have taken that as a request to axe the training budget totally.
 

FoBoT

No Lifer
Apr 30, 2001
63,084
15
81
fobot.com
most of them are a waste of time/money

the only one i ever took that was awesome and was a super value to my employer was:

Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials
Course 2433