in reply to Dynamically add Optionmenus based on variable perl tk
Nothing to do with your question ...
Looking at the code I see a frightening swarm of indecipherable characters. I would suggest extracting the special codes into predefined variables. That way you have something meaningful, and it becomes easier to verify they contain what you want them to contain.
Readonly my %CHINESE_WORDS => ( perl => 'Ти+п АКБ:', monk => 'Ти+п АКБ:' ); Readonly my %PROTEINS => ( A => 'Ти+п АКБ:', C => 'Ти+п АКБ:', G => 'Ти+п АКБ:', T => 'Ти+п АКБ:', );
Obviously I reused the same string over and over, but I think you can see how defining constants would make the strings easier to verify, and the main code shorter and clearer.
As Occam said: Entia non sunt multiplicanda praeter necessitatem.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Dynamically add Optionmenus based on variable perl tk
by pashanoid (Scribe) on Jul 28, 2011 at 18:20 UTC | |
by pashanoid (Scribe) on Jul 29, 2011 at 08:15 UTC | |
by Anonymous Monk on Dec 07, 2011 at 23:03 UTC |