Forum: Computer Science Feb 9th, 2009 |
| Replies: 5 Views: 799 Hi,
I want to ask some questions. What are the other numbers signify ? Are they heat values or a discrete enumeration like wall, empty space, heat source, etc..
Also can you give us an estimate... |
Forum: Computer Science Feb 9th, 2009 |
| Replies: 3 Views: 618 Hi,
For Managed code use C# or Java Swing; for native code use Delphi or Visual C++ |
Forum: Computer Science Feb 9th, 2009 |
| Replies: 2 Views: 843 General answer :
compiler = lexer (lexical analyser) + parser + code generator
lexer = scanner (implemented usually as FSM) + tokenizer
compile process :
source code -> lexical analysis ->... |
Forum: Computer Science Aug 6th, 2006 |
| Replies: 10 Views: 3,198 Hi,
If the platform is Perl then why not use eval ? See https://www.linuxnotes.net/perlcd/advprog/ch05_01.htm
Loren Soth |
Forum: Computer Science Aug 5th, 2006 |
| Replies: 10 Views: 3,198 Hi,
Recursive Descent is fine or you can simply use pre-fix or post-fix notation and use a stack to push intermediate values at each paranthesis and pop at anti-paranthesis. If you just need... |
Forum: Computer Science Apr 21st, 2006 |
| Replies: 31 Views: 6,680 Well, there is a new Delphi version every 1 and half years, last version being Delphi 2006.
I ment to talk about B too (C is the successor of B) because they are stereotypical old languages... |
Forum: Computer Science Apr 21st, 2006 |
| Replies: 31 Views: 6,680 Hi,
God, I like flame wars, but my main intention was to retalliate to the Narue's "Holier than thou" attitude which is clearly stated on her web site as "she acts purposely antagonistic towards... |
Forum: Computer Science Apr 21st, 2006 |
| Replies: 31 Views: 6,680 I used the word necessary in a context where the opposite is unnecessary; which means not needed, useless, has better equivalents.
First of all Perl is almost out-dated by Python. Second the... |
Forum: Computer Science Apr 20th, 2006 |
| Replies: 31 Views: 6,680 Hi,
My personal opinion is that there can be as many programming lanugages as people can make some up (even I have a Virutal Machine of my own which has a proprietary assembly lanugage w/ 22... |
Forum: Computer Science Apr 6th, 2006 |
| Replies: 7 Views: 2,549 Hi,
If you like networking code a Layer 1-7 Intrusion Detection System.
Loren Soth |
Forum: Computer Science Mar 31st, 2006 |
| Replies: 3 Views: 1,923 Hi,
It is a good question indeed, I think you should use a dynamically allocated 2D array of pointers to a Cell struct. (or class if you use c++ and need OO) Let's say initially you allocate... |
Forum: Computer Science Mar 26th, 2006 |
| Replies: 16 Views: 23,735 Hi,
Do you need a solution which is in a smaller time complexity class than Knuth's or have a bound for n,k and just need a faster code to get it done in less than 3 years ? +what is the maximum... |
Forum: Computer Science Mar 23rd, 2006 |
| Replies: 15 Views: 6,119 Hi,
Although still not military grade data protection but, you might use Paragon Partition Manager to set a FAT32 partition as hidden which will make it inaccessible to OS but you can access... |
Forum: Computer Science Mar 22nd, 2006 |
| Replies: 15 Views: 6,119 Hi,
Unless you use some 3rd party software which is proven to be resistent against implementation and cryptographic attacks (one which implements 3DES,AES, RSA or alike, not something... |
Forum: Computer Science Mar 18th, 2006 |
| Replies: 15 Views: 6,119 Hi,
If you want to make some folders inaccessible and unbrowsable to any one and have NTFS file system right click on it and choose properties and from the security tab select each account other... |
Forum: Computer Science Mar 18th, 2006 |
| Replies: 4 Views: 3,657 Hi,
MinGW do support fork with a self hosting patch (check this post about the subject http://www.computing.net/programming/wwwboard/forum/1041.html) and -ufork switch on gcc without using... |
Forum: Computer Science Mar 18th, 2006 |
| Replies: 4 Views: 3,657 Hi,
http://www.Mingw.org Download MinGW Developper Studio for no hassle linux development on Windows.
Loren Soth |
Forum: Computer Science Mar 17th, 2006 |
| Replies: 10 Views: 8,624 Hi,
Here are two simplifications for you which might save you some time :
(NOT A) or (NOT B) = NOT(A and B)
(NOT A) and (NOT B) = NOT(A or B)
Think those equalities in both directions, if... |
Forum: Computer Science Mar 17th, 2006 |
| Replies: 4 Views: 1,643 Hi,
Neither of three is possible today with our technology for the following reasons :
1. Even curent CAT (Computer Aided Translation) softwares which are humane assisted are far from being... |