aS^Tetsuo Posted September 26, 2002 Share Posted September 26, 2002 amen to that, i always skipped the copy paste things 2 didn't like them, coz when i did it i was like COOL but how did they do it ? Link to comment Share on other sites More sharing options...
Kyle098 Posted September 26, 2002 Author Share Posted September 26, 2002 i need to know whre the mind trick force is told what to do,can someone just point me in the right direction. Link to comment Share on other sites More sharing options...
Kyle098 Posted September 26, 2002 Author Share Posted September 26, 2002 never mind i found where it is defined. Link to comment Share on other sites More sharing options...
NickR Posted October 1, 2002 Share Posted October 1, 2002 What's desk-checking? Over the 3 years I've been coding I've never heard that term before. Link to comment Share on other sites More sharing options...
Primesghost Posted October 1, 2002 Share Posted October 1, 2002 When I said "veteran coders" I didn't really mean Jedi Knight or Quake coders, I meant veteran programmers in general. Desk-checking is a process that used to be standard in the programming industry for finding logic errors (I still swear by this method). Visual Studio has pretty much gotten rid of the need to do any desk-checking nowadays, but back in the day if you couldn't find a logic error in your app you would desk-check it. When you desk-check your app, you get some paper, a pencil, and a copy of the code to be checked. You start at the beginning of the app (or the particular function giving you problems if you can narrow it down). go through the code line by line and draw little boxes on the paper to hold the name and value of variables as they are created. When a variable's value is changed, update the value held in your box. When it comes to math, you do the math long-hand and eventually you will come across your logic error. Like I said, Visual Studio has all but eliminated the need for desk-checking, but if you're stumped with a logic error, this is still the best way to find it. This is also a huge pain in the a$$ and can take forever when your doing a really large app. Link to comment Share on other sites More sharing options...
Tchouky Posted October 1, 2002 Share Posted October 1, 2002 i know this process but usually but never actualy use it. i just do it in my mind.... i ll use it only in a last ressort situation... Link to comment Share on other sites More sharing options...
Kyle098 Posted October 6, 2002 Author Share Posted October 6, 2002 wow that would take a whole lot of time. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.