Forum: Computer Science Apr 11th, 2004 |
| Replies: 7 Views: 4,158 i did something like that, since all logons are authenticated against a network server, I created a fake one, so everytime a user would try to logon to a server it would re-route to locahost and the... |
Forum: Computer Science Apr 10th, 2004 |
| Replies: 16 Views: 8,070 just go for C and move to C++ then to ASM and finally all other programming languages will seem indifferent.
thats what I did, but im not sure if its the best route. |
Forum: Computer Science Apr 10th, 2004 |
| Replies: 4 Views: 4,128 actually believe it or not recursion is considered "elegant" but not more effecient, It actually requires more memory than normal iteration and is mostly used as a logical convience for approaching... |
Forum: Computer Science Apr 10th, 2004 |
| Replies: 7 Views: 4,158 one of my programs drew random lines everywhere on the screen becuase of a logic error I had in it . it was pretty amusing until i relized my computer was going to run out of memory and that I needed... |
Forum: Computer Science Apr 10th, 2004 |
| Replies: 24 Views: 17,243 the only way a computer can understand anything is mathematically, so for a program to implement a solution to any program, he/she needs to approach it mathematically. |
Forum: Computer Science Apr 10th, 2004 |
| Replies: 2 Views: 2,644 ill help ya, just post the questions
edit:
NM i've seen that you've already done that |
Forum: Computer Science Mar 30th, 2004 |
| Replies: 12 Views: 4,844 AI's will always be artificial as long as were the ones making it. In the far furture AI will be the closest thing to the human brain (by then i bet computers will be molecular instead of electrical... |
Forum: Computer Science Mar 30th, 2004 |
| Replies: 1 Views: 2,799 as a programmer you choose what extension you want to use when you create the file.
ex //using fstream.h
ofstream newFile("myFile.ext"); // EXT being the extension I made up
Now it is... |
Forum: Computer Science Mar 27th, 2004 |
| Replies: 35 Views: 21,696 he can try to build a kernal, thats what counts, and proven by linux a kernal can be a one man job, who knows maybe he will make an awsome kernal and distribute the source and in 4 years it will be... |
Forum: Computer Science Mar 26th, 2004 |
| Replies: 9 Views: 5,066 I made a program that implemented the MD5 hash for files if you would like to view it? |
Forum: Computer Science Mar 26th, 2004 |
| Replies: 35 Views: 21,696 To achieve this you would need to program in a low-level language such as ASM (usually), but hey this is a C++ forum so I'll explain how to do it in C++.
It is essential to understand the heart... |