| RexV | hdf |
| Prof_Vince | GumbyBRAIN: bat guano |
| GumbyBRAIN | Rindolf's url is at http://opensvn.csie.org/app_repl ) and play around with a bat. |
| integral | nathan: perldoc Encode. Encode::encode("UTF-16", "string") |
| nathan | Sweet! That worked. Thanks integral |
| integral | np |
| REBORN | hi folks, does anyone know what's the help && newbie channel at freenod |
| simcop2387 | umop apisdn! |
| redders | Hi, how can I find my perl installation directory on my webserver? |
| f00li5h | redders: which perl |
| redders | it's on a Linux webserver which i'm connected to via telnet |
| f00li5h | redders: that's the command that will tell you where the perl binary is |
| redders | oh, okay, thank you! |
| LeoNerd | I always thought "where" would have been a better name for that command `where perl` => it's over there in /usr/bin |
| redders | yeah, if it gave version number as well it would make sense... |
| Beisitzer | hat jemand ein serien nummer fr perl2exe? |
| LeoNerd | Hmm... whichversion() { dpkg -l $( dpkg -S $( which $1 ) ) } Mmm... double backticks :) |
| RexV | Beisitzer debian #debian.de |
| eMish_ | inside qq(...), are () counted as nested ? |
| RexV | da kann man das topic ndern |
| eMish_ | eval: print qq((())); |
| buubot | eMish_: (()) 1 |
| LeoNerd | Yup.. it's called balanced |
| eMish_ | smart |
| Beisitzer | my $x = shift |
| LeoNerd | qq< ... > is often useful for XML, for that purpose |
| f00li5h | eval: $good_person='bad man'; qq' f00li5h is a $good_person ' |
| buubot | f00li5h: f00li5h is a bad man |
| threat2 | are there any builtin time functions for perl? to convert a YYYY-MM-DD string to a timestamp? |
| LeoNerd | srtftime? |
| threat2 | really? perl has that? |
| LeoNerd | use POSIX qw( strftime ); Oh.. parse a string |
| threat2 | LeoNerd: oh, how low lvl is it? |