| simcop2387 | Lynx_: query optimization is a whole 'nother issue, usually the database can do it better than you can (getting what you want out of it that is) |
| zeRoc0oL_ | any other worthy movie on those lines,i'm craving to watch |
| simcop2387 | Real Genius is about that same caliber |
| zeRoc0oL_ | thanks,d/l now |
| f3ew | Lynx_, SELECT column, column FROM TABLE WHERE key IN (list, of, keys); |
| action | CPAN upload: Tripletail-0.26 by HIO |
| CPAN | upload: Tripletail-0.26 by HIO |
| Lynx_ | simcop2387, f3ew: thanks, i guess i should read up on SQL first |
| pelai | if I've populated a hash like so: $myHash{$name} = [$number, $string]; How would I sort the hash according to $number when outputting in a foreach loop? |
| Lynx_ | f3ew: just seemed weird to me to have such a large list of keys in one query, but what do i know |
| f3ew | how large? |
| buu | pelai: Custom sort blocks. |
| Lynx_ | f3ew: dozens to max. 200 or so |
| f3ew | Lynx_, most databases should be able to handle that] |
| Lynx_ | f3ew: ok, thanks |
| pelai | buu: create a custom sort function? |
| Supaplex | a sub sub. perfect. |
| badfish | this is a really intersting free application. http://www.challenge-tv.com/index.php?mode=demodetail&demo=28007&dl=3 |
| shorten | badfish's url is at http://xrl.us/vg9y |
| Supaplex | so interesting you came and went. |
| action | Supaplex hunts for canidates for his malware research collection |
| Supaplex | hunts for canidates for his malware research collection |
| action | CPAN upload: URI-ParseSearchString-2.1 by SDEN |
| CPAN | upload: URI-ParseSearchString-2.1 by SDEN |
| f3ew | Supaplex? |
| Supaplex | sup |
| REBORN | does anyone know how to find a free bot provider for a channel |
| Supaplex | yea, they call it chanserv. :) |
| REBORN | tx, gotta document that, I'm new to it! |
| carson_ | Can someone suggest a Vector class that's quick? Right now I'm just blessing a array ref as my obj. and doing operations on $self->[0], [1], [2], but if there's anything I can do to make it faster, please fill me in. |
| vincent | is it possible to set a regex as a record seperator under command line ? |
| integral | carson_: Some applications can benefit from PDL (http://pdl.perl.org/) but that's mainly for numeric code vincent: No. |
| carson_ | thanks integral. i think it looks promising. |
| vincent | integral: that is strange, I think accepting regex as a record seperator is useful |
| integral | vincent: Yes, you might, but the whole way the perl regexp engine works is unlike grep (et al), and isn't easily applied to streams instead of fixed buffers (Mainly because it's not a regular expression engine any more...) |
| vincent | integral: got it, thanks |
| the_man_mountain | Can someone help me with a regex? I'm try to check is 55 is not the text betwee text: and :text So the text should be in the former text:.*:text I want to check in .* is not 55 |