archives

Trying to use my own module directory, but Perl doesn't see @EXPORT

Greetings. I want to have my own module directory that is visible to all my Perl programs without futzing with "use libs" and such in each program (and I don't want to recompile Perl either). So I decided to put my module in some version-independent directory in @INC. So I do perl -le 'print join "\n", @INC'

FAQ 4.67 How can I make my hash remember the order I put elements into it?

This is an excerpt from the latest version perlfaq4.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

FAQ 4.69 How can I make the Perl equivalent of a C structure/C++ class/hash or array of hashes or arrays?

This is an excerpt from the latest version perlfaq4.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

see java interviews

OOPS and CORE JAVA [link] Short Core Java Interview Questions ? [link] java-questions-answers [link]

FAQ 5.26 How do I set a file's timestamp in perl?

This is an excerpt from the latest version perlfaq5.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

How to cut down on the amount of memory 11g uses.

Hi folks! Just install 11g and created a standard database and I was shocked with the amount of memory it uses and the number of processes it runs. Any pointers on how to reduce the foot print. State of play after a default install: 40 Processes with a total of 62GB of virtual memory oracle 1.7GB oracleteach

Oracle Enterprise Linux 5 licensing

Are there any licensing fees associated with downloading and using Oracle Enterprise Linux 5?

highly restrictive sub-classing

I have a lot of scripts that use a memory-hungry module, but most of them use only a small subset of that module's features, and it should be possible to implement that subset in a more memory efficient way. I want to "subclass" the memory hungry module. Many of the methods, ones which are rarely used and can't be made memory efficient, will not be

An Anthropological Introduction to YouTube by Michael Wesch

Continuing further with the frenzy of shorter blog posts as well as injecting some rich media into this blog, I thought I would go ahead today and share one of the most impressive and inspirational videos I have bumped into for a long while! And I mean, in a long while! It is coming from a wonderful presentation that Michael Wesch

Re: Parameter Order

<artme...@yahoo.com> schreef in bericht Call the procedure like this A (p1=> yourvalueforp1, p2 => yourvalueforp2, p4 => yourvalueforp4); In 11g I think it is even allowed to mix it like A (yourvalueforp1, yourvalueforp2, p4 => yourvalueforp4); Shakespeare

having some trouble with character substitution/regX

I have a file that includes some directory paths and I want to use PERL to change the file paths I want to substitute this line of text: .include '/doob/fred/bicmos/rev8/models /2010.11.07/hop/' with this line of text: .include 'D:/spi_models/TI/Hspice/' and thought I would use the following code to do the job:

bidding advice for a contract

I have been solicited to make a bid for a database project. The company is small but has been around for 20 years or so, and the owner has made a name in EE. The people (potential clients) are not idiots, and the company is a highly regarded company with a long history that manufactures electronic components for aircraft, missles, etc., and

FAQ 4.74 How do I print out or copy a recursive data structure?

This is an excerpt from the latest version perlfaq4.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

Why I Would Call It Quits Too

Was this contact center agent empowered? No. Putting a script into an agent's hand to deal with specific scenarios does not empower anyone to do good customer service.

Measure Perfomance of a Declared Cursor

<10gR2> Given a package containing code like: <code> FOR i IN some_declared_cursor ( 'foo') LOOP ..... whole bunch of processing </code> I need to measure the performance of JUST the cursor "some_declared_cursor" How to time it ? And what would be the best method ? thanks