@# Quotes DB     useful, funny, interesting





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



Comments:

<0> can anyone recommend a good TCL/TK book?
<1> what's ur purpose
<2> i think hes going to use it for sweet good night tales
<3> =D
<0> hehe
<0> mostly like to use TK though =P
<4> Your chance to win Money, a car, jewelery, gold, diamonds, cash and many other prizes totaling $50,000 http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=5656697174&rd=1&sspagename=STRK%3AMESE%3AIT&rd=1
<5> i am trying to fix my shell that is in csh
<5> and as i told some days ago
<5> i cannot run tcl script ....couse i need some path in the .cshrc file....
<5> is there any1 that can helpl me_
<5> ?
<6> define "run tcl script"
<7> How to remove/disable-tcl-threads
<3> You'll hafta recompile Tcl.



<7> is that HArd/diff ?
<7> running debian
<7> so i dont know so much aboute compile tcl
<3> Not really.. You just tar -zxvf tcl8.4.tar.gz && cd tcl8.4/unix && ./configure --prefix=/usr && make && make install
<7> i allready got tcl8.4
<7> so i wonder if i can join a directory
<7> and write that ./configure stuff
<3> Just download the tcl source and do those commands like I said.. It'll overwrite the threaded Tcl that Debian put on the box.
<7> aah. ok i try that just have to download that tcl8.4 first then
<7> that tar.gz file
<7> So it dont have to be in a spesificated directory
<7> ?
<7> like /var/ or /etc/ or /usr
<3> Well I like compiling stuff from /usr/src/ but it doesn't matter where you are.
<3> This is the .tar.gz you wanna get.. http://internap.dl.sourceforge.net/sourceforge/tcl/tcl8.4.12-src.tar.gz
<0> hmm
<0> is there an easy way to get a textfiles content in a text widget?
<8> why would you disable the support if you would need the thread package installed
<8> which is never installed by default
<0> i mean is there an easy way to read from a file with TK and put the content in the text widget
<7> FireEgl: Can i remove the other versions of tcl then
<7> After that tar -zxvf tcl8.4.tar.gz && cd tcl8.4/unix && ./configure --prefix=/usr && make && make install
<3> erikandre: If you remove the original Tcl, do it before you "make install".
<7> FireEgl: So i cant remove tcl 8.3
<7> and 8.0
<7> after that make install stuff
<3> You can.. but I dunno if it'll remove parts of what you just installed.
<7> FireEgl: Thanks for help!
<7> You have been helpfull! i have noted it in my book for later use:)
<3> =) Welcome.
<7> see ya later:)
<3> =O
<9> You won't be interested in joining our new project, "netdrop"?
<9> It's nothing huge..
<3> hehe
<3> Is that a joke? netdrop??
<9> ?netdrop
<10> Netdrop is a highly configurable and modular Eggdrop Tcl script that manages and synchronizes Eggdrop botnets.
<3> hrm
<3> Pixelz is helping write netdrop isn't he? =)
<9> Hehe, yup. [GRiMMY], me, BL4DE and Pixelz atm
<9> We've ***igned to SF.net, we're expecting to get their response next few days.
<11> easy now l***ie
<12> they tell u to go **** urself :)
<12> actully i hope they tell us
<9> i don't think they'll neglect it
<3> Netdrop.. Sounds like an entire bot (like Eggdrop, Windrop, Tcldrop) rather than a botnet script for Eggdrop..
<9> FireEgl: Yeah, but we couldn't find any good names. But it will be half eggdrop and half our script, almost. We'll probably override almost everything in the DCC-chat that involves botnet. =)
<13> we will eeeeehhhhhhhhhh?
<9> =)
<9> Well, maybe not THAT much, but we'll probably change/optimize much of it.
<13> sure
<13> you've already admitted your true colours now
<9> =O
<5> i need to join 2 path...
<5> o rbetter 1 path...
<5> with a command
<5> so i create in my env a variable with the path...



<5> then in the apps gui i put the apps command
<5> now i can get the env var,....
<5> but all the \ in the path are burned out
<5> so that i get a path like c:appsprogramexecutable instead of c:\apps\program\executable
<5> any ideas?
<9> regsub -all -- {\\} $var {\\\\}
<5> ok that is solved...it was the eright escape char...
<5> intead after ***igning to some var...i have this problem...
<5> i use append cmd "$rendercommand pippo.mb"
<5> ok let's say that $rendercommand is the joint of the path wit the apps executables....
<5> ok when i recall that var....all the \ are burned out
<5> join not joint
<10> tikal: #878 (171 clicks) Tcl: not
<9> ;set test {C:\program files\test\}
<9> ;join $test
<10> yoe: #879 (163 clicks) Tcl: 0;
<9> meh
<9> ;set test {C:\program files\test\\}
<10> yoe: #881 (149 clicks) Tcl: C:\program files\test\\
<9> ;join $test
<10> yoe: #882 (162 clicks) Tcl: C:program filesest\
<9> thats why
<9> ;set test {C:\program files\test\ }
<10> yoe: #884 (144 clicks) Tcl: C:\program files\test\
<9> ;regsub -all -- {\\} $test {\\\}
<9> ;regsub -all -- {\\} $test {\\\\}
<9> ;
<10> yoe: #885 (100 clicks) Tcl:
<9> ;regsub -all -- {\\} $test {\\\\}
<10> yoe: #886 (465 clicks) Tcl: C:\\program files\\test\\
<9> ;join [regsub -all -- {\\} $test {\\\\}]
<10> yoe: #887 (309 clicks) Tcl: C:\program files\test\
<5> but for the \ inside the environment var i have create in my system....
<5> i cannot put double \\ in
<5> and is there that i see my \ removed
<9> \ is a escape char, when joined, it's removed
<5> ok so i put 2 of them...
<5> an one remain
<5> but if i get the path from an env variable all that \ are removed...
<5> how do i keep them in?
<9> they're in there as long as you don't output it
<9> just run the regsub i gave you on it
<5> i am trying to use that
<5> but i am wandering why in all the script i have other string with \ and those are read and ouput in the right way!
<5> ok now in linux is working....
<5> only in win i have problem
<5> so the var /usr/aw/maya6.0/bin/ is read
<5> while the relative path in xp c:\program files\aw\maya6.0\bin
<5> has all the \removed
<14> hello
<9> hello
<14> merry christmas, although it's too late ":)
<15> heh
<13> lol
<13> 16 Jan
<13> Xmas = 25th Dec
<13> quite a lot late lol
<14> i haven't been here since a long time :@ :@
<13> lol figures
<14> ^_^
<14> you have bankai here
<13> =P
<13> is lame only voices me
<14> haha
<14> because you still noob, you have to become like ME!
<13> lol
<9> xmas = 24th dec
<12> "how will santa then make it ?"
<14> isn't == 22nd?
<14> and by the way, santa didn't stop by :<
<8> he doesn't like jews damnit!
<14> does he?


Name:

Comments:

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






Return to #tcl
or
Go to some related logs:

vato slang
#nhl
I have returned-prometheus
#hardware
#nhl
ntldr is missing, ibm blade
#politics
#gentoo
#sql
#flash



Home  |  disclaimer  |  contact  |  submit quotes