It is important to know has you can disable, because some viruses disable task manager, and you have to reenable it :) to stop processes or background apps.
My entire Internet connection needs an accelerator. LOL. However, I'll look into your script, many of my more lengthy downloads consistently drop to ~15/kbps which is outrageously slow.
Consider it? If it's a matter of performance (and I'm not expert on the matter), in your snippet you're iterating so much more than necessary. Consider your 2x3x4 example. Mine would iterate (2*3*4) or 24 times. In your case, you loop 2 + (2*3) + (2*3*4) or 32 times. And these are just small dimensions. Again, I'm not too knowledgeable but surely you can see the optimization in this.
Yeah, I've tried to take a somewhat interest in C++ since I'm sure my college courses will include it at some point in time. However, like any language, it takes an enormous amount of patience to do. Although, maybe I'll get around to learning it some day.
Well thanks :P c++ is fun,i heard java is fun but its hard to learn, but eh. i once found a java code online that made me giggle....at the noobness of the person behind it. maybe it will make you laugh as well :P
Interesting concept. I was just researching into Java's ability to dynamically adapt an arrays index count to allow for infinite entries not 10 minutes ago. Although, most arrays, by default, allow the definition, or replacement of already present indexes.