archives

Gadget clinic - Guardian

Gadget clinic Guardian, UK - 13 hours ago Then use a program such as the free Any Video Converter to turn it from a phone-friendly file into something that's compatible with DVDs.

FAQ 5.1 How do I flush/unbuffer an output filehandle? Why must I do this?

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] .

sort

hello. i have code (below) that sorts the contents of a directory. it works fine, but i need to show only files that start with an 'R'. thanks in advance for your help. opendir(STOCKBACKGROUND, ".") &error("STOCKBACKGROUND"); @stockbackgrounds = readdir(STOCKBACKGROUND); @stockbackgrounds = sort {lc($a) cmp lc($b)} @stockbackgrounds;

CC&B online documentation.

Hi everybody! Where can I found online documentation for CC&B products and its components (MWM, BI, etc.). Thanks in

Help:"backup database plus archivelog not backed up;" no good?

Dear group: I have a 4 nodes RAC on redhat linux(10.2.0.3) the relevant configuration is like this: RMAN>CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 2; RMAN>CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '+TST', '/backup/bk_ %d_%T_%U_%p' MAXPIECESIZE 2 G; I use the command backup database plus archivelog not backed up;

Checking value set via "set transaction" or "alter session"

This seemed like it would be a simple question to answer, but I can't find anything on either. Can anyone shed some light on how to determine the value I have used for "set transaction" (say to "read only") and for "alter session" (say to change the NLS_DATE_FORMAT)? Lots of info on setting, haven't been able to find anything about

Net::SMTP - "Bad File Number" error ?

I'm using Net::SMTP to send mail from a perl program running on a web server. Code is as follows: my $relay="smtp.example.com"; my $smtp = Net::SMTP->new($relay); die "Could not open connection: $!" if (! defined $smtp); I'm familiar with the error you get when the SMTP server won't let you

FAQ 5.2 How do I change, delete, or insert a line in a file, or append to the beginning of a file?

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 read user's IP adress with Perl?

how to read user's IP adress with Perl? Marhan

Convert CDs to MP3s to WAV files - Orlando Sentinel

Convert CDs to MP3s to WAV files Orlando Sentinel, FL - Mar 8, 2008 The resulting WAV files are compatible with CD players, but the song title information will be lost in the conversion .

Perl pattern extraction

Hi, my $url = "/pages-cell.net/deepan/sony/" ; if($url =~ m/\/(.*)\//g) { my @result = $1; return @result; } What i need is that i should be able to get anything that is between / and /. Here i should be able to get pages-cell.net,deepan,sony into @result but something is wrong somewhere. Please help me to solve

Perl pattern matching and extraction

Hi, I would like to thank everyone for their help to my previous post. Actually i didn't explained my need completely. Here's it my $url = "/pages-cell.net/deepan/sony/" ; if($url =~ m/\/(.*)\//g) { my @result = $1; return @result; } What i need is that i should be able to extract "sony" from it. In the

FAQ 5.10 How can I set up a footer format to be used with write()?

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] .

TieRegistry Overlapped Error

I'm trying to read the reg values on a remote server using Win32::TieRegistry. I can remotely connect from my computer using regedit. When I run the following, I get an error. use diagnostics; use Win32::TieRegistry(Delimiter=> "/"); use strict; my ($reg_test, $reg_val); my $server = 'some_server_name';

try to use "locale" with german and coepage 437 (dos)

Hi, i look for informations about the use of the perl pragma "locale". the reason why: i have old input data coded with codepage 437. and i want to use the normal matchingcharacter \b (non alphabetic char) and \w (alphabetic char). i found a lot of site about posix under linux but i work under windows

Virtualization, Green IT and Application Management

Besides sessions run by Gartner analysts, there were also many vendor presentations at the conference. The hot topics at the conference seemed to be virtualization and green IT. In polls conducted at the conference, the majority of the participants indicated that they were already using virtualization technologies at their organizations. So in a way, virtualization was not a brand new topic.

Top companies recruiting this weekend - Apply with updated resume

Dear Freshers, Welcome to [link] The ultimate walk in jobs portal. This week is full of Fresher walk in drives from leading companies, have a look at the following walk in jobs and it may be a turning point at your career. Visit regularly and register your mail id for any future walk in jobs

FAQ 5.8 How can I make a filehandle local to a subroutine? How do I pass filehandles between subroutines? How do I make an array

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] .