|
First
|
Prev |
Next
|
Last
Pages: 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
Timer/Stopwatch How would I even begin to make a stopwatch with perl, cgi, and js? ... 31 Mar 2008 20:01
How to find this pattern by regular expression? Hi, I want to find the pattern: PATTERN that can contain lower case or upper case characters, digits, and special characters like : _ ; ( ) & . A sample context is: -- Start here (this line is not in context) PATTERN { @ a line containing anything(comment line) @ multiple comment lines can exist // ... 31 Mar 2008 19:20
ssh ssh On 2008-03-27 18:47, jammer <jameslockie(a)mail.com> wrote: Here is my next attempt: #!/bin/perl use strict; my $inputFile = 'hostlist3.txt'; open my $HOSTLIST, '<', $inputFile or die "can't open hostlist: $!"; $/ = ''; # this will read a paragraph at a time $\ = "\n"; # avoid... 31 Mar 2008 19:20
FAQ 7.29 How can I use a variable as a variable name? This is an excerpt from the latest version perlfaq7.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 http://faq.perl.org . --------... 31 Mar 2008 19:20
Sharing a DBI::Mysql database connection with your children Andrew DeFaria <Andrew(a)DeFaria.com> wrote: I have a process I was thinking of making into a multithreaded daemon that deals with a MySQL database. The thought is that the daemon would open the database once, then listen for clients. As clients connected the daemon would fork off a copy of itself and hand... 31 Mar 2008 19:20
FAQ 8.7 How do I clear the screen? This is an excerpt from the latest version perlfaq8.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 http://faq.perl.org . --------... 31 Mar 2008 20:00
Parse x.500 DN and change order displayed On Mar 31, 8:26 am, Hallvard B Furuseth <h.b.furus...(a)usit.uio.no> wrote: SecureIT writes: I am trying to change this "cn=Bob Smith+serialNumber=CR013120080827,o=ICM,c=US" to this: "serialNumber=CR013120080827+cn=Bob Smith,o=ICM,c=US" Without escape sequences like "\," and "\+" in the DNs ... 31 Mar 2008 18:39
NIC Configurations From a Windows box, I need to remotely look at the NICs of about 60 Windows servers I have administrative accounts on. I was going to try and use IO::Interface, but I cannot get the module installed. I cannot find the PPD for IO-Interface-1.04 so I can use ppm. Does anybody have a Perl solution for getting ... 1 Apr 2008 22:19
FAQ 7.26 How can I find out my current package? This is an excerpt from the latest version perlfaq7.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 http://faq.perl.org . --------... 31 Mar 2008 18:39
glade whit multiple windows hi, I'm making a glade-based tool: there is a window "father" that have to open more child windows, here my code: sub btnNewMessage_onclick { my $newWin = Gtk2::GladeXML->new('gui/wSMS.glade'); my $newForm = $newWin->get_widget('wSMS'); $newWin->signal_autoconnect_from_package('callbackSMS'); $newForm->sh... 31 Mar 2008 18:39 |