|
More site info...
|
|
Forum profile page for perl on http://bytes.com.
This report page is the aggregated overview from a single forum: perl, located on the Message Board at http://bytes.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "perl" on the Message Board at http://bytes.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on perl:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
12
|
58
|
140
|
|
Post:
|
55
|
148
|
350
|
|
|
perl Posting activity graph:
|
Top authors during last week:
user's latest post:
traverse directory and count the...
Published (2009-12-12 15:45:00)
Start by adding this near the top of the script. Expand | Select | Wrap | Line Numbers use strict; use warnings; Those pragmas will point out lots of problems. To begin with, you'll need to declare each of your vars with the my keyword. It would be better to use the File::Find or File::Find::Rule module. http://search.cpan.org/~dapm/perl-5....b/File/Find.pm http://search.cpan.org/~rclamp/File-...e/Find/Rule.pm...
user's latest post:
CGI to MYSQL on IIS6 not working
Published (2009-12-11 10:58:00)
Ok, that makes sense...I'll refine the script. What I got back from the input was this: Expand | Select | Wrap | Line Numbers 'value' param = '7182700877844202000010316531557.53763.2750' What I expected to see was XML formatted data like what is going into it. Like this: Expand | Select | Wrap | Line Numbers...
user's latest post:
High Low Game (PERL Coding)
Published (2009-12-04 23:39:00)
no idea of course the two random pictures are coming up on the first screen but its just when i hit the submit is when two different pictures come up
user's latest post:
Check outlook email and a little...
Published (2009-12-09 15:03:00)
Burtleed, You have asked the same question in the Coldfusion forum, the C/C++ forum, and Java forum. This gives me the impression that you are looking for someone else to create this solution for you. It seems to me that you haven't even thought about the problem or attempted at a solution. Bytes is a development network that is here to help programmers who run into difficulty with their projects. The volunteers are not going to just hand...
user's latest post:
trying to connect to DB
Published (2009-12-07 14:10:00)
i have never installed this mini perl version that's included with xampp , it is install ed by default and it just consist of a bin directory with inside a perl.exe file so i dont see how this could be affecting anything, btw if i uninstall xampp i would need to install php, apache, mysql, perl, phpmydamin etc .. separately but i 've never done this and looks like overkill right now , any tutorials on this ? thanks
user's latest post:
Check outlook email and a little...
Published (2009-12-09 12:03:00)
Well, first thing I would do is go to CPAN and search for a module that interfaces with Outlook. I would also incorporate the WWW::Mechanize module for going and downloading the zip file that you are after. Try and do this yourself and post your code here if you need help (enclosed in code tags). Regards, Jeff
user's latest post:
perl search algorithm
Published (2009-12-08 21:29:00)
Hi Jeff, my sample test2.txt contains the following in the 13th and 35th column. Expand | Select | Wrap | Line Numbers 57583225 57580491 57583262 57580492 58049166 58012648...
user's latest post:
Config file?
Published (2009-12-04 20:39:00)
I need do a config file that sends parameters to a script. That config file is txt? Or it needs to be in perl? And then how can I read the conf file in the script? Tanks Chocolataria
user's latest post:
Regex, HTML string modification
Published (2009-12-08 16:29:00)
I have a regex that is designed to help improve readability for a html document. Expand | Select | Wrap | Line Numbers "(?=((?!<\/?em).)*<\/em>) The purpose of this regex is to escape " marks from within <EM> affected sentences. Example: Before: <P>This "is" <EM>a...
user's latest post:
Regex, HTML string modification
Published (2009-12-09 12:03:00)
The regular expression you gave checks if there is an "<em" or "</em" between the double-quotation mark and the "</em>". (negative lookahead). if yes, it won't match, else it matches. This algorithm has many errors: - it doesn't account for "em"-tags inside other "em"-tags, for example '<em>...
|
|
|
|
Latest active threads on perl::
Started 2 days, 22 hours ago (2009-12-12 15:45:00)
by RonB
Start by adding this near the top of the script. Expand | Select | Wrap | Line Numbers use strict;
use warnings;
Those pragmas will point out lots of problems. To begin with, you'll need to declare each of your vars with the my keyword.
It would be better to use the File::Find or File::Find::Rule module. http://search.cpan.org/~dapm/perl-5....b/File/...
Started 3 weeks ago (2009-11-24 08:39:00)
by Rhodge09
no one can help me with what im looking for? i want kind of like a form so when i click something 2 numbers come up and according to the rules if i get a certain number i win and if i dont i lose. Also something that will keep track of how much i win and if i get to $1000 game over and if i get to $5 dollars the game is over.
Started 3 days, 23 hours ago (2009-12-11 14:58:00)
by mohanprasadgutta
Hi,
are you trying achieve below regex? Expand | Select | Wrap | Line Numbers /^[0-2][0-3]:[0-5][0-9]:[0-5][0-9]$/
Best Regards,
Mohan
Started 5 days, 5 hours ago (2009-12-10 08:53:00)
by RonB
Add this line just above the use DBI statement. Expand | Select | Wrap | Line Numbers use CGI:: Carp qw(fatalsToBrowser);
Then test the script and post back with the exact error message.
Started 6 days, 2 hours ago (2009-12-09 12:03:00)
by numberwhun
Well, first thing I would do is go to CPAN and search for a module that interfaces with Outlook. I would also incorporate the WWW::Mechanize module for going and downloading the zip file that you are after.
Try and do this yourself and post your code here if you need help (enclosed in code tags).
Regards,
Jeff
Started 6 days, 2 hours ago (2009-12-09 12:03:00)
by chaarmann
The regular expression you gave checks if there is an "<em" or "</em" between the double-quotation mark and the "</em>". (negative lookahead). if yes, it won't match, else it matches. This algorithm has many errors:
- it doesn't account for "em"-tags inside other "em"-tags, for example '<em> "hello" <em> you </em> </em>' would not be matched.
- it doesn't account for "<em" which are not a tag...
Started 6 days, 21 hours ago (2009-12-08 16:29:00)
by numberwhun
Can you please provide a sample of the second text file? Without it we would be guessing that the solution works.
Regards,
Jeff
Started 1 week, 1 day ago (2009-12-07 04:10:00)
by RonB
Did you check the apache error log?
It's probably due to your shebang line. Try changing it to this: Expand | Select | Wrap | Line Numbers #!C:/xampp/perl/strawberry/perl/bin/perl.exe
Started 1 week, 4 days ago (2009-12-04 13:39:00)
by Frinavale
Have you considered printing all of the values for each turn to see what each card is for each hand to try and determine where you're going wrong?
For example print: Expand | Select | Wrap | Line Numbers
else{$results='You Lose! You picked:".$pick." card1 was: ".$card1.", card2 was: ".$card2.", card3 was: ".$card3;}
Started 1 week, 3 days ago (2009-12-04 22:39:00)
by RonB
There are a number of config modules on cpan, here are 2 of them:
Config::IniFiles
Config::General
For anyone else reading this thread, this Q is cross posted at http://forums.devshed.com/perl-progr...ml#post2375 912
|
|
Hot threads for last week on perl::
Started 5 days, 5 hours ago (2009-12-10 08:53:00)
by RonB
Add this line just above the use DBI statement. Expand | Select | Wrap | Line Numbers use CGI:: Carp qw(fatalsToBrowser);
Then test the script and post back with the exact error message.
Started 1 week, 1 day ago (2009-12-07 04:10:00)
by RonB
Did you check the apache error log?
It's probably due to your shebang line. Try changing it to this: Expand | Select | Wrap | Line Numbers #!C:/xampp/perl/strawberry/perl/bin/perl.exe
Started 6 days, 21 hours ago (2009-12-08 16:29:00)
by numberwhun
Can you please provide a sample of the second text file? Without it we would be guessing that the solution works.
Regards,
Jeff
Started 6 days, 2 hours ago (2009-12-09 12:03:00)
by numberwhun
Well, first thing I would do is go to CPAN and search for a module that interfaces with Outlook. I would also incorporate the WWW::Mechanize module for going and downloading the zip file that you are after.
Try and do this yourself and post your code here if you need help (enclosed in code tags).
Regards,
Jeff
Started 6 days, 2 hours ago (2009-12-09 12:03:00)
by chaarmann
The regular expression you gave checks if there is an "<em" or "</em" between the double-quotation mark and the "</em>". (negative lookahead). if yes, it won't match, else it matches. This algorithm has many errors:
- it doesn't account for "em"-tags inside other "em"-tags, for example '<em> "hello" <em> you </em> </em>' would not be matched.
- it doesn't account for "<em" which are not a tag...
Started 3 days, 23 hours ago (2009-12-11 14:58:00)
by mohanprasadgutta
Hi,
are you trying achieve below regex? Expand | Select | Wrap | Line Numbers /^[0-2][0-3]:[0-5][0-9]:[0-5][0-9]$/
Best Regards,
Mohan
Started 2 days, 22 hours ago (2009-12-12 15:45:00)
by RonB
Start by adding this near the top of the script. Expand | Select | Wrap | Line Numbers use strict;
use warnings;
Those pragmas will point out lots of problems. To begin with, you'll need to declare each of your vars with the my keyword.
It would be better to use the File::Find or File::Find::Rule module. http://search.cpan.org/~dapm/perl-5....b/File/...
Started 3 weeks ago (2009-11-24 08:39:00)
by Rhodge09
no one can help me with what im looking for? i want kind of like a form so when i click something 2 numbers come up and according to the rules if i get a certain number i win and if i dont i lose. Also something that will keep track of how much i win and if i get to $1000 game over and if i get to $5 dollars the game is over.
|
|