in reply to Re: Re: Explaining a Perl project to a VB-bound audience
in thread Explaining a Perl project to a VB-bound audience

This may be a silly comment, but if you're trying to explain to someone how something works, aren't you necessarily going to teach this some of how the language works?

Or, are you just going to work with the high-level design? In which case, the language they do and don't know is irrelevant. Languages are implementation details. Designs are language-independent (for the most part).

I mean, they're not going to maintain a Perl application without knowing Perl, right?

------
We are the carpenters and bricklayers of the Information Age.

Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.

  • Comment on Re3: Explaining a Perl project to a VB-bound audience

Replies are listed 'Best First'.
Re: Re3: Explaining a Perl project to a VB-bound audience
by Lasker (Beadle) on Jan 21, 2002 at 22:40 UTC

    Right :-)

    I have to explain them both, the high-level thing and the gory details. However, I consider that, for the sake of understanding, it would be appropiate to give an approach to the project keeping in mind that these guys have only programmed with VB (the "who" factor). And, furthermore, I can't trust them to know some of the details I otherwise would risk to leave unknown.

    Okay, they are programmers and stuff, but I just don't have enough *time* to give them an introductory course to Perl, and, then, show the project. I have to make them understand how it works, keeping in mind that they know nearly nothing of this (and yes, I've already talked to them and given them some docs ;P). Therefore, comparing some concepts to VB is the only way I can think of to do it shortly... hope it works.

    Thanks for the interest!