archives

FAQ 3.10 Is there an IDE or Windows Perl Editor?

This is an excerpt from the latest version perlfaq3.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] .

Frequency in large datasets

I've been able to reduce my dataset by 75%, but it still leaves me with a file of 47 gigs. I'm trying to find the frequency of each line using: open(TEMP, "< $tempfile") die "cannot open file $tempfile: $!"; foreach (<TEMP>) { $seen{$_}++; } close(TEMP) die "cannot close file

Will Perl 6 be usable as a procedure language?

Will perl 6 be usable as a procedure language?

FAQ 3.8 Is there a pretty-printer (formatter) for Perl?

This is an excerpt from the latest version perlfaq3.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] .

10 Ways to Make DataStage Run Slower

Everyone wants to tell you how to make your ETL jobs run faster, well here is how to make them slower!

Multi-Stage Database Inserts, Etc - Part 1

Loading, auditing and recovering from multi-stage database inserts

Multi-Stage Database Inserts, Etc - Part 2

Setting up audited extracts, monitoring our flows

Help: Replace Help

Hello, I'm going to process some RNA sequences files. And I make a small script to reverse these sequences. However, I face a problem while it's running because of order problem. This is my file contents. ACGU GUACCGU And I wanna replace A to C, C to A, G to U, U to G. So from my point the reversed file should be viewed like this.

Software converts flash files to other video formats. - ThomasNet Industrial News Room

Software converts flash files to other video formats. ThomasNet Industrial News Room, NY - 3 hours ago The converting process is allowing human interaction on Flash content during conversion .

FAQ 3.16 How can I make my Perl program take less memory?

This is an excerpt from the latest version perlfaq3.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] .

Stuffing @users into $self->{'users'}

Hi everyone. I'm writing a SOAP Server in perl and I need/want to use objects. I have an array called @users which is populated in sub new. I want to store this array in my $self variable which is passed to all functions and then pull it out later. Can somebody help me? sub new { my ($class_name) = @_;