@# 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> yes i think so to
<0> maybe netlimiter would work
<1> i got something like that going now, but cant get a xfer to go through
<2> if you have a friend on your ichat who can send a file xfer have them do it
<0> maybe the IP line isn't set up before the server have recieved connection accepted from the laptop
<2> yeah i know **** about ichat
<2> no chance your friend had a static ip on his laptop
<2> ?
<1> nope
<1> deff dynamic
<2> i think your friend is screwed
<1> ichat is just the mac aim client
<2> aim is the devil
<2> but then again so is mac
<2> i think this is the best thing to happen to your friend
<2> now he can get a real computer



<3> jill_s you might want to glance over http://rudbek.com/Code_gui.htm some are good, some are outdated, but it's a starting place
<4> heh
<1> *should work on same principles
<2> ok cool victor thanks a bunch :)
<5> there
<5> now i am one ***y awesome beast
<2> no peter you are just less greasy
<5> i said german, not italian
<5> BOOYA
<2> victor is my formatting ... well does it make you want to stab your pupils with a plastic spoon
<5> even opened up the windows in my office
<5> ahhh
<5> fresh air
<2> void Get_Valium (void);
<2> lol
<2> you want me to capitize :(
<3> I didn't say that... that was a set of guidelines that 7 people in a department agreed on for writing our code
<2> no i appreciate it :)
<3> nobody was happy w/ all of it
<2> the comments are hilarious
<3> I'll tell my son
<3> he wrote the entire document from our notes
<2> whatchoo talkin bout willis
<2> lol
<3> and tried to make it entertaining in the hopes people would actually read it
<2> it makes it significantly easier to read
<2> accelerated c++ is a great book
<2> but if i do more than about 5-10 pages
<5> underscores and caps, blech
<2> my eyes glaze over
<5> GetValium or get_valium, that's the only way peter flies
<2> and i have to start rereading paragraphs
<6> peterhu camelcase is worse... though I've grown accustomed to it from so much C# coding
<2> i'm a get_valium girl myself
<5> yes, camelcse is definitely worse
<6> I can't commit to camel case for functions though
<6> proper case
<2> in school we do a lot of getValium
<2> because of java
<5> why are you using camel casing in C#?
<2> they are very anti underscore
<5> that's not FxCop compliant
<6> but I gave in for variables, private object m_myVariable;
<5> ah
<5> for fields
<5> ok
<5> that's correct
<6> hehe
<6> I tried hungarian with C#
<6> but I just found it to be a PITA
<5> ick
<6> "lets see, textbox, txt or tb... ok what about custom gridviews I do.. still gv? no, wait..."
<6> it was just a nightmare
<6> everynow and then I throw a string strSomeName; in there, but for the most part I'm using string someName;
<6> I miss C++ coding :(
<6> I need to get a contract job that let's me do some f'ing c++
<5> same
<2> sorry the whiteboard program works
<2> you're beart
<5> there's nothing here for C++ developers unless you want to be a lockheed bitch



<2> beat*
<5> lockheed has forever lost me for employement as their salary was *insulting*
<2> i know this program is bigtime
<5> 1/3 paycut? pleaaaaase
<2> see now i used to do the int& x, and then rdragon yelled at me and said int &x
<2> i think it was him
<2> i'd like to blame him anyhow
<5> int& x;
<5> don't listen to him
<2> ok
<5> rdragon lives in florida
<5> you going to trust someone from florida?
<2> damnit rd :(
<2> welll he was in NY
<2> sigh!
<2> ok
<5> i do int* x; too
<2> for (int i=0; i<whatver, ... -> ++i or i++ or who cares
<5> anyone who declares more than one variable on a line = satan
<5> you should favor ++i
<2> i liked them spread out but i felt like my main was too long
<2> i do
<2> because rdragon said to
<6> peterhu yea I hate that too
<6> more than one var on a line
<2> because it's faster?
<5> in this case, the optimizer will most certainly make them equivilant
<2> something like that
<6> string x = y = z = "hello world"; makes me cringe
<5> but you shouldn't rely on that
<3> ewwwwww
<2> oh yuck i didn't do that
<3> m_ drives me to distraction
<2> string month, day, year;
<2> is that ok?
<5> especially when it has to do with non-trivial object construction
<5> vic, agreed
<6> jill_s not in my book heh
<6> I like m_
<6> it's a nice distinction
<3> jill_s the ++blah vs blah++ matters when you get away from intrinsic types
<2> so it's just good to do it ++blah and get into the habit now?
<6> Phil has adopted object name_; <-- trailing _
<3> yup
<2> or i will be swapping depending?
<6> that is awful to me
<3> [m]aniac yeah, I do that also
<3> some of the time
<5> jill: just stick to using prefix when you don't care about the return
<2> ok
<6> vawAFKhome that trailing _ kills me
<6> object* variable_; variable_->whatever();
<3> [m]aniac well leading _Upcase is illegal
<6> that _-> kills me
<2> lol
<3> I use it iff people insist on argument names that would otherwise be spelled the same
<6> vawAFKhome I didn't say it wasn't... but m_Upcase isn't ;)
<5> vic: same
<6> taht's why I use m_
<6> the trailing _ just kills me... operators get "losT" imo
<6> variable_.something(); variable_->something();
<5> i pretty much only use _ in a constructor's args
<3> yeah, I've moved to puttting the _ on the arg names of constructors
<3> let the intellisense readers deal with it
<2> is it bad to be an if else junky always using {} ? i put them on their own lines
<2> but even if it's one line i can't help but {} it
<3> I often put {} around 1 line, which then takes 3 lines
<2> yes
<2> if i don't i end up having to comment it
<2> because at quick glance i can't get the thought again
<5> i skip {} iff the if and else statements are one line
<3> but not always
<6> vawAFKhome I put {} around one line too
<6> and I prefer { and } on their own line


Name:

Comments:

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






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

#MissKitten
#linuxhelp
#linux
#linux
#MissKitten
#linux
#squid
#php
#skype
skype



Home  |  disclaimer  |  contact  |  submit quotes