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



Comments:

<0> inline void MatSparse::Jacobi1it(Vector& xnew, const Vector& xold, const Vector& b) {}
<1> America,
<1> Where your car is an extension of yourself.
<1> America,
<1> So called Free Market Economy and Conspictuous Consumptive Maniacs.
<1> America,
<1> Land of the free.
<1> Volvo, you're a wealthy liberal who makes time for family, starbucks and yoga.
<1> Honda Civic you cross your ts and dot your i's and pay your bills on time.
<1> Chevy Camaro you're the new Firebird, watch wrestling and think girls will like you for your car.
<1> Volkswagon Jetta you're spunky but quick to turn on friends.
<1> Ford Explorer you're a protector of family, you keep a gun in a safe by your bed.
<1> Nissan X-Terra you look tough but hate getting your nails dirty.
<1> Toyota Tacoma you're the Bruce lee of pickups, only not cursed.
<1> Chevy Blazer, you're an ***hole, you think you are a rugged individual but you're not, you're a fat ***hole.
<1> Land Rover, your uncanny largeness is unnessecary for the fjordless 13 mile traverse to the mall.



<1> Jeep Wrangler, you're all factory and no glory. Sorry.
<1> Here's my exit. End Poem.
<2> anyone have a copy of the C standard handy?
<3> ...blah blah blah... End Poem.
<1> Not me
<3> not me either
<1> I like the Land Rover one
<1> But she got them all pretty close
<2> JBlitzen what about those of us that don't put the gun in a safe next to our bed?
<1> I'm not sure
<2> but have the gun next to the bed
<1> But I don't drive a ford explorer so it's okay
<2> me neither
<0> rdragon, is it cmath or math.h ?
<0> doesn't really matter, but want to make it look more C++-ish
<4> Hello, Could I hire a programmer here?
<0> yes, me me
<0> everyone else shut up :)
<4> Okay
<5> i charge $300/hour
<6> $299 here
<6> .99
<5> you get $1 of quality more per hour out of me ;)
<6> haha
<7> I learned the other day, that if you're good, $300/hour is not the concern of the company hiring you
<4> Okay.. Well I have no idea how many hours it would be in total
<5> if he's coming to irc looking for employees, he's probably pretty damn desperate, or in school looking for someone to do his homework
<6> or she
<8> LOL
<6> let's be fair here
<8> does anyone have a key for adobe 7 pro?
<5> right, my mistake
<8> LOL, sorry
<9> I bet Adobe has the key
<6> er
<8> eh
<8> um more like looking for a crack or something
<8> heh
<5> no warez here :)
<6> looking for a kickban too
<6> heh
<9> http://store.adobe.com/store/main.jhtml
<5> it's hard to kickban her, since she's virtually the only girl that comes here, heh
<8> lol
<8> i dont even come here often
<8> just thought i'd ask...
<5> no warez support here, sorry heh
<8> sorry for asking
<9> good idea: come and ask a bunch of programmers how to steal some software. ;)
<2> corstan for normal use, the C++ standard library doesn't have any headers with .h in them
<0> ok, I use #include <cmath>
<2> and you still need to get a real book
<0> vawjr, do you know why line 18 doesn't work as intended: http://rafb.net/paste/results/mOve1H25.html ?
<2> what's intended?
<0> do I have to copy the cl*** object MatSparse?
<0> intended is that the object method should be called
<0> I'll paste the error
<5> why wouldn't the method be called?
<0> it is but ****s up
<0> or I am



<5> then you've got a bug
<5> or thousands
<2> someday you should learn about <algorithm>
<5> you can't just throw a few lines at someone and say 'is this what I wanted to write?'
<2> and function objects
<2> of course he can, he just did
<0> http://rafb.net/paste/results/G2R75077.html
<5> looks like you're trying to call a non-const member function on a const object
<2> does Jacobilit change m ?
<5> heh, that l is a 1
<2> 9 pt Ariel doesn't distinguish
<2> and I guess I didn't look close enough at the browser
<0> vawjr, no it doesn't
<0> it's a cl*** member function
<2> does it modify the instance?????
<0> it just uses data members without modifying hem
<5> then it should be const
<5> again, get a book and learn this stuff
<2> you REALLY need to get a REAL book on this language
<0> don't really see the point of declaring a const function
<2> you're wasting way too much time fighting pretty fundamental stuff
<0> what is the point?
<0> I am not changing anything in the object
<2> so you ****ing learn something
<5> if you had a book, you'd know
<0> it doesn't modify the instance?????
<0> err
<5> so what?
<5> it's a non-const member function. period.
<5> the compiler doesn't try to analyze your code
<2> it may not be able to even SEE the code
<2> that's why you tell it
<5> right - you might be calling a library function - you don't need anything more than the signature to be able to call a function
<0> vawjr, what does it do telling the cl*** member function to be const?
<5> why won't you just get a book?
<0> that it should change any non-const variables?
<0> I mean shouldn't
<5> there's no 'should' or 'shouldn't', there's 'can' and 'cant'
<0> dong
<5> and even then, a const member function p***ed this as a T const* const instead of a T* const
<5> p***ed = p***es
<5> and before you ask what the difference is - get a book and look it up
<5> i can't imagine why you are so stubborn that you won't pick up a book and get over all of this fundamental stuff in not much time
<9> kind of a long shot, but any of you guys use yacc?
<9> (I've got sort of a strange issue)
<8> isnt yacc used in unix?
<9> yeah
<9> I'm using it on Solaris
<8> o ok
<9> writing a shell :)
<0> const functions: "do not alter non-static data members of cl***, unless declared mutable
<0> I just don't see the point of declaring that function const, when it isn't altering any data members
<9> because if it's not declared const you can't invoke it on a const object
<9> even if it doesn't modify anythning
<0> aha
<2> cn28h I have in the past... .I don't like it
<5> corstan it's exactly the same as declaring anything else const
<9> ever run into a problem where it gives you a broken pipe?
<9> (when running yacc)
<2> corstan yoiu should stop your sentance at "I just don't see" because you sure don't
<0> no, that's why I say that
<5> if you had a book, you wouldn't even have to ask because you would already understand
<2> what DO you think you should declare a function that DOES alter data memebers?
<2> or are you so dense that you don't see a difference?
<2> cn28h I've never used it w/ a pipe
<0> you seem pretty dense atm.
<2> corstan look ****head....pay real ****ing close attention
<9> I didn't think I was using it with a pipe
<2> _I_ get to insult you becauseof that little @ in front of my name
<9> but apparently it's using a pipe somewhere
<0> this are getting pretty smokey in here
<2> not the other way around
<0> things
<2> your'e wasting EVERYONE's time


Name:

Comments:

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






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

#javascript
What is the name of the engine developed for the Harrier jump jet ?
#MissKitten
virtual memorry
#linux
#c++
#teens
#skype
What is the modern day name of what the Romans called Aquae Sulis
#linux



Home  |  disclaimer  |  contact  |  submit quotes