@# Quotes DB     useful, funny, interesting





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



Comments:

<0> i guess i would need to do it like a hundret times to be sure
<1> a single gc run can prolly kill your results
<0> ill just use line by line
<0> i dont want to use that much memory
<0> maximal memory usage of tcl shell was 200mb already
<0> back to 50mb now
<1> yeah
<0> urgs
<0> first one takes max 2mb memory
<0> second one takes 223mb at peak
<0> and even now after parse 110 mb
<1> nice
<0> oh my fault
<0> forgot to delete the db
<0> between runs
<2> set regex {^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])(:[1-9]{1}[0-9]{0,4}){0,1} ([a-zA-Z0-9]+){0,1}$}



<3> [GRiMMY]: #1025 (223 clicks) Tcl: ^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])(:[1-9]{1}[0-9]{0,4}){0,1} ([a-zA-Z0-9]+){0,1}$
<2> set test "127.0.0.1:5006 hello"
<3> [GRiMMY]: #1026 (206 clicks) Tcl: 127.0.0.1:5006 hello
<2> ;regexp $regex $test
<3> [GRiMMY]: #1027 (30516 clicks) Tcl: 1
<2> set test "127.0.0.1:5006"
<3> [GRiMMY]: #1028 (202 clicks) Tcl: 127.0.0.1:5006
<2> ;regexp $regex $test
<3> [GRiMMY]: #1029 (364 clicks) Tcl: 0
<2> hmph
<2> set regex {^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])(:[1-9]{1}[0-9]{0,4}){0,1}( [a-zA-Z0-9]+){0,1}$}
<3> [GRiMMY]: #1031 (222 clicks) Tcl: ^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])(:[1-9]{1}[0-9]{0,4}){0,1}( [a-zA-Z0-9]+){0,1}$
<2> ;regexp $regex $test
<3> [GRiMMY]: #1032 (11003 clicks) Tcl: 1
<2> set test "127.0.0.1"
<3> [GRiMMY]: #1033 (201 clicks) Tcl: 127.0.0.1
<2> ;regexp $regex $test
<3> [GRiMMY]: #1034 (347 clicks) Tcl: 1
<4> ::ip::IPv4? 127.0.0.1
<3> FireEgl: #1046 (665 clicks) Tcl: 1
<4> ::ip::IPv6? 2001:5c0:84dc::
<3> FireEgl: #1047 (20991 clicks) Tcl: 1
<4> info commands ::ip::*
<3> FireEgl: #1048 (534 clicks) Tcl: ::ip::Mask4 ::ip::Normalize ::ip::normalize ::ip::ToString ::ip::type ::ip::IPv4? ::ip::Mask6 ::ip::is ::ip::IPv6? ::ip::SplitIp ::ip::prefixToNative ::ip::equal ::ip::isOverlapNative ::ip::mask ::ip::Normalize4 ::ip::version ::ip::contract ::ip::prefix ::ip::Normalize6
<5> ::ip::version 2001:5c0:84dc::
<3> dreamss: #1057 (2771 clicks) Tcl: 6
<5> ::ip::version 1.1.1.1
<3> dreamss: #1058 (1085 clicks) Tcl: 4
<4> =)
<6> wtf did I leave?
<6> what was my q uit message?
<4> [09:56:00] *** Quits: th3dge (hub.se irc.daxnet.no)
<6> ah
<6> phew
<6> :D
<2> ;set regex {^\#[0-9]+ "(.?*)" \d+ STEAM_\d+\:\d+\:\d+ (\d+) \d+\:\d+ \d+ \d+ (.*?)$}
<3> [GRiMMY]: #1070 (213 clicks) Tcl: ^\#[0-9]+ "(.?*)" \d+ STEAM_\d+\:\d+\:\d+ (\d+) \d+\:\d+ \d+ \d+ (.*?)$
<2> set text {#1 "FunFM-cracka #funfm\" 5 STEAM_0:1:6253576 10 46:40 74 1 127.0.0.1:63031}
<3> [GRiMMY]: #1071 (208 clicks) Tcl: #1 "FunFM-cracka #funfm\" 5 STEAM_0:1:6253576 10 46:40 74 1 127.0.0.1:63031
<2> regexp -nocase -- $regex $text
<2> ;regexp -nocase -- $regex $text
<3> [GRiMMY]: #1073 (667 clicks) Tcl error: couldn't compile regular expression pattern: quantifier operand invalid
<2> ;set regex {^\#\d+ "(.?*)" \d+ STEAM_\d+\:\d+\:\d+ (\d+) \d+\:\d+ \d+ \d+ (.*?)$}
<3> [GRiMMY]: #1074 (210 clicks) Tcl: ^\#\d+ "(.?*)" \d+ STEAM_\d+\:\d+\:\d+ (\d+) \d+\:\d+ \d+ \d+ (.*?)$
<2> ;regexp -nocase -- $regex $text
<3> [GRiMMY]: #1075 (797 clicks) Tcl error: couldn't compile regular expression pattern: quantifier operand invalid
<4> What do you want me to do? I **** at regexps!
<2> ack! lol
<2> ;set regex {^\#\d+ "(.?*)" \d+ (.*?)$}
<3> [GRiMMY]: #1079 (210 clicks) Tcl: ^\#\d+ "(.?*)" \d+ (.*?)$
<2> ;regexp -nocase -- $regex $text
<3> [GRiMMY]: #1080 (788 clicks) Tcl error: couldn't compile regular expression pattern: quantifier operand invalid
<2> ooops
<2> ;set regex {^\#\d+ "(.*?)" \d+ STEAM_\d+\:\d+\:\d+ (\d+) \d+\:\d+ \d+ \d+ (.*?)$}
<3> [GRiMMY]: #1082 (214 clicks) Tcl: ^\#\d+ "(.*?)" \d+ STEAM_\d+\:\d+\:\d+ (\d+) \d+\:\d+ \d+ \d+ (.*?)$
<2> ;regexp -nocase -- $regex $text
<3> [GRiMMY]: #1083 (3802 clicks) Tcl: 1
<4> \o/
<2> =)
<6> we're all thieves
<7> you more than anyone



<6> HI HEST BABY
<7> HI THERE
<7> HOW ARE YOU?
<6> could be better
<6> but far from bad
<7> WHY IS THAT?
<6> how about youuuuu
<7> I'm f'ing fed up
<6> oh
<7> im in the middle of my exams
<7> i've had three so far
<7> 4 to go
<6> ah
<7> next one tomorrow
<6> difficult?
<7> well
<7> not really
<7> but i got a D on my last one
<7> can't figure it out
<6> :(
<7> one of the biggest retards got an A
<6> ah I Know the feeling
<6> lol
<8> fu th3dge
<6> omg
<6> N86ers
<8> one step closer to th3dge
<7> why does he need two dresses?
<7> wasnt the one he had good enuf?
<6> other one was waaaaaaaaay to revealing
<6> he didnt shave
<6> his chest
<6> lol
<7> ;>
<8> ;puts $data
<3> N86ers: #1121 (440 clicks) Tcl error: can't read "data": no such variable
<8> ;puts $file
<3> N86ers: #1122 (441 clicks) Tcl error: can't read "file": no such variable
<6> ;puts $var
<3> th3dge: #1123 (434 clicks) Tcl error: can't read "var": no such variable
<6> ;puts $test
<3> th3dge: #1124 (stdout) 127.0.0.1
<6> lol
<8> =)
<6> I found the treasure
<8> ;puts $token
<3> N86ers: #1128 (538 clicks) Tcl error: can't read "token": no such variable
<6> puts $test2
<6> puts $boobies
<9> ;exec ls
<3> F|owman: #1131 (3597 clicks) Tcl: eggdrop
<6> F|owman, do you got the flow?
<7> White_Zombie-04-Grease_Paint_And_Monkey_Brains_(Sin_Centers_Of_Suburbia_Mix).mp3
<6> lol
<9> yeah i know :D
<7> oyh
<7> anyone got any suggestion for mailinglist software?
<6> what do yuo know? :D
<7> or, well, i've never tried making mailing lists before
<9> good question.. not much
<8> ;puts $th3dge
<3> N86ers: #1141 (465 clicks) Tcl error: can't read "th3dge": no such variable
<6> hest, shouldnt be too difficult
<8> ;puts $fireegl
<3> N86ers: #1143 (439 clicks) Tcl error: can't read "fireegl": no such variable
<8> =(
<6> just a signup page, and an admin page where you can m***-send emails :)
<6> derived from database
<10> omg BL4DE is noob
<6> lol
<6> joe is a smoker :(
<7> thats cool


Name:

Comments:

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






Return to #tcl
or
Go to some related logs:

#worldcup
#netbsd
#beginner
cache:QwqLDaEXbBcJ:www.quotesdb.info/efnet/firebird/11Mar2006/1.html * www video
#beginner
#beginner
#computers
#nhl
not gay balls touch
unreal ircd create a channel



Home  |  disclaimer  |  contact  |  submit quotes