Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: uida1154
  • Content: Threads
  • Order by date
  1. uida1154

    error "Can't locate XML/Parser.pm in @INC" at new perl version

    Hello all, I had a perl script running on an old perl version, but last weekend the server migrated to solaris 2.8 with perl version v5.8.0 built for sun4-solaris. The script begins as following: #!/usr/bin/perl -w use strict; use FindBin; use lib $FindBin::Bin; use XML::Parser; The error...
  2. uida1154

    perl metrics

    I am looking for some time now for some method to measure perl scripts (and modules) for their quality. Since quality is not simply expressed in a single number you will need a set of metrics like: - cyclomatic complexity - fan in/fan out (number of functions referenced and number of functions...
  3. uida1154

    my first xml parser

    I have just created my first xml parser using perl. It was nice to do and suprisingly easy (using example code afcourse).
  4. uida1154

    What happens with a tie?

    Hello all, I have 2 questions concerning ties. I use Config::Inifiles and tie a hash to an ini-file. Is the hash filled with the data from the file at the tie or at usage of the hash? With discussion with others I get the idea that the data is filled at usage, which leads to my next...
  5. uida1154

    Use of our in package

    Hi dudes, I am using an our in a package but somehow something is wrong if I use the package. I receive the following message: Bareword "our" not allowed while "strict subs" in use at Trace.pm line 32. Global symbol "$max_trace_level" requires explicit package name at Trace.pm line 32. Note...
  6. uida1154

    warnings

    Within the thread "need -> HELP" I saw something I have not seen before: #!/usr/bin/perl -w use strict; use warnings; My question is: What is the added value to the use warnings here since the -w option already delivers warnings? I am interested in it since I try to get my code...

Part and Inventory Search

Back
Top