@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5



Comments:

<0> how about the other one?
<1> whitor signed off
<0> uh
<2> (19:10:34) (@hrz) knulla alla svenska skit huvuden! LOOL
<0> translate please :/
<1> okay
<1> kyoman is active on the channel again, he says it is working fine now, since I closed it with \001



<0> i was right :P
<1> thanks guys for the help
<3> hrz, why did ya voice OdinNT =|
<0> np
<0> hehe
<1> you all have a nice weekend and here is a Fatty for your trouble
<0> thank you odi :P
<3> wierd weekend
<1> you all take care and again, thanks for the help
<2> FazLeeeN (19:10:34) (@hrz) knulla alla svenska skit huvuden! in english: **** all swedish **** heads!
<1> bye >:)
<0> than includes you? N86ers :/
<2> im swedish so i suppose so
<4> how would i do something like: catch {exec "[set data]" | gunzip -qfc} output
<0> guys anyone have tried to make his machine web-based system? like browsing everything using the web, also searching
<4> p*** a tcl var to an external proc
<4> hmm
<4> whats the difference between cat and echo ?
<4> bah
<4> [catch {exec cat dump.txt | gunzip -qfc} output]
<5> ScoTTie_: #1430 (23044 clicks) Tcl: 1
<4> works
<4> but trying to echo any tcl var using either echo or << input redirects doesnt do anything
<4> gives me errors
<4> :(
<4> guess its something to do with the binary data
<6> must go NOW TODAY! 1 Alienware area51-m 5700 notebook. price 550 includes sameday shpping, case, wireless router. IF YOUR INTERESTED ONLY MESSAGE ME ON MSN AT MCSLTD3@HOTMAIL.COM, AIM AT MIKCOMPUTING or YAHOO AT MCSLTD2
<4> wonder if anyone actually buys stuff thats spammed on irc
<4> argh
<4> anyone know how to pipe binary data into another exec ?



<4> this is killing me
<3> nope
<4> ;binary format A "a b c"
<5> ScoTTie_: #1443 (161 clicks) Tcl: a
<4> ;binary format A* "a b c"
<5> ScoTTie_: #1444 (182 clicks) Tcl: a b c
<4> ;binary format a* "a b c"
<5> ScoTTie_: #1445 (527 clicks) Tcl: a b c
<4> how would i go about escaping all non printable chars ?
<4> sorry, replacing them with there \x?? escaped hex versions
<4> bah
<4> tcl doesnt p*** \0 bytes into exec
<3> hmmm
<3> ;set str ""; for {set x 52} {$x != 0} {incr x -1} {append str "$x\x"}; string trim $str x
<5> [GRiMMY]: #1451 (23818 clicks) Tcl: 52x51x50x49x48x47x46x45x44x43x42x41x40x39x38x37x36x35x34x33x32x31x30x29x28x27x26x25x24x23x22x21x20x19x18x17x16x15x14x13x12x11x10x9x8x7x6x5x4x3x2x1
<3> hmmm
<2> lol
<3> ;set str ""; for {set x 52} {$x != 0} {incr x -1} {append str "$x\*"}; string trim $str *
<5> [GRiMMY]: #1454 (11727 clicks) Tcl: 52*51*50*49*48*47*46*45*44*43*42*41*40*39*38*37*36*35*34*33*32*31*30*29*28*27*26*25*24*23*22*21*20*19*18*17*16*15*14*13*12*11*10*9*8*7*6*5*4*3*2*1
<3> ;expr $str
<5> [GRiMMY]: #1455 (624 clicks) Tcl error: syntax error in expression "52*51*50*49*48*47*46*45*44*43*42*41*40*39*38*37*36*35*34*33*...": premature end of expression
<3> hmmm
<3> ;set str ""; for {set x 52} {$x != 0} {incr x -1} {append str "$x * "}; string trim $str *;string trim $str
<5> [GRiMMY]: #1457 (11785 clicks) Tcl: 52 * 51 * 50 * 49 * 48 * 47 * 46 * 45 * 44 * 43 * 42 * 41 * 40 * 39 * 38 * 37 * 36 * 35 * 34 * 33 * 32 * 31 * 30 * 29 * 28 * 27 * 26 * 25 * 24 * 23 * 22 * 21 * 20 * 19 * 18 * 17 * 16 * 15 * 14 * 13 * 12 * 11 * 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 *
<3> ;set str ""; for {set x 52} {$x != 0} {incr x -1} {append str "$x * "}; string trim $str " * ";string trim $str
<5> [GRiMMY]: #1458 (11885 clicks) Tcl: 52 * 51 * 50 * 49 * 48 * 47 * 46 * 45 * 44 * 43 * 42 * 41 * 40 * 39 * 38 * 37 * 36 * 35 * 34 * 33 * 32 * 31 * 30 * 29 * 28 * 27 * 26 * 25 * 24 * 23 * 22 * 21 * 20 * 19 * 18 * 17 * 16 * 15 * 14 * 13 * 12 * 11 * 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 *
<3> ;set str ""; for {set x 52} {$x != 0} {incr x -1} {append str "$x * "}; set str [string range $str 0 end-3]
<5> [GRiMMY]: #1459 (12825 clicks) Tcl: 52 * 51 * 50 * 49 * 48 * 47 * 46 * 45 * 44 * 43 * 42 * 41 * 40 * 39 * 38 * 37 * 36 * 35 * 34 * 33 * 32 * 31 * 30 * 29 * 28 * 27 * 26 * 25 * 24 * 23 * 22 * 21 * 20 * 19 * 18 * 17 * 16 * 15 * 14 * 13 * 12 * 11 * 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1
<3> ;expr $str
<5> [GRiMMY]: #1460 (854 clicks) Tcl: 0
<3> hmmm
<2> i nned help to regexp this http://warpdrive.se/rss/warp_senaste.xml i want only the text to be outputed
<3> ;regexp {<*>(.+?)</*>} text
<5> [GRiMMY]: #1477 (166535 clicks) Tcl: 0
<3> try smth like that
<2> pk
<2> ok


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #eggtcl
or
Go to some related logs:

#beginner
#beginner
#stocks
cforce tutorial forum
site:www.quotesdb.info imlive credit
#computers
scanning for superblocks and directories stubs
#linuxhelp
#nhl
0xc837



Home  |  disclaimer  |  contact  |  submit quotes