| Woosta | that would be very nice |
| action | Randal needs to sleep now |
| Randal | needs to sleep now & zzzz |
| lloy0076 | Does it make sense to use "select" with a UDP client/server? |
| cfedde | lloy0076: you can. But since there's no stream there's no need for the context that creatig the socket gives you. on the other hand if you have some context you want to deal with then select is a good choice. |
| action | CPAN upload: Tripletail-0.25 by HIO |
| CPAN | upload: Tripletail-0.25 by HIO |
| action | CPAN upload: SVN-Notify-2.65 (++++ ) by DWHEELER |
| CPAN | upload: SVN-Notify-2.65 (++++ ) by DWHEELER |
| vasundhar | Hi I want to connect to an ldap dir, and I have to navigate through a proxy for that, Can some one point me to resource or solution ? |
| action | CPAN upload: overload-eval-0.01 by JJORE |
| CPAN | upload: overload-eval-0.01 by JJORE |
| Aankhen`` | How can I get a string representation of a Regexp object (created using qr//)? Simply print'ing it doesn't seem to work... |
| action | CPAN upload: Term-Menu-0.06 by DAZJORZ |
| CPAN | upload: Term-Menu-0.06 by DAZJORZ |
| action | CPAN upload: Lemonldap-Handlers-Generic-3.1.2 by EGERMAN |
| CPAN | upload: Lemonldap-Handlers-Generic-3.1.2 by EGERMAN |
| Aankhen`` | Data::Dumper simply says something like qr/Regexp=SCALAR(...some memory address...)/ |
| integral | GumbyBRAIN: Mashed potato! |
| GumbyBRAIN | This judge is a potato. |
| ntgrl | GumbyBRAIN: Mashed potato! |
| GumbyBRAIN | Jrockway - haskell is a potato. |
| Prof_Vince | ahah so true |
| Aankhen`` | jseval: my $temp = '^(?:in)?to$'; "into" =~ /$temp/ |
| buubot | Aankhen``: Error: Error: SyntaxError: missing ; before statement at line 0: my $temp = '^(?:in)?to$'; "into" =~ /$temp/ |
| Aankhen`` | Huh, wha? Gah. eval: my $temp = '^(?:in)?to$'; "into" =~ /$temp/ |
| buubot | Aankhen``: 1 |
| Aankhen`` | eval: my $temp = qr/^(?:in)?to$/; "into" =~ $temp |
| buubot | Aankhen``: 1 |
| Aankhen`` | Meh. |
| Hammit | eval: my $num = 1_000_000; 1 while($num =~ s/(\d)(\d\d\d)(?!\d)/$1,$2/); |
| buubot | Hammit: |
| Hammit | bah hmpf hehe |
| jql | cute |
| f3ew | Aankhen``, an object is just a blessed hashref so you should be able to unbless and then dump the hash |
| jql | eval: qr/foo(bar|baz)/ |
| buubot | jql: qr/(?-xism:foo(bar|baz))/ |
| action | jql thanks buubot |
| jql | thanks buubot |
| Hammit | eval: my $num = 1_000_000; 1 while($num =~ s/(\d)(\d\d\d)(?!\d)/$1,$2/g); print $num; |