Duplicates
Sunday, May 28th, 2006My dead-trees grokking is paying out
I’m observing a lot of stuff here and there in the code that needs my love…
- Hmmm… Sendpage::Device has code that is unsurprisingly similar to Sendpage::Modem. It would be nice if I can combine these together into just one module, then let users import the objects via export tags.
- A lot of variables get made inside the various functions (again, look at Sendpage::Device) that are actually just aliases to hash entries (taken from args to the functions.) I suppose this made the code a bit clearer, but nontheless there’s still a lot of scratchpad pollution going on there :-/
-
Docs are lacking… but this is hardly unknown.
-
The usual Perl metagoofs: no
use warningsanduse strict.
There’s still more, soon to come.