| revdiablo | Noopity noop |
| mauke | GumbyBRAIN: ur a noop |
| GumbyBRAIN | 6A doesn't define me i dont mind the issue of looking up information in the slice becomes a noop. |
| merlyn | ?eval -> { 3 + 4 } |
| evalbot_r15369 | ->{Syn "block" {App &infix:+ (: 3, 4)}} |
| merlyn | hmm. no compile-time folding |
| revdiablo | merlyn: Better watch out, that kind of talk can get you a commit bit |
| rodrick-brown | what's gather? thats perl6 / |
| revdiablo | rodrick-brown: It returns a list |
| rodrick-brown | is it perl 5 ? |
| revdiablo | rodrick-brown: Based on all the 'take' calls Perl 6 |
| rodrick-brown | o'h ok |
| merlyn | heh - I'll just dodge the bit :) |
| cfedde | Why is it so hard to buy a decent cell phone? |
| kcbanner | cfedde, because companies like to make money :( its so hard to get an unlocked phone |
| cfedde | you can't get an unlocked phone from a vendor anyway. |
| kcbanner | I knoew |
| cfedde | sucks to be me. |
| Inf3rn0 | Odd number of elements in hash assignment at something/random The line looks like this: my (%temp_hash,$key) = @_; |
| revdiablo | You have to do my ($key, %temp_hash) = @_; The hash will slurp up all the arguments remaining |
| Inf3rn0 | Bah Thats ugly |
| revdiablo | You could pass a reference, too |
| Inf3rn0 | Yea |
| revdiablo | But to pass a hash-as-list, you have to put it at the end |
| cfedde | you can also flip that. my ($key, %temp_hash) = @_; |
| dfinn | I'm trying to extract the bsize variable from the mkfs command that was used to create a linux file system i have it almost working using: perl -pi -e 'print $1 if m/bsize=(.\d+)/' i'm getting the value I want, but them I'm also getting the entire line echoed again |
| mauke | why -i? why -p? |
| dfinn | how can I keep that from happening? uh, not sure I guess |