f

2002-12-03 Thread Daniel Falkenberg

trying to match variable names

2003-03-06 Thread Daniel Mueller
hi group! i'm currently trying to match all variables in a file, the regex i use looks like this : m/([\$|\@|\%]\w+)/g it matches as far as i can see what i want but it also matches stuff like this : |SOMETEXT why is this? what am i doing wrong? thanks in advance daniel. -

Re[2]: Controlling Novell products with Perl

2002-06-14 Thread Daniel Gardner
This sounds fairly interesting... http://developer.novell.com/ndk/perl5.htm There's some docs at the bottom of that page about doing stuff with Novell things using perl. Can't say I've ever used it myself, and haven't touched a netware box for years, but it looks like good

Re: file tokenizers

2002-06-15 Thread Daniel Gardner
Friday, June 14, 2002, 8:36:01 PM, Torres, Jose wrote: > I have a script that opens a file and needs to grab certain values from it. > Can anyone recommend a good file tokenizing module? Thanks. Is Parse::RecDescent what you want? or Parse::Lex perhaps... -- Best Regards,

Re[2]: "lazy" variable declaration

2002-06-15 Thread Daniel Gardner
gt; $var2 = $var2 || "test\n\n"; > print $var2; > print "Longest way\n"; > my $var3; > print $var3; > if ($var3) { > $var3 = $var3; > } else { > $var3 = "test\n\n"; > } > print $var3; > print "Testing for overwrite of 0\n\n"; > print "shortest way\n"; > my $var4 = 0; > $var4 ||= "test\n\n"; > print $var4; > print "short way\n"; > my $var5 = 0; > $var5 = $var5 || "test\n\n"; > print $var5; > print "Longest way\n"; > my $var6 = 0; > if ($var6) { > $var6 = $var6; > } else { > $var6 = "test\n\n"; > } > print $var6; > > -- > Today is Setting Orange the 19th day of Confusion in the YOLD 3168 > Frink! > Missile Address: 33:48:3.521N 84:23:34.786W -- Best Regards, Daniel [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cutting of last char of a variable

2002-06-16 Thread Daniel Gardner
Check perldoc -f chop http://www.perldoc.com/perl5.6.1/pod/func/chop.html Sunday, June 16, 2002, 9:29:00 AM, Chris Knipe wrote: > Hi, > How can I cut off the last char. of a string? > $string = "160700Z"; > I want to remove the Z ? > This is to import METAR weather data if anyone's interes

Re[2]: Function for converting a specific date to number of seconds since 01/01/1970?

2002-06-18 Thread Daniel Gardner
year - 678972 - 40587 + int(275 * $mon / 9) + $day > - int((int(int($year + ($mon < 9 ? -1 : 1) * int(abs($mon - 9) / 7)) / 100) > + 1) * 3 / 4) - int(7 * (int(($mon + 9) / 12) + $year) / 4)) + 60 * 60 * > $hour + 60 * $min + $sec > } > Todd W -- Best Regards, Daniel [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: getting the fields pulled from a database

2002-06-18 Thread Daniel Gardner
help. A more Perlish way to do it would be to use DBI, which provides an abstraction layer for database access. That and DBD::ADO or similar would probably be easier to work with. -- Best Regards, Daniel [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: About Perl OO Orthodoxy

2002-06-30 Thread Daniel Gardner
me->CloseOut() if defined($me->{private_fd}); > $v = undef unless ( ref($v) eq "PRIVATE::TYPE"); > } And what's a PRIVATE::TYPE? Perhaps some more explanation about what you're trying to do here would be useful.

Re[2]: How to use one sub in a perl package?

2002-07-14 Thread Daniel Gardner
leading to compile errors. Am I > reading this correctly? Does doing a require work, so that the import isn't called? If it's just the import that causes the failure you should be able to require and then use whatever subroutines are in there by fully qualifying the package name. HTH,

Re: How to use one sub in a perl package?

2002-07-14 Thread Daniel Gardner
ant was that the module has an import() subroutine which perhaps messes about with namespaces and fails if it's dependencies are not met. I may be wrong, but you might be interested to read up on the differences between "require" and "use" - what use actually does and when

Re: Serial Comms with Perl

2002-07-15 Thread Daniel Gardner
rt settings and then open the port for > input so that I can read from it. Does Device::SerialPort help? http://search.cpan.org/search?dist=Device-SerialPort -- Best Regards, Daniel -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: capture out put from piped process

2002-07-15 Thread Daniel Gardner
:Run on cpan can do some clever stuff too -- Best Regards, Daniel -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: System commands..

2002-07-15 Thread Daniel Gardner
ldoc Shell to see what it does. Haven't used it myself, but by the looks of things it does just what you want. -- Best Regards, Daniel -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Trapping "Ctrl C"

2002-07-15 Thread Daniel Gardner
p it (something to think about) Try "perldoc -q trap signals" also, as well as the docs Paul pointed you at. -- Best Regards, Daniel -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Perl constants with modules

2002-07-16 Thread Daniel Gardner
then throw a few constants at the top of the script. If you've got more complicated configuration to do, then check out some of the config modules off cpan - there's loads of them. And don't underestimate the power of using perl data structures for configuration. Data::Dumper and e

Re: word count (limit) in a scalar...

2002-07-16 Thread Daniel Gardner
to use the data for. -- Best Regards, Daniel -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

function for finding the index of an element in an array?

2002-07-25 Thread Daniel David
Hi, I couldn't seem to find a built-in function for finding the index of an element in an array...so I wrote this one: # position_of returns the position of a string in an array of strings, # and -1 if the string is not a mem

Re: possible RFC?

2002-08-15 Thread Daniel Gardner
ss it's to do with it sometimes being hard to tell if a function does exist or not at compile time. Think AUTOLOAD and string eval. Thanks, Daniel -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How fatalsToBrowser works ?

2002-08-16 Thread Daniel Gardner
ToBrowser); | BEGIN { |$CGI::Carp::CUSTOM_MSG = sub { | my $msg = shift; | $msg =~ s/C:\WWWroot\CGI-ALL//; | | print STDOUT $msg; |}; | } ` As I said, untested, and undocumented as far as I can see. So who knows if it'll actually work. Thanks, Daniel --

RE: Possible technical problems w/ e-mail from this group

2002-09-11 Thread Daniel Kelley
A piece of email, even if malformed, should *never* crash an email client. If it does, consider the client to be buggy, and find a better one. When you get right down to it, your problem has nothing to do with this mailing list. Dan > Good points, but why do just *some* of the e-mails cras

Re: random number between x and y

2003-09-20 Thread Daniel Staal
about: $num = int(rand(6)) + 5; or generalized: $num = int(rand(($max - $min) + 1)) + $min; Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are expressly allowed to retransmit, quote, or otherwise u

Problem with input record separator

2003-09-21 Thread Daniel Liston
Here is a tool I use to unfold long lines in LDAP outputs. It also works on mailboxes that have the Received: lines or Content-*: lines folded. #!/usr/bin/perl #syntax: unfold.pl filename > newfilename if ($ARGV[0]) { local $/ = ''; open(FILE, "<$ARGV[0]") or die "can't open $ARGV[0]: $!\

Re: Perl Vs ...

2003-09-21 Thread Daniel Staal
funge, or INTERCAL if you are *really* ambitious.) Or you could go the 'web developer' route and learn things like PHP or ASP, which you could really do in completely in Perl, but occasionally are useful on their own... Ok, I'm rambling at th

Re: perl(this) and perl(the)

2003-09-22 Thread Daniel Staal
5-0) that happens to depend on Perl. (Presumably it is partially written in Perl, maybe using the DBI.) The install is complaining that Perl is not installed. I missed the original question, but I would echo the advice to use your distro's help resources to fix thi

Re: Help needed on Telnet.pm

2003-09-22 Thread Daniel Staal
to the end of the prompt and have STDERR written to STDOUT. Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are expressly allowed to retransmit, quote, or otherwise use the contents for non-commercial pu

Re: Problem with input record separator

2003-09-22 Thread Daniel Liston
Daniel Liston wrote: Here is a tool I use to unfold long lines in LDAP outputs. It also works on mailboxes that have the Received: lines or Content-*: lines folded. There are two things in your code that may cause a problem. #!/usr/bin/perl #syntax: unfold.pl filename > newfilename

Re: OT: RE: ATTACK TO MY SYSTEM

2003-09-23 Thread Daniel Staal
ends who can't run a virus checker, but it is still people who know you.) Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are expressly allowed to retransmit, quote, or otherwise use the contents f

Re-running Perl's configure script.

2003-09-23 Thread Daniel Staal
e problem in such a file there may be others.) In case it matters I'm running Perl 5.8.0 under Mac OS X. (versions: 10.2.6 and 10.2.8. Apple released an update last night.) That is upgraded from the standard Apple install. Daniel T. Staal --

Re: GetOpts: boolean and argument value combos

2003-09-23 Thread Daniel Staal
x27;--nobook' to set 'book' to false or not. "book" by itself does the plain version: false if not present, true if present. "book=!" does false if not present, true if present and not followed by '--nobook'. (If nobook found aft

Re: OT: Can anyone recommend a good list where CSS talk would be acceptable

2003-09-24 Thread Daniel Staal
--On Wednesday, September 24, 2003 20:45 -0400 Dan Anderson <[EMAIL PROTECTED]> wrote: I have some CSS questions. Can anyone recommend a good mailing list? CSS-Discuss, you can subscribe at: http://www.css-discuss.org/mailman/listinfo/css-d Beware. It makes this list look slow. Da

RE: How do I to a stack until a pattern is matched, How do I

2003-09-25 Thread Daniel Staal
do nothing. Am I missing something? Should they do anything? (Besides define @stack, and disabling the warning since you have now defined it explicitly.) All they say is to define @stack in a smaller scope than global. Daniel T. Staal --

Re: Is -w deprecated?

2003-09-26 Thread Daniel Staal
because it gives finer grained control. Neither, as far as I can tell, says that '-w' is actually deprecated. Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are expressly allowed to retrans

Re: building module/package

2003-09-29 Thread Daniel Staal
e warnings' and 'use strict' would be good in both... As for where you put it: wherever you want. Just make sure that it gets included in the @INC path. The easiest is in the same folder as test.pl (assuming you always run test.pl from there

Re: building module/package

2003-09-30 Thread Daniel Staal
module. To simplify: put 'use lib "/path/to/module";' before 'use module;' in your main program and it should work. ;-) Any help would be great. By the way, I just getting started with perl. -rkl Hey, I haven't even completed my first perl program yet. It

Re: vaiables global and local

2003-09-30 Thread Daniel Staal
quot;xyz". Varibles vary in perl. Don't expect them not to. (You can create a constant at compile time, but that is not a variable.) Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are exp

Re: using 3 arrays

2003-10-02 Thread Daniel Staal
l code, right?) $i is the index of our current place in all the arrays, and will cycle from 0 to the length of @1 minus 1. You didn't need all the .'s and "'s, so I left them out. ;-) Daniel T. Staal --- This email

Re: How do I RegExp Match a ? without using \X{3F}?

2003-10-02 Thread Daniel Staal
--On Thursday, October 2, 2003 17:54 -0400 Dan Anderson <[EMAIL PROTECTED]> wrote: Is there a way to match a question mark using a regular expression without looking for a \X{3F} ? Just escape it: \? Daniel T. Staal --- This

if (-d .....

2003-10-08 Thread Daniel Stellwagen
Hi EVERYBODY, i saw this "-d" switch in an "if" statement. if (-d $file) What does it mean, and are there more this kind of switches and where can I find information about them. Thanks d a n i e l -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

RE: if (-d .....

2003-10-08 Thread Daniel Stellwagen
Thank you Stephan :-) > > This will return 'true' is $file contains the location of a > directory. More information can be found on this in the > 'perlfunc' manpage in the 'Alphabetical Listing of Perl > Functions' section. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command

RE: platform win ME

2001-08-09 Thread Crandell, Daniel (TIFPC)
Kent there will be some key things in your IIS or PWS that you will need to do. Your .pl needs to be associated like this. go to control panel. open administrative tools folder. Open computer management folder. In right window you should see a internet information services icon with a + Open

RE: Over 9000 posts

2001-08-09 Thread Crandell, Daniel (TIFPC)
way to go everyone, keep it up -Original Message- From: Casey West [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 11:15 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Over 9000 posts I am ready to clean out my [EMAIL PROTECTED] inbox because mutt can't handle the messa

RE: Condolences to US readers

2001-09-13 Thread Crandell, Daniel (TIFPC)
This is from an American, we are very thankful that we have friends and allies like you. Especially now! thanks for your well wishes, I think I can speak for all Americans. Thank you! -Original Message- From: Paskal DRAPIER [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 1

New and not sure how to approach this?

2008-04-10 Thread Gladstone Daniel - dglads
for 15 fields. I want to output/convert it pipe delimited ie: field1|field2|field3|field4 etc etc Can someone help get me started in the right direction Thanks Daniel H Gladstone [EMAIL PROTECTED] * The information

New and not sure how to approach this?

2008-04-10 Thread Gladstone Daniel - dglads
for 15 fields. I want to output/convert it pipe delimited ie: field1|field2|field3|field4 etc etc Can someone help get me started in the right direction Thanks Daniel H Gladstone [EMAIL PROTECTED] * The information

please remove email address

2008-09-22 Thread Daniel W. Hurn
Please remove email address [EMAIL PROTECTED] Thank you.

Re: MySQL (was: Dynamic loading of values (Tk::JComboBox))

2004-03-01 Thread Daniel T. Staal
--As of Monday, March 1, 2004 2:23 PM +0200, John is alleged to have said: I want to retrieve the vaules from a table (mysql) Can i do that easily? --As for the rest, it is mine. Sure. Take a look at the DBI moduleset. Daniel T. Staal

Re: print a 3D array

2004-03-01 Thread Daniel T. Staal
here is no such datatype in base Perl I'm not sure...) Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are expressly allowed to retransmit, quote, or otherwise use the contents for non-commercial

Re: print a 3D array

2004-03-01 Thread Daniel T. Staal
--As of Monday, March 1, 2004 6:27 PM +0200, John is alleged to have said: Could you tell me what the above means? --As for the rest, it is mine. Possibly. What's the code that generated that? Daniel T. Staal --- This

Re: Ternary operator question

2004-03-01 Thread Daniel T. Staal
if you don't want to know what the length of the arrays is. ;-) What is 'significant' information is entirely dependent on the question being asked. Shall we let the person who knows what the program is for decide what is important, please?

Re: Installing DBI

2004-03-09 Thread Daniel T. Staal
--As of Tuesday, March 9, 2004 6:05 PM -0500, Adam Jacobson is alleged to have said: I thought about the binary vs. alpha option. Which is correct? --As for the rest, it is mine. Well, since you aren't transferring a plain text file, I would choose the binary option... Daniel T.

RE: Nucleotide Sequencing

2004-03-10 Thread Daniel T. Staal
g/ has some excellent resources for biologists. He's been pointed there before. At this point, this is a troll. Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are expressly allowed to retransmit, q

Re: FW: Installing module.

2004-03-16 Thread Daniel T. Staal
odule can't be found; it will probably have to do with how the module itself failed... Daniel T. Staal --- This email copyright the author. Unless otherwise noted, you are expressly allowed to retransmit, quote, or otherwise use th

Contact Form/Email Capability

2004-10-07 Thread COUNTERMAN, DANIEL (CONTRACTOR)
All, I have a Perl script I am running from an HTML page that will save the output in a file called comments.txt. Is there anyway I can email this file everytime to an email address that I provide. This will be running on a Windows platform. Also, if you have better suggestions for w

math formula substitution and evaluation

2006-07-15 Thread Daniel D Jones
Given something like the following: my @variables = [3, 7, 13, 4, 12]; my @tests = ("2*a+b==c", "c-d+a==e"); I need to be able to evaluate the mathematical truth of the tests, using the values from @variables, where $variable[0] holds the value of the variable 'a', $variables[1] holds the value

Re: math formula substitution and evaluation

2006-07-16 Thread Daniel D Jones
On Saturday 15 July 2006 21:13, Rob Dixon wrote: > Daniel D Jones wrote: > > Given something like the following: > > > > my @variables = [3, 7, 13, 4, 12]; > > You want round brackets here. You've created an array with just one > element, with a reference

Re: math formula substitution and evaluation

2006-07-16 Thread Daniel D Jones
On Sunday 16 July 2006 07:26, Paul Johnson wrote: > On Sun, Jul 16, 2006 at 05:48:10AM -0400, Daniel D Jones wrote: > > It certainly does help. I thought about substitution but couldn't > > come up with a syntax. This seems to be exactly what I was looking > > for, but

Re: math formula substitution and evaluation

2006-07-16 Thread Daniel D Jones
On Sunday 16 July 2006 13:20, Charles K. Clarkson wrote: > Daniel D Jones wrote: > : Ah! Simple change: > >Subroutines should not normally operate on external data. What do you mean by "operate on?" I avoid altering external data, but I don't see the harm in

debugging Perl with the Eclipse IDE

2006-07-29 Thread Daniel D Jones
I'm not sure if this is a Perl problem or an Eclipse problem, but I'm hoping someone here will know the solution. I'm trying to debug Perl under the Eclipse IDE. I recently reconfigured my network, which resulted in changing my local IP from 192.168.1.12 to 192.168.2.12. When I try to run the

Re: Linux

2006-08-08 Thread Daniel D Jones
On Monday 07 August 2006 19:57, Ryan Dillinger wrote: > Hello All, > I just recently loaded linux onto my laptop. I hope this was not a bad > move. But I cannot find the Activstate Perl I downloaded.I am using > openSUSE Linux. You almost certainly have Perl already installed. Open any of the ter

libgdbm

2007-01-28 Thread Daniel D Jones
I'm trying to install Apache2::ServerUtil from CPAN. During make, I get the following complaint: * WARNING * Your Perl is configured to link against libgdbm, but libgdbm.so was not found. You could just symlink it to /usr/lib/libgdbm.so.3.0.0 * WARNIN

Re: libgdbm

2007-01-28 Thread Daniel D Jones
On Sunday 28 January 2007 11:58, Daniel D Jones wrote: > I'm trying to install Apache2::ServerUtil from CPAN. During make, I get > the following complaint: > > * WARNING * > > Your Perl is configured to link against libgdbm, > but libgdbm

Not Sure how to start or what to use

2007-02-28 Thread Gladstone Daniel - dglads
I have a text file that can be anywhere from 40,000 lines to 120,000 Lines, I want it to split the file so that no file is larger then 20,000 lines 1) run a line count 2) split the file into pieces * The information contai

Question regarding file stat setgid determination.

2011-10-29 Thread Daniel Patrick Sullivan
HI, All, I am banging my head against the wall on an issue that I think would be pretty simple; I'm trying to determine whether or not the current running script has the SetGUID file mode set on it and it is proving much more challenging than I had originally anticipated. I am using OSX version 1

A question regarding turning off the ornaments on Term::Readline

2011-10-29 Thread Daniel Patrick Sullivan
Hi, I have (another) question about resetting the ornaments on a Term::Readline instance. I can't seem to get the syntax correct on how to accomplish this. Basically I want to get rid of the underline in the terminal prompt; I am configuring the new terminal like this "my $terminal = Term::ReadL

Question regarding GpgME.pm

2011-11-09 Thread Daniel Patrick Sullivan
Hi, All, Has anybody on this list even successfully implemented Crypt::GpgME to either encrypt or decrypt some data? I am a bit confused as from what I can tell the function list does not have the ability to decrypt... http://search.cpan.org/~flora/Crypt-GpgME-0.09/lib/Crypt/GpgME.pm#edit Thank

Can't take stdout in w98 xcopy

2002-02-13 Thread daniel . sanchez . fabregas
Triyng $x=qx(xcopy a:\\1*.* c:\\tmp); print"\n after \n$x \n before \n"; this is how it looks my dos session C:\WINDOWS\Escritorio>perl -w kk.pl 13feb.zip 1 archivos copiados after before -

Vexing regex question--storing multiple hits for later use

2002-03-06 Thread Daniel J. Tomso
Greetings. I'm matching a pattern against a long string, and I want to examine each occurrence of the match. I know that $& stores the match, but is there a way to store EVERY match in the string, and then look at them? Example: $str = "This is a very long string, isn't it?" If I want to matc

Getting data from an Access 2000 Database

2002-05-15 Thread Daniel J. Rychlik
the Win32::ODBC module. Has anyone every come across this before? Any information at all will be helpful. Sincerely, Daniel J. Rychlik " Money does not make the world go round , Gravity does ."

RE: Getting data from an Access 2000 Database

2002-05-15 Thread Daniel J. Rychlik
Never mind - I found my answer. Sorry for the spam Sincerely, Daniel J. Rychlik " Money does not make the world go round , Gravity does ." -Original Message----- From: Daniel J. Rychlik [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 5:44 PM To: [EMAIL PROTECTE

RE: Getting data from an Access 2000 Database

2002-05-15 Thread Daniel J. Rychlik
Use Getopt::Std; Use Win32::ODBC; - yes Sincerely, Daniel J. Rychlik " Money does not make the world go round , Gravity does ." -Original Message- From: drieux [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 7:35 PM To: Daniel J. Rychlik Cc: [EMAIL PROTECTED] S

SQL Statement error msg. Please advise

2002-05-16 Thread Daniel J. Rychlik
his script? Any information would be helpful Thx daniel (code snippit) use DBI; $dbh = DBI->connect('dbi:ODBC:agent'); my = $txtAgentID='skraal'; $sqlstatement = "SELECT qryScrubInfo.txtCustomer, qryScrubInfo.numTicketNumber, qryScrubInfo.txtAgentID, qryScrub

Passing Data from and Sqlstatement to an email

2002-05-23 Thread Daniel J. Rychlik
asend(" "); $smtp->datasend(" "); $smtp->datasend("$file\n"); $smtp->dataend(); $smtp->quit; } # Get our list of agents and pass them off to send_rpt () process open (LIST, "$agn_lst") or die "Cannot open the file $mailrcv: $!\n"; while( my $current_address = ) { chomp($current_address); send_rpt($current_address); } close (LIST); Sincerely, Daniel J. Rychlik " Money does not make the world go round , Gravity does ."

Requesting some help. Any Ideas about this code and err msg?

2002-05-24 Thread Daniel J. Rychlik
emicolonDelimiter} = False; $Excel-> {TextFileCommaDelimiter} = False; $Excel-> {TextFileSpaceDelimiter} = True; $Excel-> {TextFileColumnDataTypes} = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1,); $Excel-> {Refresh BackgroundQuery} = False; $Excel-> Workbook->

Parsing a file within a jar file

2007-06-27 Thread Daniel W. Hurn
Does anyone have any suggestion on how to examine/parse a file within a jar file? -- Dan

New to Perl

2007-08-10 Thread Gladstone Daniel - dglads
Good Morning all, 1) I am new to Perl 2) Running ActiveState Perl 3) Trying to find/install a module: Spreadsheet::WriteExcel 4) Can anyone provide me instruction on: a) where and how I can get it? b) How to install it on my PC Thanks Daniel H

Perl libs polluting root directory

2008-01-19 Thread Daniel D Jones
I'm running Gentoo, which does not yet have version 5.10 in the tree. I downloaded and installed version 5.10 from source. (I'm not certain that this is the cause of the issue, but it's the only thing I can think of.) Now, Perl/CPAN appears to be putting packages into my root directory: root

Trying to undertsand a Program

2005-10-06 Thread Gladstone Daniel - dglads
Can someone help me understand what this line does? my ($tablename, $filepath, $ifilename, $ojob) = @ARGV; Can someone give me a good place to look verbs up so I can get a Better understanding of this program. I have ordered a book but it will take a week or more Daniel Gladstone ([EMAIL

Need Some Guidance

2005-10-19 Thread Gladstone Daniel - dglads
rd Edition Thanks - Daniel ** The information contained in this communication is confidential, is intended only for the use of the recipient named above, and may be legally privileged. If the reader of this message is not th

RE: Need Some Guidance

2005-10-19 Thread Gladstone Daniel - dglads
I noticed that there is various version of Learning Perl + Perl Cookbook The most version (Version 4) costs the most. Does it matter the version if I want to learn or do I need to get the most recent version? What is the groups thoughts? Daniel Gladstone ([EMAIL PROTECTED

Simplest Way

2006-01-19 Thread Gladstone Daniel - dglads
What would be the simplest way to remove leading and trailing blanks from a user input? Daniel Gladstone ([EMAIL PROTECTED]) *** The information contained in this communication is confidential, is intended only for the use

Need to improve throughput - Any thoughts

2006-02-27 Thread Gladstone Daniel - dglads
I have a text file with around 1 million lines and I need to do a search And replace on over 9000 words. I am currently reading a line and passing A hash table against it and any matches it is replacing the word in the string. It is running real slow. Any thoughts on how to improve it? Daniel

Re: RSS aggregator

2004-02-25 Thread Daniel R. Anderson
Joel wrote: How would I go about writing an RSS aggregator that would output to a text file? Joel Check CPAN. There are RSS modules out there you can use and save yourself some work. -Dan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Digest::MD4

2004-02-29 Thread Daniel T. Staal
From that point on it do the downloading, testing, installing, keeping track of dependencies, and all the rest by itself. You just have to tell it which modules you want. ;-) Daniel T. Staal --- This email copyright the author. Unless othe

RE: Book on Perl!

2002-09-07 Thread Daniel Schwedler Kofoed
Hi, Learning Perl is a good and easy one - here is a link to some of the perl books: http://www.norcom.ru/users/stone/ Cheers, Jakob > -Oprindelig meddelelse- > Fra: Nitin Yogishwar [mailto:[EMAIL PROTECTED]] > Sendt: 7. september 2002 06:55 > Til: [EMAIL PROTECTED] > Emne: Book on Per

RegEx prob.

2002-09-23 Thread Zielinski Daniel (P)
anybody give me a hint? Thanks, Daniel -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Windows Background Process

2001-06-28 Thread murphy, daniel (BMC Eng)
I have this snippet of code that I picked up from "Learning Perl on Win32 Systems" (O'Reilly) that may be helpful. For more info, check the Win32::Process module. As a Perl rookie myself, I really can't explain it - I just know it works. ;-) use Win32::Process; Win32::Process::Create($Process,

RE: platform win ME

2001-08-09 Thread murphy, daniel (BMC Eng)
Better yet, get "Learning Perl on Win32 Systems" (O'Reilly) Dan Murphy [EMAIL PROTECTED] EMC Corp.508-435-1000 x14559 Hopkinton, MA 01748 EMC2 where information lives -Original Message- From: Peter Scott [mail

RE: Off-Topic (200%) - Where are you from?

2001-11-14 Thread murphy, daniel (BMC Eng)
OK, what's one more? Boston, MA, USA That souds pretty boring after hearing from the Netherlands, Austrailia, Romania, etc. ;-) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

NT - piping input to my perl script

2001-11-16 Thread murphy, daniel (BMC Eng)
OK, I've been lurking long enough. Got what I think is a very simple question which may be more of an NT command shell question as it is a Perl question. I have a very simple script (below) which reads data from STDIN and converts the supposed EBCDIC hex data to readable text (yes, I'm a mainfram

RE: NT - piping input to my perl script

2001-11-19 Thread murphy, daniel (BMC Eng)
.508-249-3322 Hopkinton, MA 01748 EMC² where information lives -Original Message- From: Andrea Holstein [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 17, 2001 3:14 PM To: [EMAIL PROTECTED] Subject: Re: NT - piping input to my perl script Daniel Murphy schrieb

SSL decrypt

2009-04-14 Thread Luis Daniel Lucio Quiroz
Hi Camels, I wonder to know if there is a perl module that let me to decrypt ssl traffic (if I have already private key), like ssldump or tshark does. Best regards, LD -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://lea

COMPLEX ARRAY STRUCTURE

2004-08-09 Thread Luis Daniel Lucio Quiroz
Hi, $a = [ 'cn' => ['Barbara Jensen', 'Barbs Jensen'], 'sn' => 'Jensen', 'mail' => '[EMAIL PROTECTED]', 'objectclass' => ['top', 'person', 'organizationalPerson', 'inetOrgPerson' ],

Re: COMPLEX ARRAY STRUCTURE

2004-08-09 Thread Luis Daniel Lucio Quiroz
;person', >'organizationalPerson', > 'inetOrgPerson' ], > }; > > print $a->{objectclass}->[3]."\n"; #inetOrgPerson > print $a->{sn}."\n"; #Jensen > >

Re: COMPLEX ARRAY STRUCTURE

2004-08-09 Thread Luis Daniel Lucio Quiroz
Yes I do, I need array not to be hard-coded El Lun 09 Ago 2004 10:05, Chris Devers escribió: > On Mon, 9 Aug 2004, Luis Daniel Lucio Quiroz wrote: > > And Ramprasad is write, it's a LDAP-Perl scructure. I need to > > construct this structure on fly when executin a script.

Re: COMPLEX ARRAY STRUCTURE

2004-08-09 Thread Luis Daniel Lucio Quiroz
on user commands :-P LD El Lun 09 Ago 2004 10:35, Chris Devers escribió: > On Mon, 9 Aug 2004, Luis Daniel Lucio Quiroz wrote: > > Yes I do, I need array not to be hard-coded > > So don't hard-code it then. > > Just modify the update command the library provides so that

Re: COMPLEX ARRAY STRUCTURE

2004-08-12 Thread Luis Daniel Lucio Quiroz
Thks, Your first solution help me, I do a hash from anonymous array, then I modified and return to a anonymous array and ldapadd works well. thsks. LD El Mar 10 Ago 2004 07:12, Ramprasad A Padmanabhan escribió: > Luis Daniel Lucio Quiroz wrote: > >You are wrong, > > >

LM an NT hashes

2004-09-23 Thread Luis Daniel Lucio Quiroz
I wonder if someone has perl functions to make LM and NT hashes that samba uses. Best regards, LD -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: LM an NT hashes

2004-09-23 Thread Luis Daniel Lucio Quiroz
I has my self, I found Crypt-Smb moduloe por perl, for those that use MDK I buid the SRPM at http://www.linuxchange.com/download/Mandrake%20Official%2010/samba/Perl-Crypt-Smb-0.02-1mdk.src.rpm CU LD Le jeudi 23 Septembre 2004 20:15, Luis Daniel Lucio Quiroz a écrit : > I wonder if some

Mail::Sender on WinNT - can't connect

2002-02-15 Thread murphy, daniel (BMC Eng)
Exchange Server, corporate environment and configuration question. This is a large company and I use an Outlook email client. Looking at the Tools:Services panel of Outlook, I got 'srmontana' as the name of the Exchange server. I have also tried various combinations of these lines:

<    1   2   3   4   5   6   7   >