0
votes
2answers
106 views
Replay tic tac toe game
So I am trying to program a way to replay a tic tac toe game after someone wins, loses, or ties.
So basically my attempt to get replay to work, doesnt work. If player 1 won and I t …
0
votes
0answers
34 views
Real Time File sharing - Windows Mobile
Hi,
Is there any technology, library or component that provide real time file sharing on mobile platforms like Symbian , and windows mobile??
RealRime File Sharing means, the ab …
1
vote
12answers
146 views
What are your tips for keeping track and avoiding bugs in loops ?
I just found ... AGAIN ... a real time wastage bug as follows
for (int i = 0; i < length; i++)
{ //...Lots of code
for (int j = 0; i < length; j++)
{
//...L …
4
votes
1answer
186 views
Lisp DO variable syntax reasoning
In Peter Seibel's Practical Common Lisp, he gives this example:
(do ((nums nil) (i 1 (1+ i)))
((> i 10) (nreverse nums))
(push i nums))
I can see how it works, using nu …
5
votes
5answers
140 views
Should I change my utilities.pl to a utilities.pm module?
In our product we have a big utilities file that we require (with do) at the beginning of a lot of our files. Is there a reason not to turn this into a module? For example, inste …
