| ayrnieu | ... |
| frogbot | .... |
| avar | GumbyBRAIN: ... |
| GumbyBRAIN | when to use () and when not operating in a food fight. That would explain his viewpoint somewhat. |
| ayrnieu | eval: join '', '\0' .. '\x1F' |
| buubot | ayrnieu: \0 |
| ayrnieu | eval: join '', ('\0' .. '\x1F') |
| buubot | ayrnieu: \0 |
| ayrnieu | odd. |
| Jmax- | eval: ['\0' .. '\x1F' ] |
| buubot | Jmax-: ['\\0'] |
| Jmax- | not odd at all :) |
| ayrnieu | jmax - why is that not odd at all? |
| Jmax- | eval: ord '\0' |
| buubot | Jmax-: 92 |
| Jmax- | eval: ord '\x1F' |
| buubot | Jmax-: 92 |
| Caelum | what was the merlyn columns command... |
| avar | eval: [ map chr, 0x01 .. 0x1f ]; |
| buubot | avar: [' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '] |
| Jmax- | merlyn-columns: xml |
| buubot | Found What's new with RSS (Jan 00) at [ http://www.stonehenge.com/merlyn/WebTechniques/col45.html ] Simple queries with XML and DBD::RAM (Jul 00) at [ http://www.stonehenge.com/merlyn/WebTechniques/col51.html ] Customer Surveys and Writing XML (Nov 01) at [ http://www.stonehenge.com/merlyn/WebTech niques/col67.html ] The Wrong Parser for the Right Reasons (Jun 03) at [ http://www.stonehenge.com/merlyn/LinuxMag/col49.html ] |
| ayrnieu | ah, duh. eval: join '', "\0" .. "\x1F" |
| buubot | ayrnieu: \0 |
| ayrnieu | odd. |
| Caelum | Jmax-: thank you |
| Jmax- | np |
| simcop2387 | eval: map chr, 0x0 .. 0x1f |
| buubot | simcop2387: 32 |
| avar | ranges don't work for any character range |
| simcop2387 | yes they do eval: map chr, 'a' .. 'z' |
| buubot | simcop2387: 26 |
| avar | a..z is not "any character range" |
| simcop2387 | yes it is, or do you mean all character ranges? |
| avar | eval: [ "a" .. "" ] |
| buubot | avar: ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','aa','ab','ac','ad','ae','af','ag','ah','ai','aj','ak','al','am','an','ao','ap','aq','ar |
| simcop2387 | i wonder how far that goes... |