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



Comments:

<0> Or maybe 40 for release and 80 for debug, I forgot
<1> but I have too many songs... I need the smallest program I can find
<0> That's what you get for using a dumb bitrate
<2> VC++ 8 gets you a much smaller executable
<3> Ashe: API (object file) is 14.9K :P
<2> (by default)
<0> Just with a #pragma you can get it to 2 KB (even in VC++ 6)
<1> what pragma is that?
<0> It's a bit too long to remember by heart
<0> But it merges segments
<0> Anyway, sleep time
<1> pfft who needs sleep?
<3> it's 4:40PM here
<1> you live on the west coast?
<3> aye... Oregon
<1> it's 7:40 PM here



<1> Ashe is in France
<3> is that central or mountain? i forget which is which
<1> Eastern
<4> 740 eastern
<3> ah..
<5> Hi, i have a BIG problem with my computer, it just don't wanna start XP after reformating the dis
<5> k *disk and installing it, any idea
<4> what does that have to do with C++ ?
<1> what could be so wrong that you don't want to start the computer after you reformatted it?
<5> nothing, i need help of people that know computer well
<4> why don't you install xp?
<5> window don't start correctly! it restart the installation!
<5> rdragon, that what i'm instaling!
<4> hey, don't yell
<1> just install Linux. you should be able to find joy with many distros
<5> i don't love it, sorry...
<4> there is a problem installing? call microsoft
<1> I liked SuSE, but it didn't play MP3s natively. (what a bitch). Mandriva is pretty good too
<5> what a hell
<4> yelling "it dont work it dont work help help help!!!" isn't going to get it fixed
<1> sometimes setting the computer on fire works
<2> "what a hell"
<2> Indeed.
<1> I finally stopped at ubuntu for my linux because of its debian base and I don't need to play any media on that computer... It's a programming machine and data storage
<1> works pretty good for being an old 500 Mhz beast
<1> I just ssh into it and do my thang
<6> Someone cook my dinner please
<6> I'm too lazy
<1> what about if you just eat some little debbies
<6> If I had them
<6> I could eat soup today...
<6> ...
<7> Run, catch( ... ); ?
<8> [21:14] <ScoutMD> name 3 things you could buy at walmart to freak out the cashier
<8>
<8> [21:15] <ScoutMD> For example:
<8> [21:15] <ScoutMD> seafood seasoning
<8> [21:15] <ScoutMD> a large frying pan
<8> [21:15] <ScoutMD> 2 dozen live goldfish
<9> JB: ?
<10> wuddup people
<10> where can i find a tutorial for connecting to mySQL from C++ ... i'm kind of a C++ guy but never done anything database before
<11> look for mysql++ on google.
<12> mysql.com
<12> though mysql++ is a nicer library for c++
<10> ok thanks guys
<2> I prefer to use some other library like ODBC or whatever so that when I finally beat some sense into whoever is using mySQL, conversion is a cinch.
<13> hasn't anyone abstracted SQL queries and responses yet so that you can switch the DB witout going nuts?
<2> Well, yeah. It's called SQL.
<2> A concept with which mySQL appears to have done away with.
<2> I mean... standards. Annoying. Who needs 'em.
<13> no, SQL is a language which "returns an aribrrary collection of ****
<13> and ti's the "arbitrary collection of ****" that's the problem
<2> ODBC exists to turn the standard SQL types into a non-standard mish-mash of language-specific crap.
<2> And vice-versa.
<13> seems to me that a signature of std::vector<std::string> sql(std::string const&) should suffice
<14> anyone alive?
<2> Yep. aol.com
<14> woohoo :)



<15> good thing you asked; before you did I was experiencing both states simultaneously
<1> cn28h, what did you see when you were dead?
<13> he was on the Titanic and it had just hit the iceberg
<14> http://www.nomorepasting.com/paste.php?pasteID=56729
<15> I saw a vile of poisonous gas and a radioactive mineral? :)
<14> y that dumb if statement not working for me
<14> i neeed to make it a if and only if statement too
<13> it doesn' t ike you calling it dumb ?
<14> thats me being nice :)
<16> oh
<16> sorry
<16> He had a coding question
<13> I was just about to ask
<16> Totally my bad.
<1> gah!!!! did anyone else watch Flavor of Love?
<16> I look away for one second..
<13> that'll teach you
<13> lol
<13> GhostCSS the statemetn looks fine
<14> what i thought..itsn't working when i put in a number less thatn 9
<15> think about what you are checking
<13> I'm sorry, I don't believe you
<15> vaw?
<15> the if is if(ID>9)
<15> doesn't "work" when it's less than 8
<15> of course it doesn't
<15> less than 9
<14> hhaha ur right
<13> yeah, you put in somethe less or = to 9 and it dosn't execut the cout...that's what "working" means
<15> or even 8
<15> crap 9
<13> that's the exact problem with "doesn't work" as a bug report
<15> indeed
<13> it _works_ just like it's supposed to.... don't print anything
<14> anyone have a tutorial on how to make my program ask if i want it to run again
<13> a tutorial?
<15> I'm not sure there's a tutorial devoted to that
<15> it's kind of.. trivial
<13> cout << "Do you want to run again?";
<14> about some code that tell me how then? :)
<14> i know but I gotta put a do sttamtent somewhere or something
<13> how about putting what ever you''ve got in "main" now into another function then writing:
<13> do{otherfunction(); cout << "Do you want to run again? ";}while((cin >> somechar) &&(somechar == 'Y' || somechar == 'y');
<16> char choice; bool done; do { cout << "Do again?" << endl; cin >> choice; done = toupper(choice) !="Y" } while (!done);
<16> Or something.
<14> how can I take this
<14> and make my if statement force the program to run again for a correct number
<14> http://www.nomorepasting.com/paste.php?pasteID=56731
<13> GhostCSS we're NOT going to write it for you, both TCA nd I offered frameworks for you
<14> that ccrap was confusing
<14> my teacher showed me something like
<14> put 'do' at the beginning of the program
<14> then the line "Run again(Y/n)" then something else :-/
<13> um, what do you think TCA did?
<14> its ok i go 2 cl*** early and figure it out
<13> apparently if it's not EXACTLY what you need you can't read code
<16> Just copy both our suggestions
<16> And try them
<14> k
<17> what is the best external dvd+rw
<18> ugh
<18> my computer is annoying me.
<0> Boohooohoooo, off to work
<19> alive anyone?
<15> dead :(
<19> dang
<15> yeah, being dead ****s
<15> but I'll get over it
<19> regulars are still here..
<19> been awhile since i used my irc client
<19> its code from like 2003
<19> maybe 2001


Name:

Comments:

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






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

#linux
C++ System.string to wchar*
#AllNiteCafe
Which is colder, minus 40 degrees centigrade or minus 40 degrees fahrenheit ?
#chatzone
dj miskitin
#london
#linux
Art of C Schildt
#AllNiteCafe



Home  |  disclaimer  |  contact  |  submit quotes