@# 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



Comments:

<0> 5.2.3790.1830.15.PlatformSDK_Svr2003SP1_rtm.img
<0> This is the SDK that i can burn ?
<1> Yes
<0> Great
<2> hi folks
<2> whatsup?
<2> who was here yesteday?
<3> lol
<4> hehe
<5> what's so damned funny?
<6> what about yesterday?
<2> alltime the channel is boring.. say something
<6> and get the **** out of bookz or leave here
<2> why?
<6> we don't approve of warez
<2> but i wont touch on warez here of course



<7> point.missed
<6> you advertize it in your whois
<2> damn skeptical on this hum? i'm going out
<2> i didn't said nothing about warez here
<8> o.o
<6> wow, that was an IP that started with 00
<6> nevermind... the sun on the monitor was obscuring the leading 2
<4> you can download glarestopper from www.glarestopper.net and you don't have worry about the sun
<4> j/k :)
<6> is that anything like nosmoke.exe that you run if smoke starts coming out of your power supply?
<4> yea same people made them
<6> ah
<4> they are the same people that wrote that document on how virus scanners take up more memory than viruses
<5> ?
<9> is there ***ert() function in c++?
<10> you can write one, or use one that someone provides
<10> but it's not a part of c++
<9> ic thanks
<6> wrong
<6> it's part of c++
<6> the entire C runtime library was incorporated into C++
<10> ***ert() function ??
<11> Where's a good place to buy a computer these days?
<6> the ***ert macro
<11> Big places like Best Buy, or clone shops?
<11> For, like, normal humans, not people like us who know exactly what we need
<1> I bought my last one at Fry's
<1> And I wouldn't go anywhere near a Best Buy anymore.
<1> (Since I have Fry's now)
<11> nod
<5> new egg
<5> loser
<5> www.newegg.com
<6> newegg for my last one also
<11> In person, not mail order or anything
<5> order online
<5> and stop being a woman
<5> and build it yourself.
<11> This is for a woman, you homo
<11> My aunt
<5> so?
<12> Does she care where you got the pieces?
<11> So I don't want to saddle them with something they have to ship back and forth for warranty work
<11> Also like to have it up and running this week
<1> Go to Fry's.
<1> http://www.frys.com/localframe.html
<9> vawjrwrk: how to use the ***ert macro?
<11> Yeah, I thought about Fry's
<11> Their prices good?
<1> Yep.
<11> How about support?
<1> If you're industrious, they sell everything you need to build one.
<11> I'm not
<1> I don't know. I haven't used support.'
<1> (I rarely do)
<11> Not for aunts and uncles, anyway
<12> The first time I walked into a Fry's I was blinded by sensory overload. They have *everything*
<11> Yeah, me neither, so I don't know what to look for in that
<11> Yeah, Fry's is like wonderland
<11> But they do treat you like a thief
<11> And I hear horror stories of bad quality stuff there



<11> But if you ever want an obscure DVD, they have it
<11> I guess I'll go with them, then
<11> Nice and close that way, too
<6> I get my obscure DVDs from DVDplanet
<11> Can't you imagine you save any money after shipping
<11> -you
<11> These folks only really use email, word, excel, and tax preparation software
<9> how come after declaring a vector with capacity 10 and inserting an element in the beginning the capacity grows to 20?
<11> What kind of puter should I look for
<11> Because resizing the storage space is a slow operation, vidkid, and its faster to allocate double the memory once than to allocate the current size +1 ten times
<11> Ten times faster, in fact
<11> Which = great
<5> buy them something from HP or Compaq then.
<6> vidkid you tried to increase the size
<9> but i just inserted one element to the vector, and the initial cap is 10
<6> depends on how you wrote the code
<6> how did you define the vector?
<9> vector<int> V(10);
<9> V.insert(V.begin(), 3);
<6> that creates a vector with 10 int already in it
<1> A push_back would go to position 11
<1> Which would require a new allocation
<6> now you try to put an 11th on at the beginning
<11> AMD Athlon 64 X2
<11> Opinions
<6> vidkid what the hell are you doing??
<13> how can you use fstream.h to check if a file exhists?
<9> oh.. so what values do the 10 ints have? garbage?
<6> D|gBusy don't konw..... fstream.h isn't standard
<1> No. 0
<9> just trying to learn vector
<6> vidkid you really need to get a book
<13> :(
<9> any good recommendation?
<6> I recommend the books at http://rudbek.com/books.html
<13> can you use anything else to check if a file exhists?
<1> Start with the first one
<13> dont necessarily need fstream.h
<6> D|gBusy 1) quit uisng vc++6.0
<9> you read all these?
<6> 2) start using the standard headers
<6> vidkid and own them, yes
<9> ok thanks
<6> 3) checking whether a file exists is somewhat problematic... what do you plan on doing with the information?
<13> just need to know if its been created
<13> my binary tree seems to be loading from a file that dont exhist
<1> Open it as read-only. If that succeeds, the file exists.
<13> and coming out with rubbish
<13> ok
<1> And apparently, you're already doing something wrong.
<1> Read this:
<1> http://www.parashift.com/c++-faq-lite/input-output.html
<14> Solamente, but if it fails, it doesn't mean that the file doesn't exist
<13> cheers
<1> gribouille: I didn't say it did.
<6> D|gBusy when you OPEN a stream you find out whether you can read it
<6> gribouille but if you're trying to read a file the only interesting thing is "can I read it?" not "does the file exist?"
<1> Files are like little green men. Their existence may only be proven, not disproved.
<14> vawjrwrk, but if you can't read it, what do you do ?
<5> core dump
<13> thing is if its not there it creates the file
<13> dont want to do that
<1> That's why I said open it as read-only.
<13> ok
<13> :)
<6> gribouille that's up to the program....what do you do if the file "isn't there" ?
<11> Wish I could remember who I had build this system
<14> D|gBusy, to check that a file exists or not, you must use os specific functions
<11> Oh, how about that
<5> build it yourself you loser.
<11> Logo on the front of the box
<5> what's wrong with you?
<11> Build this
<6> gribouille but NOBODY CARES IF IT'S THERE


Name:

Comments:

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






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

#AllNiteCafe
#AllNiteCafe
#chatzone
gfhyu
jmlewis.org
#linux
#skype
#chatzone
#linux
#linux



Home  |  disclaimer  |  contact  |  submit quotes