Comment On Turning the Lights Out

Despite the eighty-hour weeks, the relatively low pay, and the constant threat of being whipped if you don’t code fast enough, there’s something appealing about developing videogames professionally. After all, if videogames are superfun, then being immersed in them fourteen hours a day is basically heaven. [expand full text]
« PrevPage 1 | Page 2 | Page 3 | Page 4Next »

Re: Turning the Lights Out

2011-07-13 09:04 • by schmitter (unregistered)
By law, every installer should include a game.

Re: Turning the Lights Out

2011-07-13 09:05 • by Heh (unregistered)
Normally, this would be a frist comment, but I hate those, so it isn't.

Re: Turning the Lights Out

2011-07-13 09:28 • by eVil (unregistered)
353284 in reply to 353279
schmitter:
By law, every installer should include a game.


Most of them do. Its called "Guess how long it takes for the bar to go from empty to full".

This game becomes similar to the halting problem when installing anything enterprisey.

Re: Turning the Lights Out

2011-07-13 09:29 • by flop
Isn't that a similar problem to http://projecteuler.net/index.php?section=problems&id=331 ?

Re: Turning the Lights Out

2011-07-13 09:35 • by Wodoo (unregistered)
"(it includes an .exe, too)"

It should say: "(it does NOT include an .exe)" =P

Re: Turning the Lights Out

2011-07-13 09:37 • by NyuSan (unregistered)
Solving it is rather trivial once you reduce to linear algebra.
With a little more work, you can get a minimal solution (least possible number of cases flipped).
The solution I have in mind even generalises to games where the topology isn't a grid (ex. with hexagonal cases).

Hint: Actions over the board (flipping a case) are associative and commutative.

Re: Turning the Lights Out

2011-07-13 09:38 • by Slicerwizard (unregistered)
You might want to fix those bogus != operators.

Re: Turning the Lights Out

2011-07-13 09:40 • by Jupiter (unregistered)
Alex you cheat!

Re: Turning the Lights Out

2011-07-13 10:27 • by Careful (unregistered)
By Law you must pay the patent holder of the game in an installer patent, that's why you don't see it.
In the mid 90's they were everywhere and then one company started suing for licensing fees and one.

Re: Turning the Lights Out

2011-07-13 10:28 • by Patrick (unregistered)
A cleaner way to toggle a bool, especially an array with arithmetic in its indexer, is
LIGHT_ARY[index + GRID_SIZE] ^= true

Re: Turning the Lights Out

2011-07-13 10:30 • by C-Octothorpe
353296 in reply to 353294
Careful:
By Law you must pay the patent holder of the game in an installer patent, that's why you don't see it.
In the mid 90's they were everywhere and then one company started suing for licensing fees and one.
Well, don't just leave me hanging... And one what?!

Re: Turning the Lights Out

2011-07-13 10:34 • by Customer Support (unregistered)
Thanks for this... really, thanks... I can just picture my first support call next week...

Customer: I'm trying to install some new software
Me: Okay, yes...
Customer: And the installer is running, and it's got all these buttons on it
Me: I see, what's the problem
Customer: Well, whenever I click one of the buttons to turn it off, a bunch of others turn on
Me: Huh, that's odd... what do the buttons say
Customer: Nothing, they're blank
Me: So... why are you pressing them?
Customer: Umm... can't you just come and have a look?
Me: Alright, give me a few minutes
...
...
...
Two hours later
Me (for the 1000th time): No, that's the point... it's a logical puzzle, you have to pick the right button to press to turn them off. No, it's not a bug. No, I can't write to the developer to get them to fix it. No, your computer's not broken... What do you mean, you've never heard of puzzles?

Captcha: Genitus - A disease my customers defiantly don't have

Re: Turning the Lights Out

2011-07-13 10:39 • by Ken B. (unregistered)
Is it me, or does the ToggleLight() function not toggle the button you clicked?

Re: Turning the Lights Out

2011-07-13 10:41 • by Ken B. (unregistered)
353299 in reply to 353296
C-Octothorpe:
Careful:
By Law you must pay the patent holder of the game in an installer patent, that's why you don't see it.
In the mid 90's they were everywhere and then one company started suing for licensing fees and one.
Well, don't just leave me hanging... And one what?!
It's just "one". They had an excess of zeros, and felt that, in addition to the license fees, you needed to give them a one as well.

Re: Turning the Lights Out

2011-07-13 10:45 • by Rootbeer

A nice example of the "Integration of Concerns" anti-pattern.

Multitasking work environments have been common on computers for 25 years or more, and reliable ones for at least 10. If the person doing the install is interested in playing a game, they will launch a separate game program!

This is how cruft happens.

Re: Turning the Lights Out

2011-07-13 10:46 • by BentFranklin
353301 in reply to 353284
eVil:
schmitter:
By law, every installer should include a game.


Most of them do. Its called "Guess how long it takes for the bar to go from empty to full".

This game becomes similar to the halting problem when installing anything enterprisey.


Super fun plus best humour!

Re: Turning the Lights Out

2011-07-13 10:55 • by trtrwtf (unregistered)
353303 in reply to 353279
schmitter:
By law, every installer should include a game.


And the installer should not complete until you win the game, or solve the puzzle.

That way you reduce the set of users to those capable of solving a moderately complex mathematical problem, which might make your life easier later on.

Re: Turning the Lights Out

2011-07-13 10:55 • by C-Octothorpe
353304 in reply to 353279
schmitter:
By law, every installer should include a game.
My favourite installer game is "Did I crash or am I still installing". I find that SQL Server 2008 and VS2005 installers are the best at this game.

Re: Turning the Lights Out

2011-07-13 10:55 • by Henning Makholm (unregistered)
Column-major order? Come on, that's just sick.

Re: Turning the Lights Out

2011-07-13 10:56 • by Maurits
353306 in reply to 353295
Patrick:
A cleaner way to toggle a bool, especially an array with arithmetic in its indexer, is
LIGHT_ARY[index + GRID_SIZE] ^= true


Is ^ defined for bools?

Here's a another clean way:


void toggle(bool &b) { b = !b; }
...
toggle(LIGHT_ARY[index + GRID_SIZE]);

Re: Turning the Lights Out

2011-07-13 11:24 • by henke37
In case it is too easy, here is the overly generalized version that fits all possible variants of the puzzle.

There is a set of N items. Each item can be in one state. There is a set of operations that you can perform that changes the state of some items, possibly depending on the state of some items (may include the first set of "some items"). Find the shortest sequence of operations to reach a target state.

Re: Turning the Lights Out

2011-07-13 11:43 • by snoofle
353314 in reply to 353303
trtrwtf:
schmitter:
By law, every installer should include a game.


And the installer should not complete until you win the game, or solve the puzzle.

That way you reduce the set of users to those capable of solving a moderately complex mathematical problem, which might make your life easier later on.

+1 ^^^ this ^^^

Re: Turning the Lights Out

2011-07-13 11:52 • by lethalronin27
well, i guess i wont be getting any actual work done for the next few hours

Re: Turning the Lights Out

2011-07-13 12:10 • by mcv (unregistered)
353319 in reply to 353279
schmitter:
By law, every installer should include a game.

More importantly, so many games nowadays take ages to start up. I wouldn't mind all the loading screens and diversionary movies to be replaced with cool little logical games like these.

Xzibit would probably have a fit, though.

Re: Turning the Lights Out

2011-07-13 12:18 • by Mason Wheeler
353322 in reply to 353284
eVil:
schmitter:
By law, every installer should include a game.


Most of them do. Its called "Guess how long it takes for the bar to go from empty to full".

This game becomes similar to the halting problem when installing anything enterprisey.


Argh! I'm *so* sick of people invoking the Halting Problem when talking about progress bars. The Halting Problem only applies to Turing-complete systems that are capable of getting into an infinite loop. An installer, or anything else that you would (reasonably) want to use a progress bar for, is by definition a linear task that always halts, either by completing, being canceled, or aborting on an error. Invoking the Halting Problem here is just technobabble, usually used to try to hand-wave the fact that whoever wrote the progress code is incompetent.

Re: Turning the Lights Out

2011-07-13 12:33 • by trtrwtf (unregistered)
353325 in reply to 353322
Mason Wheeler:
eVil:
schmitter:
By law, every installer should include a game.


Most of them do. Its called "Guess how long it takes for the bar to go from empty to full".

This game becomes similar to the halting problem when installing anything enterprisey.


Argh! I'm *so* sick of people invoking the Halting Problem when talking about progress bars. The Halting Problem only applies to Turing-complete systems that are capable of getting into an infinite loop. An installer, or anything else that you would (reasonably) want to use a progress bar for, is by definition a linear task that always halts, either by completing, being canceled, or aborting on an error. Invoking the Halting Problem here is just technobabble, usually used to try to hand-wave the fact that whoever wrote the progress code is incompetent.


An installer can't get into a loop? What kind of incompetent morons have you been working with? Any competent moron can turn a simple installer into a loop without thinking about it - which is how your competent moron does anything.

Re: Turning the Lights Out

2011-07-13 12:46 • by Jay (unregistered)
353327 in reply to 353322
Mason Wheeler:
eVil:
schmitter:
By law, every installer should include a game.


Most of them do. Its called "Guess how long it takes for the bar to go from empty to full".

This game becomes similar to the halting problem when installing anything enterprisey.


Argh! I'm *so* sick of people invoking the Halting Problem when talking about progress bars. The Halting Problem only applies to Turing-complete systems that are capable of getting into an infinite loop. An installer, or anything else that you would (reasonably) want to use a progress bar for, is by definition a linear task that always halts, either by completing, being canceled, or aborting on an error. Invoking the Halting Problem here is just technobabble, usually used to try to hand-wave the fact that whoever wrote the progress code is incompetent.


Please take a valium and call me after you've Googled the word "joke".

Re: Turning the Lights Out

2011-07-13 13:12 • by Ed (unregistered)
353328 in reply to 353284
Combine with "Guess how many times the bar will go from empty to full" for twice the fun.

Re: Turning the Lights Out

2011-07-13 13:40 • by Hating Mason right now (unregistered)
353329 in reply to 353322
Mason Wheeler:
eVil:
schmitter:
By law, every installer should include a game.


Most of them do. Its called "Guess how long it takes for the bar to go from empty to full".

This game becomes similar to the halting problem when installing anything enterprisey.


Argh! I'm *so* sick of people invoking the Halting Problem when talking about progress bars. The Halting Problem only applies to Turing-complete systems that are capable of getting into an infinite loop. An installer, or anything else that you would (reasonably) want to use a progress bar for, is by definition a linear task that always halts, either by completing, being canceled, or aborting on an error. Invoking the Halting Problem here is just technobabble, usually used to try to hand-wave the fact that whoever wrote the progress code is incompetent.


Argh! I'm *so* sick of the aspies that remember (and not so kindly point out) every detail of deep and technical subjects and yet can't handle simple social behavior like humor, irony, or just get the joke and shut the f up.

Re: Turning the Lights Out

2011-07-13 13:48 • by Chock Full O' Angry Hating (unregistered)
353330 in reply to 353329
Hating Mason right now:
Argh! I'm *so* sick of the aspies that remember (and not so kindly point out) every detail of deep and technical subjects and yet can't handle simple social behavior like humor, irony, or just get the joke and shut the f up.


And I'm SO sick of people who feel the need to curse, but not really.

"Shut the f up"?
Would that be, maybe "fuck", that you meant to say? Why don't you just say "shut the fuck up"? Do you think anyone reads that and says "gosh, I would have been offended if he'd said "fuck", but since he just made me reconstruct the word in my mind, I guess it's okay"?
God damn you to hell and zuneisis, you fucking moron, and your whole family too.

Re: Turning the Lights Out

2011-07-13 13:51 • by Steeldragon
353331 in reply to 353304
C-Octothorpe:
schmitter:
By law, every installer should include a game.
My favourite installer game is "Did I crash or am I still installing". I find that SQL Server 2008 and VS2005 installers are the best at this game.


another such one is the bootable usb installer for ubuntu. it stalls multiple times for up to an hour, and you can't quit out of it.

Re: Turning the Lights Out

2011-07-13 13:58 • by zuneisis (unregistered)
353332 in reply to 353330
Chock Full O' Angry Hating:
Hating Mason right now:
Argh! I'm *so* sick of the aspies that remember (and not so kindly point out) every detail of deep and technical subjects and yet can't handle simple social behavior like humor, irony, or just get the joke and shut the f up.


And I'm SO sick of people who feel the need to curse, but not really.

"Shut the f up"?
Would that be, maybe "fuck", that you meant to say? Why don't you just say "shut the fuck up"? Do you think anyone reads that and says "gosh, I would have been offended if he'd said "fuck", but since he just made me reconstruct the word in my mind, I guess it's okay"?
God damn you to hell and zuneisis, you fucking moron, and your whole family too.


God damn him to me, you say?

Spending a night in my dungeon will feel like heaven and hell at the same time.

P.S. You have such a dirty mouth, I love it.

Re: Turning the Lights Out

2011-07-13 13:58 • by Spelling Nazi (unregistered)
353333 in reply to 353294
I think one company started suing for licensing fees and two.

Re: Turning the Lights Out

2011-07-13 13:59 • by zuneisis (unregistered)
353334 in reply to 353330
Chock Full O' Angry Hating:

God damn you to hell and zuneisis, you fucking moron, and your whole family too.


zuneisis - fun for the hole family

Re: Turning the Lights Out

2011-07-13 14:00 • by Spelling Nazi 3 (unregistered)
353335 in reply to 353294
Careful:
By Law you must pay the patent holder of the game in an installer patent, that's why you don't see it.
In the mid 90's they were everywhere and then one company started suing for licensing fees and one.


And then one company started suing for licensing fees and three.

Re: Turning the Lights Out

2011-07-13 14:00 • by Clayton (unregistered)
353336 in reply to 353284
I believe someone has a patent on this.

(Okay, something similar: minigames on loading screens - http://arstechnica.com/gaming/news/2008/03/patents-on-video-game-mechanics-may-strangle-innovation.ars)

Re: Turning the Lights Out

2011-07-13 14:01 • by trtrwtf (unregistered)
353337 in reply to 353331
Steeldragon:
C-Octothorpe:
schmitter:
By law, every installer should include a game.
My favourite installer game is "Did I crash or am I still installing". I find that SQL Server 2008 and VS2005 installers are the best at this game.


another such one is the bootable usb installer for ubuntu. it stalls multiple times for up to an hour, and you can't quit out of it.


My Windows machine (work machine, they make me use it...) is sort of like this, except with starting up, not with installing anything.
The worst is that after it starts up, it still decides to hang periodically when doing something complex, like, say, loading a web page or something.

Re: Turning the Lights Out

2011-07-13 14:04 • by meh (unregistered)
353338 in reply to 353288
NyuSan:
Hint: Actions over the board (flipping a case) are associative and commutative.


And involutary. But I wonder if you considered this: not all initial board configurations are solvable. As a trivial example, consider a 1x2 board that starts with one cell on and one cell off.

Re: Turning the Lights Out

2011-07-13 14:06 • by C-Octothorpe
353339 in reply to 353337
trtrwtf:
Steeldragon:
C-Octothorpe:
schmitter:
By law, every installer should include a game.
My favourite installer game is "Did I crash or am I still installing". I find that SQL Server 2008 and VS2005 installers are the best at this game.


another such one is the bootable usb installer for ubuntu. it stalls multiple times for up to an hour, and you can't quit out of it.


My Windows machine (work machine, they make me use it...) is sort of like this, except with starting up, not with installing anything.
The worst is that after it starts up, it still decides to hang periodically when doing something complex, like, say, loading a web page or something.
One thing I noticed with Ubuntu was that when it finally loaded, it was done; that's it, you can use it... Windows fucking lies to you. It gives you control (well, the cursor works, right) to do whatever, but it's still loading crap in the background for another minute (or 10 depending on machine, setup, etc.). Just let me know when you're *really* done. Don't give me a really slow and unresponsive UI and pretend to be done when you're not...

/rant

Re: Turning the Lights Out

2011-07-13 14:19 • by trtrwtf (unregistered)
353340 in reply to 353339
C-Octothorpe:
One thing I noticed with Ubuntu was that when it finally loaded, it was done; that's it, you can use it... Windows fucking lies to you. It gives you control (well, the cursor works, right) to do whatever, but it's still loading crap in the background for another minute (or 10 depending on machine, setup, etc.). Just let me know when you're *really* done. Don't give me a really slow and unresponsive UI and pretend to be done when you're not...

/rant


Yeah, then pile on the security crap that runs in the background all the time on a locked-down machine, and the habit of getting updates at 10 AM on a Thursday - trying to work? Never mind that! - and you're in a new and wonderous sort of hell. Trying to insert a graphic in a file? Oh, okay, that's a good idea. Why don't you go have a cigarette while I open a file browser. Better have two, it'll take a while.

Hate hate hate hate.

Re: Turning the Lights Out

2011-07-13 14:25 • by joe (unregistered)
System.IndexOutOfRangeException: Array index is out of range.
at System.Windows.Forms.LinkLabel.OnLostFocus (System.EventArgs e) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.WmKillFocus (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Label.WndProc (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.LinkLabel.WndProc (System.Windows.Forms.Message& msg) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control+ControlWindowTarget.OnMessage (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control+ControlNativeWindow.WndProc (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) [0x00000] in <filename unknown>:0
System.ObjectDisposedException: The object was used after being disposed.
at System.Windows.Forms.Control.CreateHandle () [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.get_Handle () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:get_Handle ()
at System.Windows.Forms.Control.set_Capture (Boolean value) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.set_InternalCapture (Boolean value) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.WmLButtonDown (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.ButtonBase.WndProc (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control+ControlWindowTarget.OnMessage (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Control+ControlNativeWindow.WndProc (System.Windows.Forms.Message& m) [0x00000] in <filename unknown>:0
at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) [0x00000] in <filename unknown>:0

Re: Turning the Lights Out

2011-07-13 14:29 • by Joe (unregistered)
353342 in reply to 353325
trtrwtf:
Mason Wheeler:
eVil:
schmitter:
By law, every installer should include a game.


Most of them do. Its called "Guess how long it takes for the bar to go from empty to full".

This game becomes similar to the halting problem when installing anything enterprisey.


Argh! I'm *so* sick of people invoking the Halting Problem when talking about progress bars. The Halting Problem only applies to Turing-complete systems that are capable of getting into an infinite loop. An installer, or anything else that you would (reasonably) want to use a progress bar for, is by definition a linear task that always halts, either by completing, being canceled, or aborting on an error. Invoking the Halting Problem here is just technobabble, usually used to try to hand-wave the fact that whoever wrote the progress code is incompetent.


An installer can't get into a loop? What kind of incompetent morons have you been working with? Any competent moron can turn a simple installer into a loop without thinking about it - which is how your competent moron does anything.


It can only get into a loop if you need to update the update installer to install the install updater.

--Joe

Re: Turning the Lights Out

2011-07-13 14:32 • by C-Octothorpe
353343 in reply to 353342
Joe:
It can only get into a loop if you need to update the update installer to install the install updater.

--Joe
Yo dog, etc.

Re: Turning the Lights Out

2011-07-13 14:32 • by Krenn (unregistered)
353344 in reply to 353340
My favorite is the genius of scheduling the defrag and the full virus scan to run at the same time.

Yeah, mistar cleverpants, you scheduled it to run at 3 AM. Guess what - 7x24 teams are working at 3 AM, and usually with skeleton crews.

Re: Turning the Lights Out

2011-07-13 14:35 • by mistar cleverpants (unregistered)
353346 in reply to 353344
Krenn:
My favorite is the genius of scheduling the defrag and the full virus scan to run at the same time.

Yeah, mistar cleverpants, you scheduled it to run at 3 AM. Guess what - 7x24 teams are working at 3 AM, and usually with skeleton crews.
What do I care? It's not affecting me...

Re: Turning the Lights Out

2011-07-13 14:43 • by The Enterpriser
353347 in reply to 353339
C-Octothorpe:
trtrwtf:
Steeldragon:
C-Octothorpe:
schmitter:
By law, every installer should include a game.
My favourite installer game is "Did I crash or am I still installing". I find that SQL Server 2008 and VS2005 installers are the best at this game.


another such one is the bootable usb installer for ubuntu. it stalls multiple times for up to an hour, and you can't quit out of it.


My Windows machine (work machine, they make me use it...) is sort of like this, except with starting up, not with installing anything.
The worst is that after it starts up, it still decides to hang periodically when doing something complex, like, say, loading a web page or something.
One thing I noticed with Ubuntu was that when it finally loaded, it was done; that's it, you can use it... Windows fucking lies to you. It gives you control (well, the cursor works, right) to do whatever, but it's still loading crap in the background for another minute (or 10 depending on machine, setup, etc.). Just let me know when you're *really* done. Don't give me a really slow and unresponsive UI and pretend to be done when you're not...

/rant


Yet at the same time, if the situation was reversed you would be banging on about how great Ubuntu is how it let you get control of each item as it became available, whereas Windows treated you like a baby and only let you do things once it was ALL setup, even though some things were ready much earlier.

Re: Turning the Lights Out

2011-07-13 14:50 • by C-Octothorpe
353348 in reply to 353347
The Enterpriser:
Yet at the same time, if the situation was reversed you would be banging on about how great Ubuntu is how it let you get control of each item as it became available, whereas Windows treated you like a baby and only let you do things once it was ALL setup, even though some things were ready much earlier.
Don't get me wrong, I'm a Windows fan (I occasionally use Ubuntu), but that has always pissed me off. Even if some things are "ready" as you put it, doesn't mean you can actually use them because 142% of the CPU is still be munged because it's loading other stuff. It's not a boo windows, yay linux comment, more of a UI WTF... Wouldn't you, as a user, be pissed off if the "Loading" screen on your favourite app closed (went to 100%) but you still weren't able to use anything for at least another minute? This could occur on any OS.

Re: Turning the Lights Out

2011-07-13 14:54 • by The Enterpriser
353349 in reply to 353348
C-Octothorpe:
The Enterpriser:
Yet at the same time, if the situation was reversed you would be banging on about how great Ubuntu is how it let you get control of each item as it became available, whereas Windows treated you like a baby and only let you do things once it was ALL setup, even though some things were ready much earlier.
Don't get me wrong, I'm a Windows fan (I occasionally use Ubuntu), but that has always pissed me off. Even if some things are "ready" as you put it, doesn't mean you can actually use them because 142% of the CPU is still be munged because it's loading other stuff. It's not a boo windows, yay linux comment, more of a UI WTF... Wouldn't you, as a user, be pissed off if the "Loading" screen on your favourite app closed (went to 100%) but you still weren't able to use anything for at least another minute? This could occur on any OS.


I guess I misread your sentiment as I had thought it was a mindless Linux > * comment which now appears to be wrong.

If you want to wait until it's all ready, can't you just... wait? It sounds like the problem is lack of feedback indicating when it is all finished rather than the option to do things before this point.

Re: Turning the Lights Out

2011-07-13 14:57 • by boog
353350 in reply to 353347
The Enterpriser:
Yet at the same time, if the situation was reversed you would be banging on about how great Ubuntu is how it let you get control of each item as it became available, whereas Windows treated you like a baby and only let you do things once it was ALL setup, even though some things were ready much earlier.
Yes, surely it isn't presumptuous to presume how a person would behave in a separate, hypothetical situation.

Re: Turning the Lights Out

2011-07-13 14:58 • by C-Octothorpe
353351 in reply to 353349
The Enterpriser:
If you want to wait until it's all ready, can't you just... wait?
What, with my level of ADD? Are you kidding?! ;P
« PrevPage 1 | Page 2 | Page 3 | Page 4Next »

Add Comment