capturing streaming market data088 (6/25/2003 3:49:11 AM) There is a module Finance::Streamer that captures realtime stock market data from Datek (now Ameritrade). Does anyone know of similar code that will work with Yahoo's MarketTracker and/or E*Trade's MarketCaster... Mark
comparing rows in a multidimensional array5176 (6/24/2003 8:13:58 PM) how can i compare rows (3 or more rows) in a multidiemensional array? they all contain numeric values, i need to find its similar values and unique values. ... r230sl55
Win32::OLE, Excel, and coloring1253 (6/24/2003 7:37:17 PM) Hello, I've been using ActiveState's ActivePerl to generate Excel spreadsheets using the Win32::OLE module. The rudimentary examples that are out there on the web show the way to set up specific ranges and en... mda
LWP Extra Header Lines1119 (6/24/2003 4:10:26 PM) Hi, Does anyone know how to add extra request header lines with LWP? I've seen this way but thought I'd see if there's a 'better' way: my @headers = ( 'User-Agent' => 'Mozilla/4.76 [en] (Win98)', 'Ac... robert22(3)
Help needed with Net::Telnet3103 (6/24/2003 2:22:11 PM) Hi I would like to run commands remotely using net::telnet from CPAN. I am trying to run the following: #!/usr/bin/perl -w use strict; use Net::Telnet; my $host= "Andromeda"; my $username = "Andro"; my $pas... Shotoku
Can't locate @INC & not finding files in local directory166 (6/24/2003 2:39:29 PM) Hello - I've got several Perl scripts that use custom perl modules which are called from routines that are in the same directory as the scripts. For example dir.pl in folder dir references dir_utilities.pl. ... jennlee.2(2)
V Newbie: Installing Perl modules298 (6/24/2003 8:38:58 AM) I'm a v newbie who is trying to run the checklink thingy (http://validator.w3.org/checklink) I've installed ActivePerl and example.pl ran ok. I'm trying to install the Perl modules needed by checklink. PPM s... desfisher(1)
Problem with "system" call - multiple invocations (Newbie)3108 (6/24/2003 1:20:28 AM) Newbie question, Hi guys, I need to invoke a perl script from another perlscript with different parms passed to the second perl script. Code snippet ============== my ($no1,$no2) = (0,1) my $num = "single d... Tony
Unicode problems, Microsoft utf16le files1114 (6/24/2003 5:03:27 AM) I am using the following to read the file:- The file decodes ok. local $/; $data = ; # get the whole file $datad = decode("UTF16", $data); # convert from utf16le to display :... derek
Crypt::RC4 & cookies0108 (6/24/2003 4:10:33 AM) I am currently working on a program that encrypts login information into cookies using the RC4 module. However I run into a problem during the decryption process. For example, I made up a temporary password... David