@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5



Comments:

<0> you?
<1> the same, school.
<0> studying...?
<2> night
<1> good night, EwIck.
<1> krenz comp science. you?
<0> take it easy
<0> don't know yet
<0> probably computer science
<1> which other are you thinking of?
<0> mathematics/space science/philosophy lol
<0> i want to do it all
<1> hehe, I had the same problem.
<1> The harder was comp. science over math.
<0> yeah
<0> i like computers though



<0> hey TCA
<0> what's #report-abuse about?
<3> Presumably reporting abuse.
<0> ahh yes
<3> Child abuse, animal abuse, genital abuse.
<0> lol
<3> Perhaps it's dedicated to spousal abuse, verbal abuse, or report abuse.
<0> it's invite only, so only a select few report the abuse
<0> ...hmmm interesting
<3> Nice.
<3> Invite only...isn't that a bit like locking people out of the police station (with no windows, or way to phone in) and get help?
<3> I saw that new Pink Panther today
<0> in this case, i guess so
<0> lol
<0> the "new" pink panther?
<3> Yeah.
<0> they came out with a movie?
<3> Yup. Steve Martin looks kind of funny with a dark mustache and white hair.
<3> Not as good as the original, yet it has some funny parts.
<3> Slightly different atmosphere to it.
<3> Cluseau solves the case, but he's basically being used by Dreyfus (Dreyfus is a lot more kinivving in this one)
<3> He solves the case with his intellect, rather than the cl***ic "come to the wrong conclusion, yet somehow accidentally solve the case"
<3> There was a big James Bond reference, apparently with the new James Bond actor, who got replaced recently.
<3> The one who got replaced, not the one who got selected. That was kind of funny.
<0> woah
<0> sounds cool, but i've never seen the first one
<3> The plot was modernized a bit, involving soccer players, china, and stars...that sort of thig
<0> hahahaha wait
<3> the first was funny (it revolved around the Pink Panther Diamond being stolen from a museum)
<0> i get you with soccer players and celebs...
<0> but chine!??!
<0> *china
<3> International soccer.
<0> the wwf wrestler correct?
<3> No, China, People's Republic of.
<0> oh
<3> I forgot all about the wrestler...
<3> Is she still doing that?
<0> so did I, but you can only wonder about one hit wonders
<0> i wouldn't be surprised if she did end up in pink panther
<0> no idea
<3> The acting was decent.
<3> Cluseau should've been a little more naive.
<0> don't know who that is
<3> The detective.
<3> The main character.
<3> Peter Sellers was the original. Very funny. Lots of disguises. That was one of the funny things.
<3> I actually liked "Return of the Pink Panther". That one was hilarious.
<0> it amazes me how pink panther has a series of movies
<3> It was really funny.
<0> i don't know where you are from, but here, pink panther was _not_ cool
<3> And where is "here"?
<0> the states
<3> Alright, and since when was the Pink Panther not cool? I always liked it.
<0> in my generation at least
<0> it was just a cartoon
<3> And what is your generation?
<3> I liked the cartoon, too.
<0> I've never watched it
<0> so i really can't judge
<3> Watch it sometime.



<3> It's funny, but it has a very visual sense of humor.
<0> imight give it a try
<1> Ni si quiera no por el pacto que tengo con satans.
<1> Lalala.
<4>
<1> I'm bored.
<5> hmm does intel cpu generate an exception if you are trying to read from an address larger then whats physically availible?
<6> no
<7> address will be wrapped
<7> (can be wrapped)
<5> ah that explains it
<1> voider what does wisebot use to asm/dasm?
<7> nasm
<7> ?? nasm
<8> voider: nasm -> Netwide ***embler - open source - http://nasm.sourceforge.net
<5> voider, how did you get the amount of physical memory in your OS? int 15h AX=0E820h?
<5> I'm finding it odd that it returns a list that doesn't add up to whats physically there..
<7> i use grub
<7> it's too complicated/time consuming to detect it ourself, too many subtilities exists
<5> is there some kind of standard hardware to know the memory size, i think ill look up on this because int 15h is next to useless, does not list the video rom, or its ram just its bios rom and thinks everything else is useable memory
<5> also one thing confuses me, if you got say 1meg of ram, with nothing but the bios is there, so the bios addresses itself at F0000h-FFFFFh now is that area is ROM shouldn't i be able to have an extra 64k? Like being able to access 100000-10FFFFh?
<5> ahh you can test address lines
<9> I need a canadian
<1> Hello Int3.
<10> Hi vann.something
<1> Pero no olvide que la quiero, no quiera que la olvide, si cada vez que puedo me pierdo en el sonido de su voz.
<1> How are you Int3 ?!
<10> ;)
<10> i am doing fine, how about you vann.kid ? :D
<1> I'm great :_)
<10> :)
<1> Ugh, I forgot today is a friend's birthday, and I don't have his phone number
<10> thats bad!
<11> hi, can someone help me interpret some dissasembled code?
<12> sorry, no pinguins allowed.
<11> :/ why?
<12> :P
<12> past your code?
<11> 0x080483ea <main+0>: push %ebp
<11> 0x080483eb <main+1>: mov %esp,%ebp
<11> 0x080483ed <main+3>: sub $0x8,%esp
<11> 0x080483f0 <main+6>: and $0xfffffff0,%esp
<11> what do the sub and add do?
<12> sub subtracts 8 from esp, and add adds whatever to esp
<12> the and here is a bit mask to ensure esp is aligned
<11> what is a bit mask?
<13> the sub gets the first C parameter
<11> strange... the program is like this...
<11> (the c program)
<14> thats just allocating stack space for the locals in main
<14> and aligning the stack (the and)
<12> listen to tio
<13> yar
<11> there are no locals in main, just a function call
<11> :/
<14> needs room for function arguments likely
<11> the function looks like void func(void)
<11> :/
<14> 4 bytes plus alignment is needed, then
<11> what is alignment?
<12> this one allocates 8
<14> gcc tends to be 16 byte aligned by default
<12> why even bother to align?
<14> performance
<11> what is this alignment?
<12> more performance to be on a 16 byte aligned than a 4?
<12> would be ****ed by the first push anyway
<14> it wants local variables aligned
<12> i still dont see where the performance comes into play
<11> lea 0xffffffd8(%ebp),%eax
<11> what about this?
<11> what does lea do?


Name:

Comments:

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






Return to #asm
or
Go to some related logs:

site:http://www.quotesdb.info armitage
#MissKitten
hash jien
www.mesota rdsbv.ro
javascript onfocus onlostfocus
#chatzone
#php
#linux
#php
#MissKitten



Home  |  disclaimer  |  contact  |  submit quotes