@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19



Comments:

<0> o m g
<0> :|
<0> i don;t want to make a screensaver ..
<0> just 10 files all in one files with scr extension
<1> haha
<0> a /
<2> mAr|us_ you have no ****ing idea what you want
<0> :|
<0> this is what i want :)
<0> pls.. don;t ban me :D
<2> why shouldn't we
<2> you're too stupid to own a computer
<0> :)
<0> are u sure ?
<2> reasonably



<0> hmm ...
<3> mAr|us_ look at this...http://www.2flyer.com/
<2> <0> i don;t want to make a screensaver ..
<0> & ?
<2> so what DO you want to do?
<1> well, i've had enough of this tom foolery, off to clearn myself up
<1> -r
<0> i want
<0> to compilate 10 files in 1 file with scr extension
<0> it;s oke ?
<4> victor i'm starting to hold you somewhat responsible for this
<0> BuzZ
<4> if i didn't owe you a bunch for all that help, i'd really be ready to use my plastic fork on you right now
<3> sorry, i did not understand...
<4> no ****?
<0> so?>
<1> cl file0.cpp file1.cpp file2.cpp file3.cpp file4.cpp file5.cpp file6.cpp file7.cpp file8.cpp file9.cpp /link /out:foo.scr
<1> done and done
<1> NEXT QUESTION
<0> ooo
<0> wait
<4> peter i blame you too
<1> i am beyond reproach
<5> hey all, I'd like to know which method is the best to recv(); data and in what I should put it(stringstream, string?).. well I'd like to have a good example.. can't find one since it's almost all in C :(
<1> nexact-: have you considered using an abstrating library, such as asio (boosterific) or dtilib?
<5> nah I never heard about it
<0> notrhing :|
<2> jill_s blame us for what??
<1> http://asio.sourceforge.net/
<4> c++ screensavers
<4> i blame you both for all of it
<2> why? I said very early on that I didn't know how to make one
<4> lol
<0> peterhu
<2> and he keeps insisting he doesn't want to make one
<1> i just showed him how to make one
<5> peterhu, thanks, i'll check that
<2> and he hasn't said what hte **** he DOES want, why? or what he actually has
<1> not my fault he can't use cl.exe
<0> if an file is win.com , i will put win.com.cpp ?
<2> 10 files
<1> win.com?
<1> hahaha
<4> oh **** i think my thing is working
<4> brb
<0> a ?
<2> mAr|us_ as I said earlier you have NO idea what you're doing
<0> there are 10 files..
<1> your thing is working? i find that highly dubious
<0> and one of them is win.com
<0> ..
<0> cl file0.cpp file1.cpp file2.cpp file3.cpp file4.cpp file5.cpp file6.cpp file7.cpp file8.cpp file9.cpp /link /out:foo.scr
<0> in thsi command i will put : cl win.com .....
<0> or
<2> mAr|us_ I think I had it right before, you're not smart enough to own a computer
<1> win.com is a (legacy) part of windows
<0> cl win.com.cpp
<0> ?
<1> what are you doing with it?
<4> holy **** it works
<4> WEWWWWWWWWWWWWWWWWWWWWT



<0> a ?
<1> no no
<1> w00t
<2> where did you get these files? why do you think these files are any use to you?
<1> mAr|us_, what version of windows are you using?
<6> peterhu you don't want to know, most likely
<6> I bet win.com is essential in his OS
<0> x
<0> xp
<2> it's not
<1> then what are you doing with win.com?
<0> xp xp2
<0> sp2
<6> weird
<5> peterhu, it's seems a bit complex for what I want to do.. I only want to receive a buffer and put it in a stringstream then do a getline() and parse it.. (it's a http client)
<4> http? ;)O
<0> s
<4> omg i am so pumped
<4> it works
<1> nexact, it may be complicated at first, but if it does become part of boost, and it looks like it will, it will be the networking library to know
<4> peter im gonna post the code somewhere so you can take a look if you get a chance
<1> jill_s, i still find that statement highly dubious
<4> i know it's ugly, but it works
<4> i can work on making it better now
<4> brb
<0> i have, finished
<1> yay?
<7> peterhu - what net library?
<0> ya ..
<1> asio
<7> oh
<1> http://asio.sourceforge.net/boost-asio-proposal-0.3.6/libs/asio/doc/tutorial/index.html
<1> they've even got the boost documentation ready
<0> i have delete all files ... and i f*u*k all scr files. i let down ..
<0> to hard
<0> :D
<1> okie dokie
<5> peterhu, it support ipv6 already? :)
<4> peter you understood that
<4> i demand translation
<1> nexact, from the reference it doesn't appear so
<8> mAr|us_: please, use the return key less frequently. This is your last warning.
<1> oh
<1> come
<1> on
<1> now
<1> it's
<1> not
<1> that
<4> m
<4> you
<1> bad
<4> are
<4> a
<4> party
<4> pooper
<8> jill_s: yes, so?
<0> :|
<8> peterhu: it nearly is: http://rafb.net/paste/results/TZbSbc54.html
<1> heh
<1> in his defense, he has to pay by the character
<0> a
<1> see
<1> that means all peter says is correct
<1> which we all knew long before it was stated
<8> Now, *that* would be a good reason for a ban :P
<4> http://www.noidea128.org/sourcefiles/16037.html
<8> calc !eof
<9> !eof = while (!file.eof()) { file >> x; process(x); } // WRONG. file.eof() indicates FAILURE due to EOF. If file >> x fails due to EOF, process(x) won't have an x to process. And if it fails for some other reason (e.g. bad input), this loop may never end. Try { while (file >> x) process(x); } instead. See also: http://www.gnomesane.net/code/doc/noteof/
<4> k
<8> for deleting a file (if that is the purpose if line 205) you could use std::remove() from <cstdio>
<4> cool ok
<0> ms all


Name:

Comments:

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






Return to #c++
or
Go to some related logs:

Suse 10.2
#java
#php
#AllNiteCafe
#chatzone
#linuxhelp
#linux
#php
Tsiolkovsky pronounce
serious53



Home  |  disclaimer  |  contact  |  submit quotes