User David Frenkel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T00:31:05Zhttp://stackoverflow.com/feeds/user/28747http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code/210556#2105562Answer by David Frenkel for How do you tell someone they're writing bad code?David Frenkel2008-10-16T22:44:15Z2009-10-18T04:53:57Z<p>Bad naming practices: Always inexcusable.</p>
<p>And yes, do no always assume that your way is better... It can be difficult, but objectivity must be maintained.</p>
<p>I've had an experience with a coder that had such horrible naming of functions, the code was worse than unreadable. The functions lied about what they did, the code was nonsensical. And they were protective/resistant to having someone else change their code. when confronted very politely, they admitted it was poorly named, but wanted to retain their ownership of the code and would go back and fix it up "at a later date."
This is in the past now, but how do you deal with a situation where they error is ACKNOWLEDGED, but then protected? This went on for a long time and I had no idea how to break through that barrier.</p>
<p>Global variables: I myself am not THAT fond of global variables, but I know a few otherwise excellent programmers that like them A LOT. So much so that I've come to believe they are not actually all that bad in many situations, as they allow for clarity, ease of debugging. (please don't flame/downvote me :) ) It comes down to, I've seen a lot of very good, effective, bug free code that used global variables (not put in by me!) and great deal of buggy, impossible to read/maintain/fix code that meticulously used proper patterns. Maybe there <em>IS</em> a place (though shrinking perhaps) for global variables? I'm considering rethinking my position based on evidence. </p>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/267075#2670758Answer by David Frenkel for What is the most important thing you weren't taught in school?David Frenkel2008-11-05T23:03:07Z2009-08-21T14:50:38Z<p>Debugging. Real debugging.</p>
<p>If you made it through school you know how to debug your own stuff. But now you a new frontier awaits you when you meet legacy code. Unless you are working in a startup writing all your own stuff, you will come across this problem someday, and when it's bad, it's REALLY bad.</p>
<p>This is because sometimes you will have code that is 5 years old, has major flaws, and has 5 years worth of hacks/workarounds/aborted-attempts/semi-completed-attempts piled on top of it, masking the real problem.</p>
<p>And this is what real debugging skill comes down to... figuring out where the real problem lies, and then figuring out if you are actually have enough time and are competent enough to fix it properly, or at least leave things in a better state than you found it (sometimes leaving comments is the best you can do)</p>
http://stackoverflow.com/questions/539108/should-developers-really-have-private-offices/539146#5391462Answer by David Frenkel for Should developers *really* have private offices?David Frenkel2009-02-11T22:30:05Z2009-02-11T22:30:05Z<p>I think it largely depend on the type of work they need to do.
I think that for some work it makes very little difference.
Sometimes it can be helpful to have open space, with very creative heavy type of work... too much quiet can actually make it harder b/c you can't force creativity. Also if you have a coder working with a new library he may have a lot of very quick questions ("so just what <em>is</em> the name of our dot product function?")</p>
<p>If it's something that requires concentration, such as say coding a physics simulation, or other sort of heavy math, you can bet that any distractions will have a huge cost, not just in longer time to code, but in bug fixing later on.</p>
<p>Now for the subjective part of my answer: I think small coding rooms, with 3 or so programmers to a room work best for you <em>average</em> case. It's a good compromise of not too noisy but still have people nearby to ask quick questions, have occasional interactions, etc.</p>
http://stackoverflow.com/questions/414779/what-should-a-self-taught-programmer-with-no-degree-learn-read/414859#41485931Answer by David Frenkel for What should a self-taught programmer with no degree learn/read?David Frenkel2009-01-05T23:10:05Z2009-01-05T23:10:05Z<p>Code Complete, by Steve McConnell
The one single book that will teach you what you really need to know, and more importantly it will teach you how to <em>think</em> like a programmer, which is something one would hopefully get from college, but alas often is not taught.</p>
<p>Another great one is "Writing Solid Code" by Steve Maguire. Teaches you how to write code that will not fail mysteriously and that is easy to debug.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/211172#21117214Answer by David Frenkel for What is the single hardest programming skill or concept you have learned?David Frenkel2008-10-17T05:40:34Z2008-12-31T15:46:45Z<p>Learning to deal with people who lack skill in architecture and meta concepts but who illogically think that some other expertise makes them correct in this area.</p>
<p>Now in general, I have an easy time getting along with people, and this is a rarity, but when it hits, boy can it be a doozy. Often what you are fighting against here is someone's ego, or rather you are <em>trying</em> to debate a point of logic, but finding the ego shield is protecting the logical vulnerability. It can be hard to convince someone that you are in fact correct and that they have a made a mistake when they have already decided their superiority because they know oh so much more than you about: A)Graphical engines B)SCRUM C) The C++ spec D) Making flow charts. </p>
<p>These hardest cases are where the person <em>DOES</em> know a great deal about some area, but has some inability to understand a logical argument... so if you question the <em>logic</em> of "having skill X automatically translates to skill Y" ends up getting interpreted as "ZOMG you have questioned my <em>skills</em>, how dare you."</p>
<p>This is the <em>single</em> <em>hardest</em> skill I think a programmer will ever had to learn. It is especially hard for a programmer because we tend to be poor at diplomacy, especially in the face of illogical arguments. Nothing in school will train you for this, and it really only tends to happen once you hit the mid and senior levels.</p>
http://stackoverflow.com/questions/37517/incomplete-information-card-game/402480#4024801Answer by David Frenkel for Incomplete information card gameDavid Frenkel2008-12-31T07:38:54Z2008-12-31T07:38:54Z<p>An additional answer in the spirit of the question you asked:</p>
<p>Read up on game theory if you haven't already. This is what you will find some good answer on how to implement any sort of incomplete information algorithm. Your probably going to end up making a big branching tree and assigning expected values to different outcomes.</p>
<p>And to make things more interesting, if your tree of possible outcomes is big enough and your CPU limited enough you will want to read up on algorithms to stop evaluating branches earlier (or use some sort of A* type of evaluation to decide which branches to pursue first)</p>
<p>At the star tof the game these trees might be prohibitively large, for these cases a simple rule of thumb expert strategy will probably work well, based on an estimated value of cards in hand high-low spread or whatever you find appropriate.</p>
http://stackoverflow.com/questions/400839/is-it-possible-to-get-high-quality-graphics-in-2d/402044#4020441Answer by David Frenkel for Is it possible to get high quality graphics in 2D?David Frenkel2008-12-31T01:34:19Z2008-12-31T01:34:19Z<p>One of the main reason that 2D graphics don't look as good us that they are usually low budget games. And there is a reason that most low budget games do things in 2D: It is a heck of a lot easier to make a decent game in 2D than 3D.</p>
<p>Doing graphics in 3D requires that you actually make a 3D model of your character, which is much more time consuming and requires finding rarer/more specific skill-sets than if you just grab your random friend with some artistic abilities to do your art for you (possibly for free). Not to mention how much more time it takes to program a 3D engine.</p>
<p>As other have said, there is <em>no</em> reason why 2D can't look as good as 3D. Go with 2D and get your project done rather than try for SuperawesomeWTFBBQ 3D graphics and never be able to actually finish your project b/c of the time requirements.</p>
http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/288674#2886740Answer by David Frenkel for Calculating frames per second in a gameDavid Frenkel2008-11-13T22:56:39Z2008-11-13T22:56:39Z<p>Good answers here. Just how you implement it is dependent on what you need it for. I prefer the running average one myself "time = time * 0.9 + last_frame * 0.1" by the guy above.</p>
<p>however I personally like to weight my average more heavily towards newer data because in a game it is SPIKES that are the hardest to squash and thus of most interest to me. So I would use something more like a .7 \ .3 split will make a spike show up much faster (though it's effect will drop off-screen faster as well.. see below)</p>
<p>If your focus is on RENDERING time, then the .9.1 split works pretty nicely b/c it tend to be more smooth. THough for gameplay/AI/physics spikes are much more of a concern as THAT will usually what makes your game look choppy (which is often worse than a low frame rate assuming we're not dipping below 20 fps)</p>
<p>So, what I would do is also add something like this: </p>
<pre><code>#define ONE_OVER_FPS (1.0f/60.0f)
static float g_SpikeGuardBreakpoint = 3.0f * ONE_OVER_FPS;
if(time > g_SpikeGuardBreakpoint)
DoInternalBreakpoint()
</code></pre>
<p>(fill in 3.0f with whatever magnitude you find to be an unacceptable spike)
This will let you find and thus <em>solve</em> FPS issues the end of the frame they happen.</p>
http://stackoverflow.com/questions/288298/code-documentation-how-much-is-too-much/288604#2886041Answer by David Frenkel for Code documentation: How much is too much?David Frenkel2008-11-13T22:40:07Z2008-11-13T22:40:07Z<p>All public functions must be clearly understandable by someone who has a passing familiarity with your code base, but NOT in your specific section without having to delve into the code.</p>
<p>If you need to write a short line to explain what a function does, chances are you named your function/classes poorly. The name should be self explanatory in that case</p>
<p>If it requires more than 1 brief sentence to explain, that's probably a good comment</p>
<p>If it takes a paragraph, your function is probably doing too much besides likely unclear names.</p>
<p>It's usually better to err on the side of comments <em>IF YOU MAKE SURE THEY ARE ACCURATE</em>. Inaccurate and/or unmaintainable comments are worse than no comments</p>
<p>So applying these rules:</p>
<p>In your first example: "// create new customer instance" is redundant. The code is crystal clear. THe other comments are perfect. They clarify what the code is operating upon/what it's resuls are</p>
<p>In your second example the comments are wasted effort and make it hard to read. All you need to do is give the function a proper name. Not that vague "count". That is poor naming.</p>
http://stackoverflow.com/questions/288153/how-to-create-a-fps-game/288376#28837611Answer by David Frenkel for How to create a FPS game?David Frenkel2008-11-13T21:23:47Z2008-11-13T22:31:58Z<p>this wins for most open ended question. You could literally write a book. But lets settle for pointing in the right direction...</p>
<p>Step one, you will need good debugging skills for a project like this. Pick up Code Complete by Steve McConnell. Read the whole thing. The time invested will pay for itself more than anything else you could read/experiment with.</p>
<p>Get your hands on some source code of some game. ANY game. Make sure you see something simple before you see something big and complex, and keep in mind when you look at any game code that they may have had a combined team put WAY more time into it than you will ever have. The point in this is to see code structure.</p>
<p>Get a reference for 3D math, doesn't have to be THAT in depth, but you will need to know stuff like dot products backwards and forwards, be able to figure out how to create the matrix for your camera in the world etc. (even if your writing 0% of the rendering code)</p>
<p><em>(edit)</em> Here's a great book on 3D math<a href="http://rads.stackoverflow.com/amzn/click/1584502770" rel="nofollow">Mathematics for 3D Game Programming and Computer Graphics, Second Edition (Game Development Series)</a> This isn't the kind you learn in college, it's more like a cross between trig and more advanced practical concepts: How to create a toolbox for yourself of simple physics, efficient collision detection, etc.</p>
<p>You will need to know something about rendering, and pipelines. SDL gives you a leg up, but make sure you understand the concepts of what it's doing.</p>
<p>Read up about practical system design. Your various systems will have to interlock. Think it out well. Your system can be just a good in C or in C++, it's the THOUGHT that is put into how your data/control will flow that will count, NOT how perfectly you emulate design patterns (though these are very useful as well of coarse)</p>
<p>Fundamentals of AI, not "real" AI, but functional AI; there is a big difference. State machines are great to start with, and sufficient for a simple FPS. </p>
<p>Learn a little about estimation and planning. You will not have time to do everything you would want to do to properly make an FPS. You will have to both triage AND learn how to triage; they are 2 separate things, the latter being mroe difficult. Experience is the best teacher here of coarse. (though the legendary McConnell has book on this as well)</p>
<p>Have a system to insert your gameplay into your level. If it is JUST you as a programmer, then your best bet is to write a plug in for an already existing editing program such as 3DS Max. I would highly recommend Max over Maya for a programmer. Maya script is nice, but it is more geared toward clever non-programmers. I find 3DS Max to think more along the lines of how a programmer would about creating and editing your world.</p>
<p>You can spend YEARS making tools to let you do this right, so you want to do things in such a way that you can edit fast and accurately
If you making your own editor, incorporate it into your game world.
If your world is not TRULY 3D and you want to make lots of level fast you can save your level data as something like this, which will save you a lot of time
Where X is a wall, the other letters are game objects which a dirt simple parser can translate into game objects and world coordinates</p>
<pre><code> xxxxxxxxxxxxxxxxxxxxxxxx
xx..........P..........x
xxxxxxx...........I....x
xR....xxx...........E..x
xx.................0xxxx
xxxxxxxxxxxxxxxxxxxxxxxx
</code></pre>
<p>But it all depends on your game. My point is that you will need to resort to "ghetto coding" how you get your gameplay data into your world is very important and you need to think of something that is both fast for you to implement AND fast with you to work with.</p>
<p>And what it comes down to is what is your goal here? If it's to learn to code something the absolute right way, expect to spend most of your time iterating on code that seemed decent a month ago, but now that you realize what your requirements are, it could really use another pass. Do not be afraid to rewrite, you learn a lot by doing that, but if you goal is functionality, you will probably need to figure out where to hack some things in (like embedding gameplay data nad coordinates into code files) It <em>IS</em> ok to hack as long as you KNOW where you have hacked, and have carefully kept it separate from your good code so you can go back and properly write the code when you get the chance.</p>
<p>The bottom line is, you need to decide what your goal in this is, learning, or functionality and find the happy medium between.</p>
http://stackoverflow.com/questions/52608/is-subversion-version-control-necessary-for-a-small-development-group-1-2-prog/288214#2882140Answer by David Frenkel for Is Subversion (Version Control) Necessary For A Small Development Group (1-2 programmers)?David Frenkel2008-11-13T20:42:36Z2008-11-13T20:42:36Z<p>Source Control YES.
Subversion NO</p>
<p>Subversion is appropriate for really complex stuff that needs to handle branching REALLY well. Otherwise it is not worth the effort of learning and maintaining it.</p>
<p>There's plenty of other more straightforward source control at a small size (I personally recommend PerForce)</p>
<p>BTW I would rank Creating a build system is more important than version control. </p>
<p>Now, with so few people it <em>IS</em> possible to manage source control by splitting up your work files carefully, but this does not give you version control (which is essentially automatically built into any source control you will find)
At the very very least you need to be able to look back and find a version of your file from a few weeks.</p>
http://stackoverflow.com/questions/287764/what-should-i-tell-kids-about-how-great-it-is-to-be-a-programmer/288193#2881930Answer by David Frenkel for What should I tell kids about how great it is to be a programmer?David Frenkel2008-11-13T20:36:10Z2008-11-13T20:36:10Z<p>Car assembly lines are a BIG win (especially with boys)</p>
<p>I can testify that WebKinz are BIG with that age range of girls (as someone else also said)
And little boys still love Transformers.</p>
<p>Before you go into teaching programming concepts, this is a must read:
a a large percentage of them will
have trouble no matter how bright
they are and might just be
frustrated.</p>
<p>See "Why Johnny can't program"(<a href="http://www.bricklin.com/wontprogram.htm" rel="nofollow">http://www.bricklin.com/wontprogram.htm</a>) Excellent explenation of the psychology involved.
(Though as far as our industry goes take some of it with a grain of salt, and read <a href="http://news.cnet.com/2010-1007-5700858.html?tag=tb" rel="nofollow">http://news.cnet.com/2010-1007-5700858.html?tag=tb</a>)</p>
<p>As to programming concepts, at that age the easiest things to show are direct manipulation of environment. Show them one of those mechanical arms (the kind used in space) and then explain how they can be programmed to repeat tasks. (thus the car assembly line)</p>
http://stackoverflow.com/questions/210460/try-to-describe-polymorphism-as-easy-as-you-can/210622#21062211Answer by David Frenkel for Try to describe polymorphism as easy as you canDavid Frenkel2008-10-16T23:21:59Z2008-11-05T23:05:47Z<p>Every Can with a simple pop lid opens the same way. <BR>
As a human, you know that you can Open() any such can you find.</p>
<p>When opened, not all cans behave the same way.<BR> Some contain nuts, some contain fake snakes that pop out. <BR>The result depends on what TYPE of can, if the can was a "CanOfNuts" or a "CanOfSnakes", but this has no bearing on HOW you open it. You just know that you may open any Can, and will get some sort of result that is decided based on what type of Can it was that you opened. </p>
<p>pUnlabledCan->Open(); //might give nuts, might give snakes. We don't know till we call it</p>
<p>Open() has a generic return type of "Contents" (or we might decide no return type), so that open always has the same function signature.</p>
<p>You, the human, are the user/caller.<BR>
Open() is the virtual/polymorphic function.<BR>
"Can" is the abstract base class. <BR>
CanOfNuts and CanOfSnakes are the polymorphic children of the "Can" class.<BR>
Every Can may be opened, but what specifically it <em>does</em> and what specific tye of <em>contents</em> it returns are defined by what sort of can it is. <br>
All that you know when you see pUnlabledCan is that you may Open() it, and it will return the contents. Any other behaviors (such as popping snakes in your face) are decided by the specific Can.</p>
http://stackoverflow.com/questions/235151/game-programming-how-to-avoid-reinventing-the-wheel/235287#2352872Answer by David Frenkel for Game programming - How to avoid reinventing the wheelDavid Frenkel2008-10-24T21:16:23Z2008-10-24T21:23:24Z<p>As to what people have said about C/C++/Python, I'm a game developer and my company encourages C. Not b/c C++ is bad, but because badly written C++ is poison for game development due to it's difficulty to read/debug compared to C. (C++ gives benefits when used properly, but let a junior guy make some mistakes with it and your time sink is huge)</p>
<p>As to the actual question:
If your purpose is to just get something working, use a library.</p>
<p>Otherwise, code it yourself for a very important reason: <em>Practice</em>
<br>Practice in manipulating data structures. There WILL be times you need to manage your own data. Practice in debugging utility code.</p>
<p>Often libs do just what you want and are great, but sometimes <em>YOUR</em> specific use case is handled very badly by the lib and you will gain big benefits from writing you own. This is especially on consoles compared to PCs</p>
<p>(edit:) Regarding script and garbage collection: it <em>will</em> kill you on a console, on a recent game I had to rewrite major portions of the garbage collection on Unreal just to fill our needs in the <em>editor</em> portion. Even more had to be done in the actual game (not just by me) (to be fair though we were pushing beyond Unreal's original specs)</p>
<p>Scripting often good, but it is not an "I win" button. In general the gains disappear if you are pushing against the limits of your platform. I would use "percent of platforms CPU that I have to spare" as my evaluation function in deciding how appropriate script is</p>
http://stackoverflow.com/questions/231250/how-would-you-write-a-non-recursive-algorithm-to-calculate-factorials/231458#2314580Answer by David Frenkel for How would you write a non-recursive algorithm to calculate factorials?David Frenkel2008-10-23T20:49:39Z2008-10-24T21:06:17Z<p>assuming you wanted to be able to deal with some really huge numbers, I would code it as follows. This implementation would be for if you wanted a decent amount of speed for common cases (low numbers), but wanted to be able to handle some super hefty calculations. I would consider this the most complete answer in theory. In practice I doubt you would need to compute such large factorials for anything other than a homework problem</p>
<pre><code>#define int MAX_PRECALCFACTORIAL = 13;
public double factorial(int n) {
ASSERT(n>0);
int[MAX_PRECALCFACTORIAL] fact = {1, 1, 2, 6, 24, 120, 720, 5040, 40320,
362880, 3628800, 39916800, 479001600};
if(n < MAX_PRECALCFACTORIAL)
return (double)fact[n];
//else we are at least n big
double total = (float)fact[MAX_PRECALCFACTORIAL-1]
for(int i = MAX_PRECALCFACTORIAL; i <= n; i++)
{
total *= (double)i; //cost of incrimenting a double often equal or more than casting
}
return total;
}
</code></pre>
http://stackoverflow.com/questions/207351/card-wall-online-card-wall-duplication/214185#2141850Answer by David Frenkel for Card Wall + online card wall = duplication?David Frenkel2008-10-17T23:29:49Z2008-10-17T23:29:49Z<p>I greatly prefer Cards on the wall for a few simple reasons:<br>
Everyone know how to use them. No software training required.<br>
Not subject to problems with network, someone's computer needing maintenance etc., even in a blackout, people can still update their cards. This may sound like a joke, but can be nice to have something to do when for whatever reason yu can not use your PC<br>
Programmers can freely update the cards while they are booting up/compiling<br>
Easy to see them all at a glance<br>
Ideal for meeting if your in a scrum environment and having amini meeting aroudn a desk.</p>
<p>I like jotting a note on the card when it's moved with time and mover... for trakcing bugs/features.</p>
http://stackoverflow.com/questions/203229/preventing-the-circumvention-of-copy-protection/211121#2111216Answer by David Frenkel for Preventing the Circumvention of Copy ProtectionDavid Frenkel2008-10-17T04:59:10Z2008-10-17T04:59:10Z<p>It is impossible to stop it without breaking your product. The proof:</p>
<p>Given: The people you are trying to prevent from hacking/stealing will inevitably be much more technically sophisticated than a large portion of your market. <br>
Given: Your product will be used by some members of the public.<br>
Given: Using your product requires access to it's data on some level. <br></p>
<p>Therefore, You have to released you encrypt-key/copy protection method/program data to the public in enough of a fashion that the data has been seen in it's useable/unencrypted form. <br>
Therefore, you have in <em>some</em> fashion made your data accessible to pirates. <br>
Therefore, your data will be more easily accessible to the hackers than your legitimate audience. <br>
Therefore, ANYTHING past the most simplistic protection method will end up treating your legitimate audience like pirates and alienating them<br></p>
<p>Or in short, the way the end user sees it:<br>
<img src="http://imgs.xkcd.com/comics/steal_this_comic.png" alt="alt text" /></p>
<p><a href="http://imgs.xkcd.com/comics/steal_this_comic.png" rel="nofollow">http://imgs.xkcd.com/comics/steal_this_comic.png</a></p>
http://stackoverflow.com/questions/210329/setting-performance-goals-for-developers/210433#2104330Answer by David Frenkel for Setting Performance goals for DevelopersDavid Frenkel2008-10-16T21:50:00Z2008-10-16T21:50:00Z<p>Much of what I would say has been aid by itsmatt, but I'd add:</p>
<p>The true performance of a programmer is often hard to judge until another programmer has to use/maintain/correct his code. That is when you can get a good assessment of how solid his code is, how often does it break, has it been responsible for any code disasters etc. </p>
<p>And most important: how well did the CLIENTS enjoy his code. (sometimes the clients are other programmers, sometimes end users, sometimes it's something in between)
Ultimately the purpose of computers/code is to make our lives easier (even if it's not always the result) so that is why I think the ultimate judge should be the end users and maintainers of the code.</p>
<p>Mind you I am answering from a large project/video game centric standpoint, and this may be less true on smaller projects, but I think it still holds true. </p>
<p>So what is my advice in the end? Assuming a healthy functional social environment, Client and Peer Reviews tend to be the most reliable metrics (though often not the most convenient ones), "Performance Goals" usually just end up striking good developers as bureaucratic and will annoy them... and as someone said above, it will really just show how good they are at gaming the system</p>
http://stackoverflow.com/questions/111576/when-the-bots-attack/112242#112242Comment by David Frenkel on When the bots attack!David Frenkel2008-11-13T20:15:20Z2008-11-13T20:15:20ZI'd be interested to know just what they base it on, but I suppose it's mostly common patterns liek advertising combined with URL linkhttp://stackoverflow.com/questions/111576/when-the-bots-attack/111584#111584Comment by David Frenkel on When the bots attack!David Frenkel2008-11-13T20:13:40Z2008-11-13T20:13:40ZI checked out Aksimet, found it to be very interesting, and a great idea since animal recognition is something bots are horrible at. I'd upvote 5 times if I could based on this alone :D http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235110#235110Comment by David Frenkel on Do modern compilers optimize the x * 2 operation to x << 1?David Frenkel2008-10-24T21:34:22Z2008-10-24T21:34:22ZYou should list what compile settings you were usinghttp://stackoverflow.com/questions/163600/when-not-to-comment-code/163690#163690Comment by David Frenkel on When NOT to comment codeDavid Frenkel2008-10-24T21:29:38Z2008-10-24T21:29:38ZSometimes source control changes, sometimes old code from a previous project is copied back in after having spent 2 years residing in a branch off from the original mainline. There actually are NUMEROUS cases why relying on SOurce control is not good (liek the others listed above)http://stackoverflow.com/questions/231250/how-would-you-write-a-non-recursive-algorithm-to-calculate-factorials/231458#231458Comment by David Frenkel on How would you write a non-recursive algorithm to calculate factorials?David Frenkel2008-10-24T21:05:02Z2008-10-24T21:05:02Z(this is was aa lesson as to wy you should never jsut blindly copy your CS homework without testing it :) )
Corrected. Assert added, fixed the MAX value to include the new number (so <= not needed). Now this will work as a double version if it's needed for whatever reason.
http://stackoverflow.com/questions/213757/why-do-people-use-java/213781#213781Comment by David Frenkel on Why do people use Java?David Frenkel2008-10-17T23:07:44Z2008-10-17T23:07:44ZIf you REALLY care about performance (i.e. a console game or database) you would never choose Java of C++, Garbage COllection kills performancehttp://stackoverflow.com/questions/210460/try-to-describe-polymorphism-as-easy-as-you-can/210585#210585Comment by David Frenkel on Try to describe polymorphism as easy as you canDavid Frenkel2008-10-17T05:07:11Z2008-10-17T05:07:11ZLOL, I love this. Good answer, though not a good explanation as you really need to already know what polymorphism is. Up-voted for funny, and being techincally accurate, as good programming answers should be.