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



Comments:

<0> Proto Local Address Foreign Address State
<0> TCP jr38283:1035 undernet.xs4all.nl:6667 ESTABLISHED
<0> C:\Documents and Settings\Administrator>
<1> you're toast
<1> it won't show estabolished
<1> established
<1> i don't know why i can't spell that word
<1> something psychological
<1> always type the o
<0> Well, whatever
<1> netstat -a
<1> if i recall
<1> i'm not on windows right now
<0> This guy obviously has his self-worth tied up a little too tightly with his puter
<0> Neat
<0> Wonder what all these results mean



<1> 10000 UDP packages with 100 ms delay haha
<0> C:\Documents and Settings\Administrator>netstat -a
<0> Active Connections
<0> Proto Local Address Foreign Address State
<0> TCP jr38283:http jr38283:0 LISTENING
<0> TCP jr38283:epmap jr38283:0 LISTENING
<0> TCP jr38283:https jr38283:0 LISTENING
<1> that's like bf2 level traffic
<0> TCP jr38283:microsoft-ds jr38283:0 LISTENING
<0> TCP jr38283:netbios-ssn jr38283:0 LISTENING
<0> TCP jr38283:1035 undernet.xs4all.nl:6667 ESTABLISHED
<0> UDP jr38283:microsoft-ds *:*
<0> UDP jr38283:3456 *:*
<0> UDP jr38283:netbios-ns *:*
<0> UDP jr38283:netbios-dgm *:*
<1> if not less than
<0> UDP jr38283:isakmp *:*
<0> UDP jr38283:2537 *:*
<0> :\Documents and Settings\Administrator>
<0> I suppose I've already given away the fact that I'm logged in as admin
<0> http://www2.fileplanet.com/images/150000/158501ss.jpg
<0> Cool ^
<0> I wonder what epmap is
<0> There should really be a windows shortcut for google
<0> [22:40] <Equilibreum> hahhaha
<0> [22:40] <Equilibreum> your getting p00n3d
<0> [22:41] <Equilibreum> damn n00b
<0> [22:41] <Equilibreum> i told you not to mess with the real 31337 h4x0rz
<0> Gotta give this guy credit for being so stupid and yet still summoning the mental power necessary to breathe
<1> well
<0> Hey, you'd like this guy
<1> i can definitely verify that you are pwn3d
<0> [22:42] <Equilibreum> texas is full of rednecks
<0> [22:42] <Equilibreum> death to rednecks
<0> [22:42] <Equilibreum> death to USA
<1> well, he got the first two statements correct
<0> Well
<0> What the hell's this
<0> http://tor01.nycbug.org/
<0> [22:34] * Dns resolving 64.90.179.108
<0> -
<0> [22:34] * Dns resolved 64.90.179.108 to tor01.nycbug.org
<0> That's what I got when I dns'ed him
<2> a tor node
<0> What's that
<2> http://tor.eff.org/
<1> an anonimizer
<2> anonymous proxy system
<1> apparently, jb, you can sniff out ***hats better than i
<0> Well, I'm a Republican, it comes with the territory
<1> probably because you spend so much time sniffing ***
<3> lol
<3> death to rednecks
<3> haha
<1> have you been pwn3d yet jb?
<0> I'm on pins and needles
<1> need some new snazzy wallpaper
<1> that is a testimony to what a cool bastard i am
<0> Except that testimony is plural
<0> The word a non-gaey would have used is "testament"
<1> i'm that cool, bitch



<3> HAHA
<0> s/cool/gaey
<3> I believe we have peterhu == pwnt
<3> mmmm...sea otter..
<1> that's impossible
<1> for i am the pwner
<3> I'm sorry khan, just calling it like I see it
<3> that testimony comment pwn3d joo
<0> [22:55] <JBlitz3n> RETARD
<0> What a maroon
<0> JBlitz3n is ~hit@64.90.179.108 * Take a hit from the bong
<1> WHY ARE YOU TALKING TO YOURSELF?!
<1> oh
<0> This is not helping your pro-legalization position
<0> Neither was that
<1> yeah, you can't be a total ****wad without pot
<4> hey guys
<4> just starting to learn c++, and tried the ide dev-c++ for windows... But it uh.. doesnt seem to be very good in that it says iostream is undefined when I include iostream :/
<4> any ideas?
<5> #include <iostream>?
<6> Hey guys!
<6> I got a small problem with this : http://www.noidea128.org/sourcefiles/16046.html
<6> At line 236: return prochain;
<6> When I try to compile it, it says "undeclared (first use)"
<6> But all the other calls to prochain work fine ...
<6> ?!
<5> you need to define get_prochain in the rendevous cl*** declaration
<5> and it will need a return type
<5> oh my bad, you have
<6> :)
<4> TradeMark: Yeah thats the line im using to include
<4> then inside my main it says cout isnt defined
<6> The problem is not with get_prochain(), but with the return prochain;
<6> It says prochain is undeclared
<6> But it is declared, and being used by other functions
<5> make it rendezvous* rendezvous::get_prochain() in the method declaration
<5> you have the incorrect method header
<5> Hajuu: std::cout
<5> Hajuu: put "using std::cout;" at the top of your program if you're being lazy :P
<6> Thanx TradeMark!!
<5> PM2: change line 234 to read "rendezvous* rendezvous::get_prochain()"
<5> oh, cool
<4> std::cout << "Hello World!\n"; -- "stray \148" ?
<5> what's the -- "stray \148" business
<4> thats the error it gives me
<5> o_O
<6> Hajuu : What compiler are you using?
<5> odd.
<4> Im using mingw32
<6> Hajuu : Try this : std::cout << "Hello World!" << std::endl;
<6> Hajuu : Don't forget to add either using std::endl; or using namespace std; at the top
<5> mm that'd be it.. odd that it doesn't recognise a newline though :/
<6> Yeah
<5> PM2: the reason you put "using std::cout" is so you can just refer to it as "cout" without the std:: part
<7> using namespace std; is not necessary for that line
<4> ooh ok that works
<6> TradeMark : I know :)
<6> Hajuu : It works?! _
<8> I winder why the string in the STL have no toLower() toUpper() etc... it seem like such a basic need
<4> methinks I need alot newer book than this old one haha
<6> Hajuu : No, \n should work!
<8> so now, i have to use _strcmpi()
<7> likoo, because those functions depend on the locale used
<5> Hajuu: why not download vs .net 2005 express? :/
<7> std::transform(s.begin(), s.end(), std::tolower); // should work
<6> Hajuu : He has a point ... it is free!
<4> Because it wants me to download 200mb of stuff to go with a 2 meg application!
<4> screw that
<5> but it's much nicer.. and works :P
<6> Hajuu : Then maybe you can try Dev-C++ ?
<6> Hajuu : That's what I'm using! Works well! ... at leat most of the time!
<5> that's what he's using
<4> haha


Name:

Comments:

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






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

#chatzone
#chatzone
What is the term for the physical disintegration of a nuclear reactor's core
#chatzone
#linux
#linuxhelp
#java
#php
japain population
#AllNiteCafe



Home  |  disclaimer  |  contact  |  submit quotes