| gg_ | does anyone here know of a good Catalyst tutorial that is a little bit "friendlier" than "Quick and Dirty Catalyst Tutorial" and "Catalyst::Manual::Tutorial" ? |
| kd_ | catalyst advent purl: catalyst advent is svn co http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/CatalystAdvent or http://dev.catalyst.perl.org/wiki/DocLinks/AdventCalendar2006 or http://dev.catalyst.perl.org/wiki/DocLinks/AdventCalendar |
| shorten | kd_'s url is at http://xrl.us/vhsd kd_'s url is at http://xrl.us/vhse |
| gg_ | kd_, thanks. |
| kd_ | start with entry one of 2006 |
| gg_ | yep, I'm already there. |
| kd_ | apologies for the svn nonsense ;) |
| gg_ | it's ok :) ... I'll just follow the tutorial and see how it goes |
| SubStack | GumbyBRAIN: Do or do not. There is no spoon. |
| GumbyBRAIN | No it is can do there. |
| threat2 | hey I have a list, what function can I use to see if any element within it matches a vertain regex pattern? @list =~ /PATTERN/ ? |
| jonsmith1982 | try it |
| threat2 | I get a scalar error I guess not any other functions that could do this? grep? |
| infi | DING DING DING |
| threat2 | I don't want a list as the output, I want a bool :/ |
| Patterner | List::Util-Man To The Rescue! |
| threat2 | ok List? |
| infi | threat2: so take a slice. or actually, an array evaluated in scalar context will give you the behaviour you want. |
| threat2 | infi: it will? I will probably have to think of another pattern to use I was going to use ^$someScaler$ |
| RexV | MOIN |
| threat2 | RexV: G'Day |
| RexV | g,day? |
| infi | eval: @foo = qw/meow dongs peck/; $honk = grep /dongs/, @foo; $honk |
| buubot | infi: 1 |
| threat2 | Good Day |
| RexV | Ah ok ;) |
| infi | eval: @foo = qw/meow dongs peck/; $honk = grep /splurge/, @foo; $honk |
| buubot | infi: 0 |