Everything posted by khaled
-
What are the explanations for greater than C space-time expansion?
is it possible that this universe is a huge quantum environment, that since it was created, its physics laws were adjusted ?
-
Video lectures on computer science and engineering
The Open MIT courses are great
-
what's a good programming language to learn?
If you start with C++ as your first programming language (as I've done) .. Learning any other programming language can be done in a day If C++ looks too hard to be learned as a first language, I suggest trying BASIC (not VB.net) Take an advice from an open-source contributed who've worked on many programming languages, On the long scale, I suggest learning C++ (general, assembled), Java (platform-independent, interpreted), and PHP (build dynamic website\web-service) and (optionally Objective-C, and C#)
-
Video lectures on computer science and engineering
All science has a dark side, which is no excuse to halt development freedom, Even if such thing is created, humans will then find a solution .. and even though, the ratio of death by such thing will remain lower than other things, Besides, when one creates a model, it's not a simple task .. and there exist something called TESTING, which is important.
-
CIA Kryptos - SOLVED!!!
the three first parts were already solved, and as far as I know, there is a group nowadays trying to break the fourth part ...
-
what's a good programming language to learn?
I'd like to clarify some point, Python, Perl, Ruby are not Programming Language ... They are Script Languages, they are interpreted, just like BASH .. in Software Engineering, Script Languages have low consistency ... So, I suggest learning C, C++, or Java And if you are interested in System Programming, you can learn C (Unix/Linux), C++ (windows), or Objective-C (Mac)
-
Do you have a new theory?
I have a new idea about a new theoretical machine model, like Turing machine I'll publish it soon ...
-
what's a good programming language to learn?
1. C for programming mathematics, system programming under Linux, and when speed is needed 2. C++ when programming Data Structures, Object-Oriented, system programming under Windows 3. Objective-C when programming Object-Oriented & Data Structures with high performance, system programming under Mac 4. Java when programming Web applications, hybrid applications, Cross-Platform applications Programming\Scripting languages that are good to know and work with are: General: C \ Objective-C 2.0 \ C++ \ { C# OR VB.net } \ Java Web: HTML AND CSS \ Java Script \ JSP \ PHP Kernel: MS DOS \ Bash \ Mac Kernel Database: SQL \ PL.SQL Writing: Latex OR Word Processor and I program with all languages, mentioned above ... i think MFC died at 2005, there is no MFC in Visual Studio 2008 & later versions ... and, we are talking about programming languages, not using Moderated Codes and Libraries ...
-
what's a good programming language to learn?
As a Programming Assistance, I can tell you this, use C, if you need to program an Algorithm, because C is the fastest ! use C++, if you are working under Windows, or C under Linux ... use Java, if you don't care about "how fast", and on the other hand it gives you alot of benefits: - automated memory management - full Object-Oriented - portability (same code works on all Operating Systems) - support (has alot of standard libraries for many things such as Complex Cryptography) - Thread-ability, Parallelism, Distribute-ability, Security, Safety, Fault-Tolerability ..etc