| rindolf | dazjorz: my fellow to the conversation tells me it wasn't working for some time. |
| LeRrA | Ow, thanks rickest :) I will look at it! |
| rindolf | lerra: note that it still rewrites the file behinds the scenes. |
| dazjorz | rindolf: "The MSN servers are temporarily unavailable. Please wait and try again." |
| rindolf | cactusbin: where do you see that. dazjorz: don't know then. cactusbin: ? |
| cactusbin | what do u mean |
| rindolf | cactusbin: the splice thing. |
| cactusbin | I want to remove the first 2 elements of the array |
| dazjorz | also Connection error from Notification server: Reading error |
| Chris62vw | that is super easy |
| rindolf | cactusbin: ah, I see. cactusbin: you can do shift twice. |
| cactusbin | oh thats simple... |
| Chris62vw | shift @ary for 1,2; |
| rindolf | cactusbin: splice will also work, but in this case it's unnecessary. |
| cactusbin | ok thanks |
| rindolf | ETOOMANYTABSOPEN |
| hobbs | assuming that . and .. are the first two results from readdir is not recommended |
| cactusbin | ok so I should do a regex? |
| hobbs | not particularly. |
| bpalmer_ | sure, grep it out |
| cactusbin | there arn't any hidden files.. what would be the solution |
| hobbs | how about grep { $_ ne '.' and $_ ne '..' } |
| rindolf | cactusbin: use File::Spec |
| hobbs | say what you mean, and all that |
| rindolf | cactusbin: it has a File::Spec->no_upwards() function. |
| cactusbin | i cant click... |
| rindolf | cactusbin: what? |
| cactusbin | sorry |
| bpalmer_ | two 'ne's vs a !/^\.{1,2}$/ ... don't think it matters all that much |
| cactusbin | wrong window |
| rindolf | cactusbin: no problem. No Problem complete |
| hobbs | bpalmer_: I try to discourage unnecessary use of regexes. It doesn't matter _here_, I just like to break the habit |