Advertisement
Advertisement
| 01.04.2008 at 01:08AM PST, ID: 23058031 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 01.04.2008 at 01:15AM PST, ID: 20580734 |
| 01.04.2008 at 01:38AM PST, ID: 20580776 |
| 01.04.2008 at 03:08AM PST, ID: 20581061 |
| 01.04.2008 at 08:32AM PST, ID: 20583647 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: |
my %data;
while(<DATA>) {
if(/^\[(\d+)\.(\d+)\.(\d+)\-([\d:]+)/) {
PrintData();
$data{year} = $1;
$data{month} = $2;
$data{day} = $3;
$data{time} = $4;
}
elsif(/header\.function=\[(\d+)\]/) {
$data{function} = $1;
}
elsif(/header\.completion=\[(\d+)\]/) {
$data{completion} = $1;
}
elsif(/header\.error=\[(\d+)\]/) {
$data{error} = $1;
}
elsif(/data\.email=\[(.+)\]/) {
$data{email} = $1;
}
}
PrintData();
sub PrintData {
no warnings;
print "$data{month}-$data{day}-$data{year} $data{time} $data{function} $data{completion} $data{error} $data{email}\n"
if (exists($data{function}) and exists($data{completion}) and exists($data{error}));
%data=();
}
|
| 01.04.2008 at 10:36AM PST, ID: 20584880 |
| 01.06.2008 at 11:37PM PST, ID: 20597513 |
| 01.06.2008 at 11:43PM PST, ID: 20597533 |
| 01.07.2008 at 12:20AM PST, ID: 20597635 |
| 01.07.2008 at 02:45AM PST, ID: 20598126 |
| 01.07.2008 at 03:12AM PST, ID: 20598203 |
| 01.07.2008 at 03:25AM PST, ID: 20598249 |
| 01.07.2008 at 03:46AM PST, ID: 20598319 |
1: 2: 3: 4: 5: 6: 7: |
#!/usr/bin/perl
$/="";
my @k=qw(function completion error);
while( <> ){
my %h=/^header\.(\w+)=\[(.*?)]/mg;
print "$3-$2-$1 $4 @h{@k} ",/^data\.email=\[(.+)]/m,"\n" if exists$h{function} && exists$h{completion} && exists$h{error} && /^\[(\d+)\.(\d+)\.(\d+)\-([\d:]+)/m;
}
|
| 01.07.2008 at 03:56AM PST, ID: 20598360 |
| 01.07.2008 at 06:32AM PST, ID: 20599638 |
| 01.07.2008 at 07:28AM PST, ID: 20600115 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: |
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
my %data;
while(<>) {
if(/^\[(\d+)\.(\d+)\.(\d+)\-([\d:]+)/) {
PrintData();
$data{year} = $1;
$data{month} = $2;
$data{day} = $3;
$data{time} = $4;
}
elsif(/header\.function=\[(\d+)\]/) {
$data{function} = $1;
}
elsif(/header\.completion=\[(\d+)\]/) {
$data{completion} = $1;
}
elsif(/header\.error=\[(\d+)\]/) {
$data{error} = $1;
}
elsif(/data\.email=\[(.+)\]/) {
$data{email} = $1;
}
}
PrintData();
sub PrintData {
no warnings;
print "$data{month}-$data{day}-$data{year} $data{time} $data{function} $data{completion} $data{error} $data{email}\n"
if (exists($data{function}) and exists($data{completion}) and exists($data{error}));
%data=();
}
|
| 01.07.2008 at 09:57AM PST, ID: 20601373 |
| 01.07.2008 at 10:08AM PST, ID: 20601468 |
| 01.07.2008 at 11:05AM PST, ID: 20602056 |
| 01.07.2008 at 12:37PM PST, ID: 20602974 |