@# Quotes DB     useful, funny, interesting





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



Comments:

<0> is it abnormal to clean your washing machine and dryer as part of your normal cleaning routine?
<1> no
<1> not at all
<0> okay good
<1> did you think it was?
<0> i wasnt sure, i didnt recall ever seeing anyone washing their washer
<2> I never had a washing machine/dryer :_(
<1> do you wash it inside?
<0> well not the inside unless there is a spot or something i see
<0> mostly just the spots and such that accumulate on the outside
<1> vml: when you move out from home your mother will throw one after you cause she wont stand having you coming over cleaning all the time
<1> okai
<1> becausei mean
<1> the inside should be clean
<0> i would hope so ;]
<0> im turning into a clean freak



<0> this cant be good for me
<1> haha
<1> i've been like that all my life
<1> my mother told me i was insane
<1> but hey! who would'nt want a woman who can clean.
<0> i regularly clean my entire office, first i dust it, then wipe it all down with alchohol wipes, then with these bleach wipe things and then i polish everything
<1> wow what a piece of guy
<0> and i find myself cleaning the breakroom at work
<1> thats just being naive
<1> no one'll thank you
<0> it really bothers me though
<0> it being dirty
<0> i dont care about being thanked
<1> yeah mess and **** is so anooying
<1> i constantly think "UGH THIS NEEDS TO GO AWAY"
<0> people mess with me about it
<0> its not fun
<0> ill come in and find bits of food on my desk
<0> or dirty tissues on it
<0> and i get all spazzed out
<0> and have to clean everything
<1> yeah thats the spirit
<1> youre raised well
<1> your mother must have been a clever one
<0> haha
<0> my boss jokes with me sometimes
<0> and she'll say she licked my keyboard
<1> haha
<0> and i sit there and know she's joking with me
<0> but within 20 minutes i cant take it anymore
<0> and i clean everything
<1> haha
<0> the first time she did it
<0> i cleaned my keyboard
<0> and was happy
<1> you know what bothers me the most.. its when people have something on their shirt or something
<1> and i wipe of **** from people i dont know shirt's
<0> then i started thinking about the fact that i have like 5 keyboards
<0> i cant stand when peoples collars are messed up
<1> ugh no
<1> need system
<0> im begining to wonder if i am weird
<0> and you're just weird as well ;]
<1> haha
<1> people should be like us.
<0> agreed
<1> people who cant clean oh god
<1> i had this guy i had this partly thing going on with
<1> and he invited me home to his place
<1> and i was there
<1> and oh my god
<1> the boy couldnt clean
<1> i just left.
<1> was.. horrible
<0> yea im normally the odd one outr
<0> out
<0> traditionally women are the clean ones and men are the messy ones
<0> but every girl i live with, we argue about her not cleaning enough
<0> i dated a girl for a while, oi
<0> so id clean the house
<0> and she'd come home and do her homework on the floor



<0> and make a huge mess in a circle around her
<0> papers, books, etc
<0> the next day, she'd come home and do the same thing again in a different spot
<0> until there was no clean spots left to do it
<1> yeah what the hell is the thing with that
<1> why cant people atleast pick up their **** and CLEAN IF ITS DIRTY
<1> my god
<0> and then she'd do her homework on top of her old homework
<3> :x
<3> there is no excuse for messiness
<0> people get far too much enjoyment from seeing me spaz out with a sponge/etc
<3> sloppy code, sloppy lifestyle :)
<1> and when people come to me
<1> they arel ike
<1> this is so nice, so clean
<1> and i just.. isnt this normal.
<3> me too ;) haha
<0> one more room
<0> almost done cleaning
<0> afk
<1> hahaha
<1> ! 05 - Zoo York
<4> Hello all
<4> Would someone please look at my code? http://cpp.sourceforge.net/?show=15718
<4> when line 056 is executed (uncommented) and line 058 is commented, at works perfectly.. but when I comment line 056 and uncomment line 058.. I get a VERY different result!!
<4> (its a code that is supposed to show one green column in 12h video mode)
<0> STAT[0] is a pointer to 26?
<0> also, why do you decrement CX in the 'L' loop?
<1> how did the cleaning go`!!
<0> alright
<0> i still need to scrub the kitchen floor
<0> but i will do that tomorrow
<4> you mean I dont need to decrement CX? it will be decremented automatically?!
<1> thats not a good habit you can do it today.
<4> And yes, STAT[0] should be pointing to a value of 26d
<0> loop decrements ecx
<0> well without going through your entire macro and procedure
<0> there is the striking difference to me
<0> DCOLUMN immed, immed works
<0> DCOLUMN immed, ptr doesn't work
<4> yeah I figured that out.. why!!
<0> im not sure, i refuse to read your entire macro and block procedure ;]
<4> heh.. I dont blame you
<4> I also tried to do: mov ax, stat[0] (NEW LINE) DCOLUMN 22, ax ...... but got the same result
<0> actually im not sure
<0> i dont see anyplace that you actually use CX/H
<4> In the macro you mean?
<0> you mov h into CX
<0> then you call block
<4> yes
<0> but all block does is push/pop
<0> it never touches CX
<4> in block there is a loop.. the loop will be executed CX times.
<0> oops your right ;]
<0> missed that ;]
<0> well you need to get the immediate value into h for the macro
<4> the block procedure is a bit dirty..
<0> otherwise your loop will execute probably a lot more times than you expect
<4> whats the difference if the value is immediate or not?
<0> your handing it a pointer to a value
<0> and not the value
<4> I dont know the value.. it will be inserted in the application (I will do that later.. the code that you are seeing is just a fragment of the whole project)
<0> i understand that
<0> but you're expecting the value to be something like 26
<4> well, how do I hand it the value.. if the value is inside stat[0]?
<0> but when you call it with STAT[0] you're handing it something like DS:[offset]
<0> im not much of an intel syntax/etc person, i mostly do at&t
<0> but I think you'd want something like DCOLUMN 22, WORD PTR STAT[0]
<4> I'll try that
<0> or whatever the way to dereference is in that syntax
<4> I got the same thing!
<0> print out the value of STAT[0]
<0> or rather
<0> inside of the macro


Name:

Comments:

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






Return to #asm
or
Go to some related logs:

wine winword nothing happens
#linuxhelp
#teens
polina sery
#windows
Implimentation of voice reconition
#linux
and japanese sound similar
acollol
#linux



Home  |  disclaimer  |  contact  |  submit quotes