| aidan | thanks |
| Aankhen`` | You're welcome. |
| yzf600 | hello again |
| milky_cereal | anyone know how to make a Toplevel modal in tk/perl? i tried $tl->grab(); $tl->WaitWindow(); to no avail. |
| yzf600 | this POE coding is going slower than I had hoped :( if I do this: push @{$heap->{weather}}, "Sunday, April 8, 2007 - 8:40 pm|Cloudy, 57, Wind xxx"; |
| cfedde | yzf600: same design? |
| Caelum | POE can take a while for a few lines of code, since it's a state machine |
| yzf600 | how do I reference a certain array indexes? |
| Aankhen`` | $heap->{weather}->[...idx...] |
| cfedde | yzf600: heap is just a hash so ${$heap->{weather}}[2] |
| yzf600 | yea I tried that |
| Aankhen`` | cfedde: Shouldn't that be @{}? |
| yzf600 | oh crap no wonder those didn't work when I tried them |
| cfedde | eval: push @{$heap->{weather}}, "Sunday, April 8, 2007 - 8:40 pm|Cloudy, 57, Wind xxx"; ${$heap->{weather}}[0] |
| buubot | cfedde: Sunday, April 8, 2007 - 8:40 pm|Cloudy, 57, Wind xxx |
| yzf600 | I was missing a paren |
| Aankhen`` | Mmm. I learn something new every day. ^_^ |
| cfedde | eval: use strict; use warnings; push @{$heap->{weather}}, "Sunday, April 8, 2007 - 8:40 pm|Cloudy, 57, Wind xxx"; ${$heap->{weather}}[0] |
| buubot | cfedde: Error: Global symbol "$heap" requires explicit package name at eval line 1. Global symbol "$heap" requires explicit package name at eval line 1. |
| cfedde | eval: use strict; my $heap; use warnings; push @{$heap->{weather}}, "Sunday, April 8, 2007 blablabla"; ${$heap->{weather}}[0] |
| buubot | cfedde: Sunday, April 8, 2007 blablabla |
| f00li5h | purr |
| action | CPAN upload: Catalyst-Plugin-FormValidator-Simple-Auto-0.15 by TYPESTER |
| CPAN | upload: Catalyst-Plugin-FormValidator-Simple-Auto-0.15 by TYPESTER |
| aidan | Aankhen``: so I have this tar.gz, how do I install it? :) |
| yzf600 | It's really, really hard to learn new concepts when you misplace parens and take 20 minutes to figure it out. sheehs thanks for the info |
| Aankhen`` | aidan: Unpack, read INSTALL (or failing that, README). :-) |
| Caelum | that can be just $heap->{weather}[0] no? |
| yzf600 | yea, I think so |
| f00li5h | eval: $heap = {weather => [foo , bar ] }; $heap->{weather}[0] |
| buubot | f00li5h: foo |
| maasha | this is driving me nuts. aint there a simple way to let Inline::C use an external static lib. using the config suggestions in the man page i keep getting: dyld: lazy symbol binding failed: Symbol not found: _bitAlloc |
| f00li5h | maasha: why do you want C? |
| maasha | f00li5h: a specific speed thing |
| f00li5h | aah |
| maasha | and since i am using some bit magic from someone elses source i need to let the c compiler now where to find this jkweb.a lib |