Have you deployed MySQL?
-
I always looked at C# as a much improved Java. Indeed, IIRC, MS during one of its spells when it was quite friendly with SUN was trying to promote Java. It built its own JVM and released J++ and so on. Then out of no where a rift appeared and they created .NET and with it C#.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
That wasn't the reason the rift appeared. There were cracks in the relationship long before - I remember developing Java apps with the AWT, which Sun absolutely hated. Ironically, had Sun collaborated with MS on this, they would have ended up with a much better GUI implementation.
Deja View - the feeling that you've seen this post before.
-
That wasn't the reason the rift appeared. There were cracks in the relationship long before - I remember developing Java apps with the AWT, which Sun absolutely hated. Ironically, had Sun collaborated with MS on this, they would have ended up with a much better GUI implementation.
Deja View - the feeling that you've seen this post before.
Pete O'Hanlon wrote:
I remember developing Java apps with the AWT, which Sun absolutely hated
I hated AWT too. In fact, I hated (still do) everything GUI related to Java. IJS.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
-
Pete O'Hanlon wrote:
I remember developing Java apps with the AWT, which Sun absolutely hated
I hated AWT too. In fact, I hated (still do) everything GUI related to Java. IJS.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
I must admit that I far prefer .NET to Java, so my opinion is slightly biased but I hate the way you can tell a java app because it looks so non standard.
Deja View - the feeling that you've seen this post before.
-
I always looked at C# as a much improved Java. Indeed, IIRC, MS during one of its spells when it was quite friendly with SUN was trying to promote Java. It built its own JVM and released J++ and so on. Then out of no where a rift appeared and they created .NET and with it C#.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
Mustafa Ismail Mustafa wrote:
and released J++
And then later dropped it, realizing that C#, .NET, and the then gleam in the eye of WPF would eventually, incarnated as Silverlight, wipe Java off the face of the earth, once and for all (thank goodness). ;P Marc
-
Mustafa Ismail Mustafa wrote:
and released J++
And then later dropped it, realizing that C#, .NET, and the then gleam in the eye of WPF would eventually, incarnated as Silverlight, wipe Java off the face of the earth, once and for all (thank goodness). ;P Marc
Marc Clifton wrote:
wipe Java off the face of the earth, once and for all
Hear hear :beer: here's to hoping! Seriously though, barring the horrible convoluted GUI (in all its forms) Java is actually quite a good and capable language/framework.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
-
I must admit that I far prefer .NET to Java, so my opinion is slightly biased but I hate the way you can tell a java app because it looks so non standard.
Deja View - the feeling that you've seen this post before.
Pete O'Hanlon wrote:
I must admit that I far prefer .NET to Java, so my opinion is slightly biased but I hate the way you can tell a java app because it looks so non standard.
Very well articulated. You've captured my thoughts and feelings with precision.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
-
I always looked at C# as a much improved Java. Indeed, IIRC, MS during one of its spells when it was quite friendly with SUN was trying to promote Java. It built its own JVM and released J++ and so on. Then out of no where a rift appeared and they created .NET and with it C#.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
Mustafa Ismail Mustafa wrote:
Indeed, IIRC, MS during one of its spells when it was quite friendly with SUN was trying to promote Java. It built its own JVM and released J++ and so on. Then out of no where a rift appeared and they created .NET and with it C#.
Sun hated, hated, hated the fact that Microsoft had built a brilliant JVM and made it very useful for writing Windows applications by adding a few key features: - COM support, for both using and creating COM components; - delegates and J/Direct (P/Invoke equivalent - P/Invoke is actually called N/Direct internally) so you could simply declare any native platform imports rather than have to create a horrible C++ wrapper for JNI; - wrappers for standard Windows GUI controls, massively outperforming SWT and Swing In addition, J++ 6.0 wizards offered very little support for SWT and Swing while offering a lot of support for the Windows GUI wrappers. So Sun concocted a case and sued Microsoft, and were able to stop Microsoft developing J++ any further and their VM from supporting anything after JDK 1.1.6 (IIRC). Simultaneously Microsoft were working on 'the successor to COM' which at that stage was meant to be just a bigger runtime (and some of which was released as COM+ in Windows 2000 - there are still a lot of 'COM' references in .NET) but was eventually decided that a machine-independent intermediate language, garbage-collected environment, and JIT compiler were really necessary. Handily, Microsoft now had all these people who were experienced in building a virtual machine...
DoEvents: Generating unexpected recursion since 1991
-
Huh? Now I am never going to use MySQL again :laugh:
"I guess it's what separates the professionals from the drag and drop, girly wirly, namby pamby, wishy washy, can't code for crap types." - Pete O'Hanlon
-
I always looked at C# as a much improved Java. Indeed, IIRC, MS during one of its spells when it was quite friendly with SUN was trying to promote Java. It built its own JVM and released J++ and so on. Then out of no where a rift appeared and they created .NET and with it C#.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
Mustafa Ismail Mustafa wrote:
I always looked at C# as a much improved Java
Same here. When I did my Bachelor's and Master's in CSCI, we always had Java force fed to us. Then one day, I discovered C#, and haven't really looked back :rolleyes: I still do plenty of C++ though.
"I guess it's what separates the professionals from the drag and drop, girly wirly, namby pamby, wishy washy, can't code for crap types." - Pete O'Hanlon
-
Pete O'Hanlon wrote:
I remember developing Java apps with the AWT, which Sun absolutely hated
I hated AWT too. In fact, I hated (still do) everything GUI related to Java. IJS.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook "There is no wealth like knowledge, no poverty like ignorance." Ali ibn Abi Talib "Animadvertistine, ubicumque stes, fumum recta in faciem ferri?"
Mustafa Ismail Mustafa wrote:
I hated AWT too.
You aren't the only one :laugh:
"I guess it's what separates the professionals from the drag and drop, girly wirly, namby pamby, wishy washy, can't code for crap types." - Pete O'Hanlon