| Randal | I did a magazine article on that once |
| Flawless | Please note I'm not unwilling to learn .. ;) |
| Randal | I recognize that. I just wish you were smarter already. :) |
| Flawless | haha ;) Well, I could teach you a thing or two in other languages, I'm sure :P |
| Randal | Maybe. :) I've been around this is my 30th year of professional programming |
| f00li5h | Flawless: turns out Randal knows a bit of perl though |
| Flawless | btw, what does SpamAssassin do? f00li5h: I have no doubt about that |
| f00li5h | Flawless: filters email for spam |
| Flawless | f00li5h: hey, good one.. ;) |
| f00li5h | i replace experience with parrot like regurgitation of facts, it seems to be working |
| Ani-_ | wozzeck: What will cause you trouble: adding entries to the hash while looping over it and not fully looping over the hash. |
| jshriver | aye I'm reading the directory using readdir and putting the filename in $filename within a while loop |
| wozzeck | oh, thanks, but i was just using it to view the contents easily |
| Ani-_ | wozzeck: use Data::Dumper; |
| jshriver | cfedde: ? |
| dondelelcaro | probably grep {$_ !~ /^\.\.?/ } @filenames; is more appropriate... |
| ks | fedx_ we recently got 60 nodes facility, just wonder about something to benchmark it |
| jshriver | Is it possible to dump readdir directly to a list then? |
| dondelelcaro | s/?/?$/ jshriver: yes. |
| fedx_ | ks: actually have not recently. we have 30 nodes all smp |
| wozzeck | true -- thanks.. is there anyway to get rid of "Useless use of a constant in void context" errors without removing use warnings; ? |
| hobbs | dondelelcaro: useless use of regex at line 1 ;) |
| jshriver | how? |
| hobbs | wozzeck: not doing that? :) |
| Ani-_ | wozzeck: yes. Don't use a constant in void context. |
| wozzeck | well i'm just saying 'rm -f $blah' |
| Ani-_ | eval: use warnings; "x"; ""; |
| buubot | Ani-_: Useless use of a constant in void context at eval line 1. |
| hobbs | jshriver: by using readdir in a list context. :) |
| Ani-_ | eval: use warnings; $z="f"; ""; |
| buubot | Ani-_: |
| jshriver | k checking one sec |
| Ani-_ | wozzeck: that makes no sense. |
| hobbs | wozzeck: right, that does _nothing_. It's yelling at you for good reason. |