Posted by
michael
on from the pipe-dream-or-visionary dept.
miguel writes: "Here is my reply to the various questions on Mono, the future of GNOME and the Register statements." Linux Today has a copy of the email as well.
The crux of his argument
by
Anonymous Coward
·
· Score: 5, Insightful
GNOME had always tried to have a good support for multiple programming languages, because we realize that no matter how much we loved C as a programming language, there was a large crowd of people out there that would like to use the GNOME libraries fromtheir favorite programming language, which might not necessarily be C.
This is the reason having Mono at the heart of Gnome would be a good idea. Base it on the CLI and suddenly any language that is ".Net-enabled" is usable under Gnome.
It's about choice. Isn't that what Open Source is all about?
Re:The crux of his argument
by
entrox
·
· Score: 5, Insightful
Don't get too excited about this "any.NET enabled language" being able to drive GNOME. If you think about it, the number of possible languages is pretty dim (mostly C#). Why that? Because.NET must handle common interfaces across those languages. If I use a more exotic language with features not found in others (like multiple dispatch, funky lambda-lists or closures in Common Lisp) I don't think I'll be able to export Interfaces using these features. As those happen to be 'natural' to these languages, I'd have to limit myself in how I can write my applications/libraries.
.NET is far from being the perfect solution.
-- --
The plural of 'anecdote' is not 'data'.
Re:The crux of his argument
by
miguel
·
· Score: 5, Informative
You do raise an interesting point. Some features are not available to all languages (for example, a LISP closure definition).
But there is a large subset that is. This subset is encapsulated in the Common Language Specification (CLS) which differentiates between:
I don't know about all those features, but I do know that the CLR supports both tail-recursion and closures, which are important to functional languages. Sure, it doesn't support absolutely everything you might ever want to do (one notable example is C++-style generics) and I have no idea what "lambda lists" or "multiple dispatch" are, and I don't know enough about continuations to have the first clue as to whether they're supportable or not, but there are certainly features in the CLR that C# doesn't take advantage of (C# doesn't do tail-calls, at the least, although it can make closures I think).
That was a wonderful run-on sentence, but I think I made my point:) The CLR is limited wrt advanced language features, but it's not limited to "strictly C#".
Stuart.
Re:The crux of his argument
by
bockman
·
· Score: 2
But what is the 'performance penalty' of the CLI? If it is of the same order of the JVM, no thanks, a CLI-based desktop will not run on my PCs for at least 5 years ( although it might be wise to start now to be ready then... ).
-- Ciao
----
FB
Re:The crux of his argument
by
plague3106
·
· Score: 5, Insightful
Which was exactly why MS 'broke' VB6. Some parts of the language needed overhaul to be CLS compliant. I imagine other languages will need the same kind of overhaul. And that might not be such a bad thing. VB is a much cleaner and nicer language thanks to the overhaul (although there are still things i don't like, and i would still stick with C).
Re:The crux of his argument
by
smack.addict
·
· Score: 3, Insightful
Nevertheless, we already have this--the Java VM and Java language specification. Many languages now compile to Java byte code and can be written to use Java libraries.
It turns out doing this is really hard. The CLS does nothing new. It is just the way Microsoft is marketing it. In the end, it is not really a good thing for anyone but operating systems developers... most companies do not like a proliferation of languages running around anyways and the migration to a new language is fairly painful.
Re:The crux of his argument
by
RevAaron
·
· Score: 2
Real closures aren't available in.NET?! I must admit, I was quite excited to hear that you and/or Ximian were serious about.NET, and I applaud your efforts. If that's the case, how does Mondrian deal with it?
--
Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
Re:The crux of his argument
by
Keith+Russell
·
· Score: 2
The quick summary: Anything public must be CLS-compliant, and must derive from a CLS-compliant base. This page describes it best.
This rule allows Managed C++ to exist. A managed class can still use, for example, STL internally. The compiler will verify that the class doesn't derive from an STL base or expose any members or methods with STL types. You can still expose STL methods/members, but they must be marked with the attribute [CLSCompliantAttribute(false)], and a compliant, non-STL alternative must be provided.
And how many years did the developer's community wait for STL? Hell, most colleges still don't teach it to their intro to C++ students..101(nor their 102 class students). This is really out there to me.
Re:The crux of his argument
by
jmccay
·
· Score: 3, Informative
The CIL idea is not new. If I remember correctly is used in Borkands C++ Builder & Delphi to some extent. C++ Builder compilers down to the same thing as Delphi and if I remember correctly they use the same linker. It has been a long time since I was delving into the depths of C++ Builder, but I do vaguely remember the common compilation. You can use Delphi Components in C++ Builder, and this is why. The only difference is that Borland never made this a big marketing issue.
If they haven't sold it, Microsoft used to, and probably still does, own a chunk of Borland (as reported here on 6/8/99). From the press release linked to in the slashdot article, "... announced the completion of a set of strategic technology and licensing agreements that will be the foundation for a long-term alliance between the two companies", and "... $25 million purchase by Microsoft of shares of Inprise [what Borland was called for a while] preferred stock". I beleive this is where they got this ideas behind CIL and combined it with the Java virtual Machine model.
-- At the next eco-hypocrisy-meeting, count the private jets used to get to the meeting. Should be interesting to see that
Re:The crux of his argument
by
Maddog_Delphi97
·
· Score: 2, Informative
It may be worth noting that one of the chief architects of Delphi (Anders Hejlsberg, IRC) has been working for Microsoft for some time (And if I'm not mistaken, is one of the chief developers of the C# language)..
Re:The crux of his argument
by
jmccay
·
· Score: 3, Interesting
I would like to further add that CIL (Common Intermediate Language) is one of the few aspects of the.NET ( and Borland C++ Build and Delphi) that I actually like. This simple idea could increase productivity exponentially on all projects, especially open source projects, if all compilers produced CIL code with meta data and packaged other programs to extract the needed informaiton to use the code segment/component in any particular langauge. For example, if Borland C++ build came with a program to generate the headers needed to use any CIL code produced by anybody.
The time wasted on learning new languages just to work with a given project would be removed. That time could then be refocused on newer sections of the code. Granted you would have to learn the a new language if you want to look at the actual code, but it wouldn't be necessary.
The strengths of various languages could easily be combined. You could write various code segments in the language tjat was best suited for the task, and then use that code in all the other languages you program in with very little effort and fuss.
This technology could be improved by adding a layer to compile the CIL code down to native machine code (even if the whole process ends up being CIL Compiler - Native Byte Code Compile - Linker - final native executable). Imagine being able to use portions of the KDE or GNome libraries interchangeably! You could utilize the work of both group and make interoperable components easier without worry about what language it was compiled in. The efforts of both groups could be combine easier and avoid the divided efforts that current exist.
In short this is one of the next step in Soft Engineering/Programming (along with Apest Orient Programming). This code help change the focus of programming/software engineer away from language specific programming to generic concept programming and thinking.
-- At the next eco-hypocrisy-meeting, count the private jets used to get to the meeting. Should be interesting to see that
Re:The crux of his argument
by
JanneM
·
· Score: 2, Informative
Yes, people have tried to realize the benefits using the Java VM. It's a compelling thought; it's tried and true and it's already available for many platforms.
The problem with the Java VM is really that it's written to run Java, and Java only. All features and optimizations are geared towards this. For a few languages that turn out to have much the same features, it is doable, but for other languages it results in some incredibly ugly - and slow - hacks. CIL:s advantage is solely - but importantly - that it's designed to accomodate multiple languages (sort of the difference between a FORTH processor or signal processor and a general-purpose CPU).
That said, implementing a Java compiler for CIL is a good idea; you'd get even more places to run Java programs.
/Janne
-- Trust the Computer. The Computer is your friend.
Would you care to read the article at http://www.javalobby.org/clr.html and say what you think about it?
As it written in the article:
- It isn't only "exotic features" that would have to be removed from the language to make it work, but also things like multiple implementation inheritance, etc..
Eiffel was severely castrated to make it work on the so-called "Common Language Specification"...
- Then there is the efficency issue, I suspect very much, that any other language than C# or Java will run much more slowly..
Re:The crux of his argument
by
Oink.NET
·
· Score: 2, Informative
If I use a more exotic language with features not found in others... I don't think I'll be able to export Interfaces using these features.
Keep in mind this is version one of the CLR. In a very informative interview with Anders Hejlsberg, the chief architect of C#, as well as Turbo Pascal and Delphi, he says that some of the higher-end language features such as generics were implemented in a research version of the CLR but were cut for the current release. After reading that interview, it looks to me like they will implement the more exotic language features in future releases of the CLR, but they just didn't have the time or resources to implement their entire language feature wish list.
Re:The crux of his argument
by
smack.addict
·
· Score: 2
I was replying to a post talking about how MS acknowledges that the CLI cannot support all languages. The fact of the matter is that it suffers from the same faults as the JVM.
Re:The crux of his argument
by
Uller-RM
·
· Score: 2
Lambda lists are part of functional languages, which often feature what's called higher order functions. This means that functions are a data type in and of themselves, and you can write functions that take functions as arguments, modify them, and output new functions as results.
Here's a quick example from Haskell:
addxy:: Int -> Int -> Int
addxy a b = a + b
map addxy [1 2 3...]
map will take the function addxy, apply it to each of the elements in the array (which is infinite) and return an array of results. However, the array only supplies one argument, so what you get back is an array of addxy functions with one argument hardcoded. add 1, add 2, add 3, etc. This is actually a type of lambda lists called curried functions, but you get the idea.
Haskell's a killer language - you should check it out. Any language that allows implementing a polymorphic quicksort in three lines turns me on:)
Because, in theory, you can optimize the code better at run-time than you can at compile time. This is how the HotSpot compilers work for instance. They look for 'hot spots' -- places in code that are executed the most times (the code inside loops etc) and try to optimize the hell out of that piece using the runtime information available to them (such as how many times the code is being run, interning methods and so forth).
This allows the same binary also to run optimally regardless of hardware. For instance, there was one benchmark (posted on Slashdot as well) that showed a program with growing datastructures that suddenly dropped performance after the growth had exceeded a given point. It turned out that was when the internal cache of the CPU ran out and the data had to be accessed from external caches. Statically compiled languages (C++ in this case) were not able to deal with this issue where as a HotSpot based Java code gradually optimized itself to the new conditions and ended up performing better than its C++ counterpart.
This is why a optimizing runtime compiler is a big deal especially on the server side. For desktop apps the startup time and small memory footprint is more crucial.
Really, programmer's lives are boring, I wish my life would be as exciting as other people's life appear to be.
Wrong. Programmer's lives are exciting, as long as you like Computer Science and enjoy tweaking with the little bits, discovering new things. Now, if Miguel started writing Unix software thinking he would be rich, surrounded by girls and driving Romero's Ferrari, he's far beyond dumbness.
Re:Programmer's Life
by
miguel
·
· Score: 5, Insightful
I guess you miss-understood.
Writing about a programmer's life is pretty boring. The programmer might be enjoying himself, but to an external viewer he is only tapping at a keyboard.
Hmm... have you ever read the book Hackers? It's pretty good... Mostly about people hitting keys and starring at a blurry eyed screen. I guess it depends on how interested you are in the material in question.
Good response...
by
Nijika
·
· Score: 5, Insightful
Sorry, but RMS tends to fly off the handle any time he even gets a whiff of something non GNU. So do we all here it seems. I'm tired of hearing it from the community because it's starting to hold us back.
Miguel has made many positive arguments for his prior statments. And thanks to the Register for obfuscating the variables.
--
Luck favors the prepared, darling.
Re:Good response...
by
JabberWokky
·
· Score: 2, Interesting
Sorry, but RMS tends to fly off the handle any time he even gets a whiff of something non GNU.
No... he lobbies for Free Software (which he had meticulously defined). He speaks up in logical arguements when Free Software is threatened with loss of any of the fundimental points of Freedom.
If I lobbied against rape, would you expect me to say "Well, okay - you can rape her this one time" or "That occasion was okay - he only raped her a little bit"? Sure, it's not "as important" as rape, but at one time, in many cultures, rape of the lower clases by the upper classes was considered part of society. RMS simply sees a vision of a better, more humane future, and is working towards that.
Note that I don't necessarily *agree* with him - just that I can see that his inflexibility is a virtue.
--
Evan
-- "$30 for the One True Ring. $10 each additional ring!" -- JRR "Bob" Tolkien
No, all you RMS-haters out there characterize anything he says as having been screamed in a rage. He said, to quote directly from the article,
"I didn't know he was doing that, I find that very hard to believe," he said. "We would like him to come to the free software community and explain himself to us about it."
The guy demanded a response, as if De Icaza was somehow obligated to jump when RMS said frog. He might, just might, try asking for more information and then taking time to frame a rational response instead of treating somebody else as a lackey who needed to come explain himself to the master. Stallman's good ideas and tireless campaigning for what he believes to be right get ignored because he comes across too often as a freak and a prick.
Some of the donations and grants the FSF brings in need to go to a good *publicist*, instead of more coders and lawyers. Like it or not, RMS is a poster child for the Open Source and Free Software movements, but he needs some serious help with his image before all those shiny folks in suits who make IT purchasing decisions will even pay attention to him, or anyone associated with him. A good souless weasel PR guy will keep RMS from making kneejerk responses that piss off folks who might otherwise go along with him, and it will free Stallman's time up for more of the things he does do well. Everyone wins - the pointy haired bosses can interact with the brighty colored and non-threatening Stallman Interface, and the real geeks can get work done with the Command Line RMS.
-reemul
-- You're just jealous 'cuz the voices talk to *me*
"I didn't know he was doing that, I find that very hard to believe," he said. "We would like him to come to the free software community and explain himself to us about it."
He just wanted to get clarification on a question he was just asked.
Jeez RMS can go off sometimes, but at least try to keep it in context.
-- The Kruger Dunning explains most post on/. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
We would like him to come to the free software community and explain himself to us about it.
RMS tends to say everything in grave, ominous tones. It's not really flying off the handle, but it wasn't very polite, either. He sounds like a congressman issuing a subpoena for an Enron executive.
My whole problem with this incident has been RMS's apparent willingness to admonish in public. It's not like Miguel is particularly difficult to get ahold of. It's not like he's not a regular on at least a few public email lists.
And I suppose it's also not like Miguel made a highly controversial statement during a high profile interview. RMS was asked about it IN PUBLIC. He had no choice but to respond IN PUBLIC. You might argue that he could have said "I need to check with Miguel on that," but I think he was genuinely shocked by what he heard. Miguel chose some of his words very poorly during the interview and, after reading it, I myself was shocked and dismayed. Call it kneejerk if you like. I call it normal.
--
GreyPoopon
--
Why is it I can write insightful comments but can't come up with a clever signature?
RMS sounds like he's on a "witch hunt" by asking Miguel to clarify his position?
*sigh* If RMS said that he wasn't going to buy a coffee from Starbucks because he doesn't like the taste of Starbucks coffee much, Slashdot Trolls would be all over him as "some kind of anti-Starbucks extremist!" and "All Starbucks have done is try to make an honest buck, and dirty/smelly/hairy/extremist/communist/programmer RMS wants to destroy them!" or even "He just wants them to call it "GNU/Starbucks!" (+5 Hilarious)
It's all nuts. He's strongly opinionated, and I understand a lot of people disagree with him. But I've never heard him resort to personal attacks, I've never heard a sentence from him that hasn't been inflated out of context on Slashdot, and I'm tired of it for one.
RMS gave us GCC (version 1) and EMACS. He also promoted the idea of a free operating system, an OS that was genuinely in the hands of the users, something we see today in GNU/Linux. (And yeah, I don't think it's unreasonable to suggest that something comprising of GNU + Linux be called GNU/Linux. Nor do I think he's an outright fascist for demanding so - he's not forcing anyone to do anything, he's saying what he, personally, thinks is the right thing to do, as he does with free software.)
Pick another target. RMS was told that De Icaza had effectively chosen to put Microsoft in charge of GNOME. That's not even that far from the truth. And rather than blowing his top, calling Da Icaza names, excommunicating him from GNU (as if he could), demanding people like De Icaza be thrown in prison, or anything like that, asked De Icaza to explain what exactly he meant.
That's a reasonable request, and it's a request I suspect both the free software and open software communities agreed needed to be made.
-- You are not alone. This is not normal. None of this is normal.
First off: To all the people who are upset that I'm comparing rape to free software, I'd like to point out that I chose it because it is an act that used to be considered morally correct, and is now viewed as morally repugnant. Choose your own historical example, but most are still in practice today and/or being rationalized as moral behaviour (slavery, racism, sexism, censorship). I'm not comparing relative "worth", merely showing that thoughts change - at one time, songs were shared, passed from performer to performer freely (each reinterpreting and changing it), and the concept of "selling" a song was not in existance, let alone copyright and fair use laws. Things change: RMS has a vision. Let's look at it:
However, if you started calling consensual sex rape, then we'd have to call you a zealot and out of touch with reality.
That's why he came up with the following rights that he feels users should have:
The freedom to run the program, for any purpose (freedom 0).
The freedom to study how the program works, and adapt it to your needs (freedom 1). Access to the source code is a precondition for this.
The freedom to redistribute copies so you can help your neighbor (freedom 2).
The freedom to improve the program, and release your improvements to the public, so that the whole community benefits. (freedom 3). Access to the source code is a precondition for this.
So, unless it violates one of those rights, he dosen't care - the difficult problem with rape is when it falls into a category of partial or unclear consent (on the part of the raped). Luckily with the concept of Free Software, the above set of rules define exactly what *is* and is *not* free software.
RMS has crossed that line many times.
I have never seen him ever cross the line - if it breaks the above freedoms and claims to be Free Software, he raises a fuss. If someone comes to him about Open Source that may or may not violates the above rights, he patiently points out that since it doesn't claim to be Free Software, he can't comment on it. He's working towards the goal of a complete operating system and application set that respects the above freedoms - towards that goal, he promotes those ethics.
Again, I'm not saying I agree with the guy, but he's not the raving lunatic that people make him out to be - merely a guy with a precisely defined goal.
--
Evan
-- "$30 for the One True Ring. $10 each additional ring!" -- JRR "Bob" Tolkien
Re:Good response...
by
JabberWokky
·
· Score: 3, Informative
rms starts sounding like he's on a private witch hunt for miguel unless miguel repents his sins
Here are RMS's actual quotes:
"I can't believe it's Gnome you're talking about but if it is, I wouldn't like that,"
"I didn't know he was doing that, I find that very hard to believe,"
"We would like him to come to the free software community and explain himself to us about it."
Where exactly is the witch hunt? Where is the talk of 'sins'? Or the need to 'repent'? If anything, he says: "Um... I didn't know that. Are you sure? Well, I'd like to hear it from him before I comment on the matter".
BRUTAL words from him - an utterly horrible position, eh?
--
Evan
-- "$30 for the One True Ring. $10 each additional ring!" -- JRR "Bob" Tolkien
Something along the lines of "I need more information before I can comment" is fine, and a typical response to a question one doesn't know enough about to answer. "We would like him to come to the free software community and explain himself to us about it" is pretty damned pompous. You need more data, you go and ask. You don't use the royal "We" and demand that someone come to you, particularly in front of a public forum. See the difference? Doesn't mean RMS was wrong, just clumsy. Thus the need for some professional assistance. He's a bright guy, he'll figure it out quickly enough, he just needs to accept the fact that he needs a bit of help on public appearances.
-- You're just jealous 'cuz the voices talk to *me*
Linux is a copy of a proprietary OS, Unix, which was invented by a monopolistic company, AT&T. Miguel pointed this out in the email, if you actually read it. Most free software has been free re-implementations of closed software or technologies.
Great reply, but...
by
mjh
·
· Score: 5, Insightful
Reading Miguel's response makes me better understand why it is that he's so enthusiastic about the.NET framework (as he calls it).
One thing though. Miguel says:
So when you copy your binary from Windows that was compiled with the Visual Studio.NET and run it on your Unix platform, it will just integrate nicely with your GNOME desktop.
This just strikes me as overly hopeful optimism to think that Microsoft is going to give up their hard fought and long defeneded applications barrier to entry.
-- Key to financial independence: Spend less than you earn. Save and invest the difference. Do it for a long time.
Re:Great reply, but...
by
Glock27
·
· Score: 5, Interesting
This just strikes me as overly hopeful optimism to think that Microsoft is going to give up their hard fought and long defeneded applications barrier to entry.
Yes, this is a key area where I think de Icaza has a problem. He's clearly planning on implementing Winforms (I checked on the Mono site) and those are not part of the ECMA C#/CLI/CLR spec. Microsoft will not permit those classes to be cloned - its already dropped strong hints about it.
An interesting thing to do would be to write a Java compiler (backend) for the CLR, and try to implement Swing or Eclipse in a Gnome environment...hmmmm. Of course, on the other hand I can just use one of the excellent Java runtimes for Linux, and get better performance. I can still use other languages through JNI (and DirectIO in JDK 1.4).
All that said though, competition is good. Perhaps.Net and Mono will do more to spur Sun to refine Java significantly further.
299,792,458 m/s...not just a good idea, its the law!
-- Galileo: "The Earth revolves around the Sun!"
Score: -1 100% Flamebait
Re:Great reply, but...
by
Glock27
·
· Score: 3, Interesting
You say that mIcrosoft has dropped hints that it will not permit cloning of the Winforms classes. Can you be specific?
What is it that Microsoft has said/done to create this impression?
As I recall there was an article on news.com that quoted the President of ECMA as saying there were not and could not be licensing fees for ECMA standards, while Microsoft seemed to be saying there were elsewhere in the article. I couldn't find that exact article, but this one seems to cover most of the issues. Note that WinForms is absolutely not part of the ECMA standard. Also note that in this article Microsoft says clearly that there may be license issues between their software (even the ECMA standard) and Free Software licenses.
One especially pertinent snippet from the article:
"Part of the ECMA (standardization process) provides a forum for us to license the intellectual property you will need to have to implement the standard," Goodhew [a Microsoft product manager] said. "It's up to the implementers to make sure whatever license they choose to use is compatible with the ECMA licensing terms."
I hope de Icaza has looked over the "ECMA licensing terms" very, very carefully. They don't cover the GUI functionality regardless.
299,792,458 m/s...not just a good idea, its the law!
-- Galileo: "The Earth revolves around the Sun!"
Score: -1 100% Flamebait
Yes, this is a key area where I think de Icaza has a problem. He's clearly planning on implementing Winforms (I checked on the Mono site) and those are not part of the ECMA C#/CLI/CLR spec. Microsoft will not permit those classes to be cloned - its already dropped strong hints about it.
Hmm... If I was Miguel I would take a different route to avoid this problem - I would create a UIML based tool that would generate code for both Winforms (on Windows based platforms) and MozillaXUL for everywhere else (and your little Windows too, deary!) Plus UIML is a handy intermediate form for other forms-based UI platforms, such as Java Swing and HTML. Just standardize on Javascript for the local scripting needs...
Personally I think UIML is a damn good stab at creating a standardized common syntax for cross-platform UI design. Given a couple of revisions to add scripting capability and a decent event model it would rule (if enough tools supported it). And I like this kind of general approach a lot more than I like the idea of emulating MS Winforms.
Re:Great reply, but...
by
Martigan80
·
· Score: 2, Interesting
O.k. here is a karma burn.
If this will be so simple in the future, then MS companies will really try to lure people of off linux, plus think of the Virus factor! Now you can infect two OS's for the price of one!
--
This SIG pulled due to lack of funding. (This damn war is costing too much!)
Yes, this is a key area where I think de Icaza has a problem. He's clearly planning on implementing Winforms (I checked on the Mono site) and those are not part of the ECMA C#/CLI/CLR spec. Microsoft will not permit those classes to be cloned - its already dropped strong hints about it.
Interesting point. Then our response should be:
Do clone these classes
Don't make Gnome dependent on them (so MS has no chance of shutting down Gnome itself)
Should MS dare to try to raise licensing/patent issues re this interface as a barrier to entry, fight them head on. Not in court, but through the court of public opinion and, need I even mention it, through their parole offi^H^H^H oversight committee.
Linux desktops do not copy the MS desktop, in as much as all desktops follow the same basic pattern. Which is why Apple sued and lost when they complained that MS stole their 'look and feel'.
The biggest problem with.NET is that it is a MS initiative and controlled at its most basic level's by MS. Anyone who thinks they can safely develop a project under it without fear that MS will change the APIs the instant they actually start competing at some level is an idiot.
And therein lies the rub of any development using MS tools. Undocumented, incompatible changes to the underlying APIs at MS's whims for MS's gain.
Alan Cox Says It Best
by
Gryphon
·
· Score: 5, Interesting
Miguel:
> or ourselves. I want to be as compatible as
> possible with the APIs that were published by
> Microsoft.
Alan:
Be assured that the day they decide you are a nuisance the VM will acquire a patented neat feature that kills you off. Just ask the Samba people.
(from Alan's reply to Miguel's message)
Re:Alan Cox Says It Best
by
sab39
·
· Score: 5, Informative
Miguel himself responded to this point:
"There is the issue that we might not be able to keep up (right
now, we dont, as.NET Framework 1.0 is already out there, and we
are, well still underway). Also, theoretically there is the risk
of a given API being unimplementable on Unix.
Even if that is the case, we still win, because we would get
this nice programming environment, that althought might not end up
being 100%.NET Framework compatible, it would still be an
improvement and would still help us move forward. So we can reuse
all the research and development done by Microsoft on these ideas,
and use as much as we can."
This applies just as much to being intentionally broken by Microsoft as it does to them simply outpacing Mono's development.
Re:Alan Cox Says It Best
by
dillon_rinker
·
· Score: 2
Microsoft will HAVE to publish APIs etc. for patented features. How else can they get a patent? The whole point behind a patent is that you are granted a 100% legal monopoly for your product IN EXCHANGE for your full disclosure of your product.
You are referring to the original use of the term "to patent".
Today, a patent application need not be a blueprint to reproduce said invention. The application only needs to describe enough of the invention to convince the patent office to grant the patent.
Re:Alan Cox Says It Best
by
blakestah
·
· Score: 4, Redundant
Microsoft will HAVE to publish APIs etc. for patented features. How else can they get a patent? The whole point behind a patent is that you are granted a 100% legal monopoly for your product IN EXCHANGE for your full disclosure of your product.
Unfortunately, this is the future of proprietary software. Look around at any developing area.
Microsoft has patented the second generation Windows Media Format codecs. Real had patented its codecs. Apple holds exclusive licensing for Sorenson codecs used in Quicktime. So if you want to make or decode a decent video codec, you have to license a patent.
SAMBA is now also encumbered with patents with respect to user authentication. The next generation of Windows will contain this authentication, and the SAMBA team will be unable to make a functional work-alike. Too bad, that is the law.
Unless the Microsoft settlement has something to say about open licensing of patented formats, codecs, and authentication, making software to duplicate new Windows functionality, or providing file or print servers for Windows machines, will become impossible without licensing from Microsoft. You can expect that authentication of users under.NET will use patented protocols, and that they will similarly use other patented protocols into other inter-machine communication APIs. After all, there are a lot of ways to skin a cat; this is one way to keep free software out of Microsoft-monopolized areas.
SAMBA was never about "making a better and stronger linux" in and of itself. It was realy only about compatibility.
Miguel's point is that the CLI would be a good thing for Mono even as an incompatible bastard child of.NET proper. Compatibility is gravy.
Re:Alan Cox Says It Best
by
blakestah
·
· Score: 2
What you say is a problem, but it will not be a dealkiller until Microsoft drops support for it's previous methods of authentication.
Yeah, but Microsoft will coerce through discontinuing support for old protocols in new software, and reliance on the upgrade cycle. Didja notice Office 2000 is already GONE and no longer supported, and only Office XP is ?
This will happen at the OS level too, until you can no longer buy new software to run a server or client using anything but the new authentication scheme. They will introduce it slowly, but eventually, every single person using some kinda SAMBA will be forced into the Microsoft way. It may even take two cycles - 5-6 years - to fully implement. I mean, it doesn't take a rocket scientist to figure out their marketing and sales plans.
But Unless You Were an Incredibly Neurotic, Dumbass, Only Windows Should fear Ximian's Progress...
(gotta love acronyms;)
-- "Don't blame me, I voted for Kodos!"
Those who fail to learn from history...
by
zhobson
·
· Score: 3, Flamebait
..are doomed to repeat it.
Over and over again, Miguel De Icaza has displayed the same sort of breathless excitement over Microsoft technologies that I'd expect to see from a newbie, not a developer of his caliber. It's extraordinarily short-sighted for him to believe that he'll be able to keep up with Microsoft. This isn't a matter of talent. Microsoft has shown, time and time again, that it has no problem locking out other vendors using API changes and whatever other means available.
Miguel seems to be ignoring the fact that Microsoft will very likely do everything it can to keep Mono uselessly lagging. They've embraced and extended every technology they've adopted, and even their own APIs shift constantly. I realize that the.NET Framework looks like a different approach, and Microsoft is acting like it's going to start playing nice. If it happens, it'd be a first for Microsoft. I personally have my doubts, and history backs me up. What a shame that a talented developer like Miguel doesn't know better than to trust them.
-zack
Re:Those who fail to learn from history...
by
SteveX
·
· Score: 2
They can't keep it "uselessly lagging" if it's already useful enough to be able to write it's own compiler!
If your goal is to be able to run any Microsoft.NET app on Linux then it may lag; but as a new development tool available to folks writing code on Linux, it's perfectly useful the way it is right now.
- Steve
Re:Those who fail to learn from history...
by
Malc
·
· Score: 4, Informative
I think he does realise it. He pointed out that even if it isn't compatible, he'll still end up with a better development environment, at the expense of MSFT's R&D department.
To quote:
* What if we never can keep up?
There is the issue that we might not be able to keep up (right
now, we dont, as.NET Framework 1.0 is already out there, and we
are, well still underway). Also, theoretically there is the risk
of a given API being unimplementable on Unix.
Even if that is the case, we still win, because we would get
this nice programming environment, that althought might not end up
being 100%.NET Framework compatible, it would still be an
improvement and would still help us move forward. So we can reuse
all the research and development done by Microsoft on these ideas,
and use as much as we can.
I hate to be a dick, but.
by
sinserve
·
· Score: 5, Interesting
There is a point in your life when you realize that you have
written enough destructors, and have spent enough time tracking
down a memory leak, and you have spend enough time tracking down
memory corruption, and you have spent enough time using low-level
insecure functions, and you have implemented way too many linked
lists [1]
Last time I felt that way, I dicovered Lisp. Java also fits the bill (and so does C++ with STL, BOOST and ACE.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 3, Insightful
Yeah... that one really irked me. I'm older than Miguel is, and (shrugs his asbestos suit on...) I think this remark just demonstrates a serious lack of proper experience with C++.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 3, Insightful
I understand (and anticipated) that people would think this is Flamebait, but being older than he is, and having clearly more experience in C++ than he does, I do not have problems with low-level calls or memory leaks or any of the things that he insuates are problems of an archaic language.
Running into those problems frequently is only a sign of poor design and poor coding, not a language flaw.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
jonabbey
·
· Score: 5, Informative
Of course, with Mono you get all that neat stuff while still being able to code in _whatever_ language(s) you want and have it work transparently and consistently.
Whatever language you like so long as its semantics and runtime behavior have been massaged to work with the CLR.
Really, the CLI/CLR is just like the Jave byte codes and JVM, except that CLR's is a bit less strict about security and in that the CLR's support for 'unmanaged' code allows for cleaner support of native machine code than does Java's JNI interface. It's a convenience thing, much as Visual C++'s helpful COM automation wizards are a convenience thing.
The biggest difference between Java and the.NET framework is that Java's bytecodes and VM are a bit more paranoid about things like security, and that Java is designed with portability as a first order concern..NET code will probably never be as portable as Java, precisely because it is designed to make it super easy to interface with operating system level code. Java is designed to make it a pain to use any code that isn't itself portable.
Re:I hate to be a dick, but.
by
jonabbey
·
· Score: 2
And your argument about platform portability is specious. Because it's easier to make non-portable calls, you presume that developers will inexorably be drawn to write non-portable code? And if it's hard they won't do it? Please. I'll write the code I need to write to get the job done. If it can be portably written, I'll do that. But if I need a feature that I know will make my application non-portable, and I'm willing to make the non-portable tradeoff in order to get the feature, then I'll do it. Without regard to how hard or easy it is. I make tradeoffs all the time. It's a big part of what I do while writing code.
Surely, and properly so. But the whole point of C# and the.NET framework from Microsoft's point of view is that programmers working in it will be less likely to wander away from ties to Microsoft's underlying platform.
You can bet that Microsoft won't be attempting to duplicate all of the Java API's that Sun and its partners are promulgating in their yearly spec grants to ECMA. And, no, there's nothing wrong with that, just as there's nothing wrong with simply writing Win32 code and being happy with that.
By coding in Java, however, I get to (and have) run my code without recompilation or rework on a bunch of UNIXes, 32 bit Windows, Mac OS 9 and X, and OS/2. That's not what.NET is about.
Re:I hate to be a dick, but.
by
dvdeug
·
· Score: 2
Running into those problems frequently is only a sign of poor design and poor coding, not a language flaw.
Except for the fact that Lisp programers never have memory leaks, have memory corruption only in the rarest of situations and never have to reimplement the linked list.
Why is that programmers believe that all of C and C++'s problems are due to bad programmers?
Re:I hate to be a dick, but.
by
geekoid
·
· Score: 2
When I read it i just thought "Maybe its time for him to stop doing the actual coding"
You never have a memory leak with Java or C++?
-- The Kruger Dunning explains most post on/. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
Re:I hate to be a dick, but.
by
rlowe69
·
· Score: 2
I think this remark just demonstrates a serious lack of proper experience with C++.
C++ may be a great language in certain areas, but the memory management sucks ass compared to Java/C# - this is the point Miguel is driving home here.
Automatic garbage collection is here to stay.
BTW, your "I'm older than HE is" remark irked me. Who cares how old you are?
-- -----
rL
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
Why is that programmers believe that all of C and C++'s problems are due to bad programmers?
Because we've worked with them.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
We use APIs to draw our GUI's, so why not let the computer handle the complexity of memory management, too. Or do you reimplement your windowing routines for every project too?:)
Well, if that is your approach, why not do all your Windows development using VB?
I use C++ because I believe it is the most powerful, flexible language out there. Yes, it does require learning more for particular OSes (GUI, mutexing, threads, sockets, etc.), but if I were stranded on a desert island with only one language, there would be no other choice.
This is not to say that I only use C++. I regularly use Perl and Java where I think they are applicable. I don't like garbage collection because of the potential problems with performace that can happen because the GC algorithm is not standardized or configurable in most applications. In Java, for example, I've seen large systems perform like a champ for 1-2 hours and then grind to a halt for 2-3 minutes while garbage collecting! This is because the VM had a bad GC algorithm. It was still within Java's spec. It was good design and good Java code. I've never had that problem with C++. I don't want to have to configure my client machines or my servers and tweak things or run different JVMs just to make sure that my app will perform properly. This is why I still write most number-crunching, mission-critical stuff in C++.
It's great that people can put less effort into knowing what an Operating System does before they know how to program. It's nice that an Accounting major can take a Learning Tree class and start developing Java or VB code. I just don't want those people anywhere near my software. I want to work with people who understand how the machine works too! Having a developer that has no practical knowledge of memory management is like having a mechanic that doesn't know how an engine works! No thank you.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
C++ may be a great language in certain areas, but the memory management sucks ass compared to Java/C# - this is the point Miguel is driving home here.
Automatic garbage collection is here to stay.
Well, no, actually... C++ memory management is much better because it is done by ME. I only say this because java's memory management is not specified. The garbage collection algorithm is left up to the JVM developer. Thus, Java's memory management doesn't really exist. It only dictates that things will be garbage collected, not how efficiently.
Automatic garbage collection is here to stay.
You feel free to use it wherever you like. I, for one, do not trust an arbitrary algorithm to properly handle garbage collecting my mission-critical apps (picturing Emacs in the old days... "Garbage Collecting..." Me saying "why can't I type?"...).
BTW, your "I'm older than HE is" remark irked me. Who cares how old you are?
Well, I'm sorry if I offended your youthful sensibilities, but Miguel states:
"There is a point in your life when you realize that you have written enough destructors, and have spent enough time tracking down a memory leak, and you have spend enough time tracking down memory corruption, and you have spent enough time using low-level insecure functions, and you have implemented way too many linked lists..."
Well, I have been doing this longer than he has... I still haven't come to that "point in my life" yet. That is why I bring up how old I am.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
dvdeug
·
· Score: 2
Why is that programmers believe that all of C and C++'s problems are due to bad programmers?
Because we've worked with them.
So you worked with who wrote the original finger, that the Internet worm exploited? Or the people who wrote the GNU C library, which had a buffer overflow recently? Or Eric S. Raymond, who wrote Fetchmail, which had a buffer overflow in version 5.33? Or the authors of X? Or the authors of MySQL? And they're all bad programmers?
Maybe you're such a god that you've never done that, but if ESR and the glibc authors have such problems, maybe it's more than just bad programmers.
I think this remark just demonstrates a serious lack of proper experience with C++.
Are you implying that C++ has memory management? It doesn't. Everything is still manually done, or have you not had the joy of chasing memory leaks in C++ programs yet? It may be a step-up from C, but it isn't a picnic either.
-- The wheel is turning, but the hamster is dead.
Re:I hate to be a dick, but.
by
rlowe69
·
· Score: 2
C++ memory management is much better because it is done by ME.
.... and while I'm sure you claim to have ZERO memory leaks in any of your software, some people would rather not worry about de-allocating a linked list, thank you very much. The point Miguel is making (and that you keep missing) is that implementing all of this memory management is BORING and takes valuable developer TIME. At some point you have to sacrifice performance for productivity and get the dang software out the door.
... picturing Emacs in the old days...
Yes, and I'm sure that absolutely no progress has been made on the performance of garbage collection of the language it was implemented in OR the speed of computers in general. </sarcasm>
Well, I have been doing this longer than he has... I still haven't come to that "point in my life" yet. That is why I bring up how old I am.
You are either far more patient or more set in your ways than he is then. It still doesn't matter how old you are.
There are two kinds of people - those that just sit and take it up the ass repeatedly and those that try to find a better way of doing things. Miguel is one of those latter people.
-- -----
rL
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
So you worked with who wrote the original finger, that the Internet worm exploited? Or the people who wrote the GNU C library, which had a buffer overflow recently? Or Eric S. Raymond, who wrote Fetchmail, which had a buffer overflow in version 5.33? Or the authors of X? Or the authors of MySQL? And they're all bad programmers?
Maybe you're such a god that you've never done that, but if ESR and the glibc authors have such problems, maybe it's more than just bad programmers.
I'll respond to those pinnacles of perfect software one at a time.
finger: I'm sure that this product was written with amazing attention to detail and security considering it was a hacked up networked version of "hello world"
the GNU C library: I'm not sure if you've seen that code, but it is NOT pretty. It is also not very well designed. I will also postulate that any mission-critical code that has a buffer overflow problem was not properly designed, coded or tested.
Fetchmail: see GNU C library
X: This product has to be one of the most design-flawed pieces of software out there. It is painful to program in and it was written by students who never worked on real software before. Please find a better example
MySQL: I am not particularly aware of problems with MySQL in the past (I do not use it). So, I will defer to someone else to respond to this one.
I must say that _most_ of the problems that I have seen with problems with the minutiae like memory leaks and other such problems have their roots in poor design. Good design is one of the biggest factors that can mitigate risk in development of any software. I believe that most people, especially widely segregated development (as occurs in many Open Sourced projects) focus too little on design and always talk about "coding this" and "hacking that" instead of talking about higher-level design issues that will make the development easier. And, developers always need to be coding for security if they're writing a mission-critical app. Don't hard-code buffer sizes. Jesus christ... they teach you how to deal with buffer overflow problems in school!
Though my initals are not immediately recognizable to the Slashdot Hive Mind, I believe that I am as good or better at designing software than all the people you mentioned.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
Are you implying that C++ has memory management? It doesn't. Everything is still manually done, or have you not had the joy of chasing memory leaks in C++ programs yet? It may be a step-up from C, but it isn't a picnic either.
:-) Yes, I have been developing in C++ for about 9 years now. I also work in Java, Perl, VB and other more obscure stuff (smartcards) sometimes. C++ has no built in memory management, but a good designer and implementer does not need to have good memory management. ONE Smart Pointer class in C++ will cure any problems you have with memory leaks if you choose to standardize on it.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
some people would rather not worry about de-allocating a linked list
#include <list>
There are two kinds of people - those that just sit and take it up the ass repeatedly and those that try to find a better way of doing things. Miguel is one of those latter people.
Some people do things well enough that they don't have to worry about the things other people consider serious flaws. I can't, honestly, remember the last time I chased down a memory leak in my code. My designs always make the implementation concise and simple. It is very easy to code classes with a defined purpose.
Experienced developers who follow good coding practices will not have a problem with memory leaks. Inexperienced developers, or experienced ones that write spaghetti code, frequently have problems of this sort.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
rlowe69
·
· Score: 2
Some people do things well enough that they don't have to worry about the things other people consider serious flaws.
Some people stick their noses up at new things because they like the tried and true proven way, even if it takes many more keystrokes. While it's probably safe to say you'll be put to pasture soon (given your old age) and don't need to worry about all of these newfangled developments in languages, other people will. So I don't think your original opinion is very (Score:3, Insightful) - which is why I even bothered to respond to it in the first place.
However, Miguel expresses a real concern about developer TIME that you still refuse to address. It's probably true that after coding classes for 10 years you have become very efficient at it, but who says it should take that long to be that good (from a quality standpoint) at something like memory management when it can be taken care of automatically? Now it's true that you take a performance hit with the overhead it takes to manage memory, but performance is becoming relatively irrelevant in most cases when people just want to get something completed. THAT is Miguel's focus - to construct a tool to make software QUICKLY for GNOME.
People aren't going to waste their time farting around with memory management in C++ when C# solves the problem. Well, people who are open to change that is...
-- -----
rL
Re:I hate to be a dick, but.
by
dvdeug
·
· Score: 2
I'll respond to those pinnacles of perfect software one at a time.... I believe that I am as good or better at designing software than all the people you mentioned.
I take it you're having yourself cloned so you can service every programming job in the world? Until then, these people and people like them are going to be coding the software that the world uses, so a programming language should be designed for them.
Re:I hate to be a dick, but.
by
dvdeug
·
· Score: 2
OK, go on and implement X in Lisp/Java/MSIL/whatever.
Why should I waste my time? The current X works well enough, and nobody's going to jump to my version. There's no reason why it couldn't be done in Lisp or Java, and I believe there's been at least one implementation in each. See http://www.jcraft.com/weirdx/ for the Java implementation.
Or maybe you prefer the GNU C library (which, if you didn't know, powers Lisp/Java/whatever)?
Really? Because I thought, you know, that Lisp dated back to the 1950s and that the GNU C library only runs on Linux and Hurd systems and only dated back to the late 1980s.
The only reason Lisp and Java implementations on Unix tend to depend on the C libraries, is the simple fact that low level wrapping of the kernel and system is painful and unportable work. Hence since a C library is always present on Unix systems, most implementors use the C library as a hardware-wrapping laywer for simplcity. Both Lisp machines and VMS are examples of systems that don't depend on C.
Re:I hate to be a dick, but.
by
jheinen
·
· Score: 2
"Well, no, actually... C++ memory management is much better because it is done by ME."
I'm struggling to figure out why you use C++ and not assembly. I mean, you could probably write tighter, faster code in assembler yourself instead of leaving it up to the arbitrary algorithms of the compiler.
The point is that programming languages evolve, with the ultimate goal of making them as close to natural language as possible. Garbage collection is just one step on the path leading the holy grail of a language that allows you to focus *exclusively* on solving the problem at hand without having to pay attention to implementation details. Computer languages are tools that we use to solve problems. I want to get to a point where I spend more time on the problem, and less time making sure the tool works properly.
-- -Vercingetorix
"Necessitas non habet legem." -St. Augustine
Re:I hate to be a dick, but.
by
dvdeug
·
· Score: 2
For the discourse at hand, it'd be nice to consider performance/scalability figures.
Because performance and scalability is always the first and last issue in any argument. The fact that the Java X server is portable to any system that has Java is irrelevant. Whether it can display 2,400 windows or whether it can create a window for Mozilla in 2.4 microseconds (which Mozilla will take 12.7 seconds to draw in) is.
No, assuming equally competent implementations, the Lisp and Java implementations won't be as fast as the C implementation. A Fortran implemenation will be faster, though, as will an assembly implemenation. All hail Fortran and assmebly.
Re:I hate to be a dick, but.
by
(void*)
·
· Score: 2
You are generally right, but his point about bad GC is still right. *Right* *now*, GCs are still badly designed, leading to hangs at odd times. So his decision to stick with C++ until they've ironed out these bad implementations is a perfectly good reason.
As an exercise, you might want to consider coding for the AI of the future. It's definitely easier, but we are not there yet. The argument is about how good it is now, and not how good an ideal GC is.
Re:I hate to be a dick, but.
by
dvdeug
·
· Score: 2
How about common shared principles of well designed software? That's a _start_
One of the main principles of well-designed _anything_ is that humans are fallible. No matter how bright, they will screw up every so often, and some of them screw up frequently. Hence, if and when possible, you must try to reduce the negative effects of erroneous human behavior. Devices should not have exposed dangerous surfaces. Microwaves do not function while open. Incorrect behavior that is common must not caused serious injury, if at all possible.
In light of that, a programming language that permits and encourages fixed length buffers (no strings of unbounded length, for example) and turns a common mistake given fixed length buffers (buffere overflow) into a potential remote exploit of the computer is not well-designed.
Re:I hate to be a dick, but.
by
Cederic
·
· Score: 2
>> Running into those problems frequently is only a sign of poor design and poor coding, not a language flaw.
Unfortunately most code gets modified or created by people who design poorly or code badly.
Maybe you are lucky enough to only work on code that you wrote yourself; most of us are not. I suspect Miguel gets the joy of working with code written by teenagers in their spare time while they're learning to program. I'd be very surprised if they all manage their memory agressively and accurately.
So the language maybe isn't flawed, but a language with garbage collection will nonetheless considerably reduce these issues and cause fewer headaches for the expert programmers that are tidying up after their less experienced colleagues.
~Cederic
Re:I hate to be a dick, but.
by
dvdeug
·
· Score: 2
Because performance and scalability is always the first and last issue in any argument.
That's because we, the practicing programmers, live and die by it.
Thanks, "Mel". We must always provide the fastest system for script kiddies to DDOS other people's computers from it; that's only common courtesy.
Frankly, most customers are going to be more interested in security than the last ounce of speed. But it's not about the customers, is it?
this makes your entire point laughable.
You name the system and the languages, and my point is laughable because you don't like my perfectly valid example?
What's relevant is whether it doesn't take forever to open an xterm.
Because it will kill you to wait a couple seconds to open up an xterm. How about a little patience, man?
Use the tool that fits the job, not some high-horse languages because they rock your world
Use the tool that fits the job, not some low-level language because it rocks your world.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
If the client is written in Java, you have to worry about GC there too. If the client machine has a bad JVM on it, you have to replace it. It's a nice configuration issue to have to upgrade or switch a JVM out when you install your software... Oops... what about that _other_ app on that machine that worked better with that _other_ JVM?? Oh well, we'll just have to fight it out... Maybe the user will buy two PCs... yeah... that's it...
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
The point is that programming languages evolve, with the ultimate goal of making them as close to natural language as possible
Maybe in your world, but I completely disagree with that. We're not living in Star Trek here. "Computer... calculate the area of this circle". While I understand we're trying to make development easier, we must also concentrate on sacrificing as little functionality as we can. Otherwise we wind up with programs that don't _quite_ do what is needed, but we settle on it because that's the language everyone knows now.
My $0.02 on that
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Re:I hate to be a dick, but.
by
tommck
·
· Score: 2
That is my point, exactly. I understand the world isn't perfect, but people can cut their teeth on other, simpler languages, but when they want to do some real work, they will tend to use a language suited to it
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
CLR and so-called language independance
by
ChrisRijk
·
· Score: 5, Insightful
The reality looks much darker instead. The CLR is not truly language-neutral, and it will ostensibly favor languages that look a lot like C#. Those not in this group will be severely bastardized, producing dialects which are really "C# with another syntax"; look at ISE's Eiffel# (or even Microsoft's own VB.NET and J#) for great examples. Programmers' choice will be limited to superficial features: whether to delimit their blocks with curly braces, Begin/End or parentheses. It's also worth notice that the CTS/CTS do not allow use of the full set of CLR features; for example, unsigned integers are supported by the CLR but not considered language-neutral, simply because many languages share Java's abomination for the signed/unsigned duality (this includes Microsoft's own VB) and there's no good solution for this issue.
-cut-
Playing with the.NET SDK, the cross-language support looks impressive, but the illusion holds true only until realizing that all languages in the mix are virtually identical. Microsoft has actually invented the concept of skinnable language: changing a language's most superficial aspects, and claiming the result to be a new language. There is only One True Language that is C#, and "skins" offered by Microsoft and third parties. Just like in GUIs, these skins will alter the system's look and feel, add a few features, but never compete with a fully new toolkit.
Re:CLR and so-called language independance
by
frank_adrian314159
·
· Score: 4, Insightful
It's a sad thing that the JVM also sucks for non-Java-like languages. One of the points that they make is that languages like Lisp and Smalltalk suck on the CLR. However the same issues are present in the JVM (Kawa's bowdlerized Scheme implementation notwithstanding). And it's not like Sun hasn't been aware of this shortcoming either (With people like Guy Steele and Dick Gabriel on their research payroll, how could they not be aware?). If they had listened to people outside the Java community that wanted a better (read MORE UNIVERSAL) VM, they might had had a moral leg on which to stand.
As it is, this stupid editorial is just a case of the pot calling the kettle black. The only problems that Sun should have with CLR is that (1) it's by Microsoft and (2) Microsoft did a better job at beating Sun at their own game. Not that I like the CLR any beter than the JVM - they both blow chunks for dynamically-typed languages and for languages having anything different from simple class-based objects, but this editorial is just brain-dead.
-- That is all.
Re:CLR and so-called language independance
by
mikemulvaney
·
· Score: 4, Interesting
As it is, this stupid editorial is just a case of the pot calling the kettle black.
Yes, that's exactly what it is. I think you are misinterpreting the article. The author is trying to say that runtimes can only be optimized for one language, and that the.NET stuff will not be any better at running other languages than the JVM is.
I don't know if that is true or not, but don't try to pretend this article is saying that the JVM is better in some way. The only problems that the author has with the CLR is that (1) it is by Microsoft, and (2) Microsoft is (according to the author) lying about the CLR's capabilities to be cross-langauge.
-Mike
Re:CLR and so-called language independance
by
blamario
·
· Score: 2
Yes, from the technical viewpoint both JVM and CLR suck from implementation of multiple languages. However, Sun has never cliamed otherwise. Microsoft is marketizing the supposed CLR language interoperability like it's an inalianable human right.
Re:CLR and so-called language independance
by
ansible
·
· Score: 2
It's a sad thing that the JVM also sucks for non-Java-like languages.
Well, not quite. If you're familiar with Python, check out Jython at jython.org. Same great taste, different VM. If you're writing pure Python code, there's only a few minor differences (outlined at the site), and half of those are bugs that C-Python should fix.
Jython also makes use of Java classes a snap. Some people use Jython to dynamically test components they're writing in Java. It can be good for just figuring out how stuff works, you can just pull up the Jython command prompt, start manually instantiating objects, and examining the results. That's a lot more convenient than writing noddy test programs.
But the fundamental problem for other languages (with different conceptions of OO) make a poor fit to the JVM, and likely the CLR too.
Advantages of C# over Java
by
crush
·
· Score: 4, Interesting
This is a nice clarification, but it makes at least one assertion that is a little questionable: what are the advantages of C# over Java? I asked this question yesterday and no-one responded. Here Miguel claims (in the What is Mono? section):
Seasoned industry programmers will notice that the above is
very much like Java and the Java VM. They are right, the above
is just like Java.
The CIL has one feature not found in Java though: it is
byte code representation that is powerful enough to be used as a
target for many languages: from C++, C, Fortran and Eiffel to Lisp
and Haskell including things like Java, C#, JavaScript and Visual
Basic in the mix.
But this is surely misleading? It's true that this doesn't exist at present, but there's nothing in theory to stop it being implemented (isn't Java sufficiently "powerful" for this to be done?)
If Java is capable of doing it, then why not work on making compilers for those languages to Java's bytecode instead of working with a new language?
Re:Advantages of C# over Java
by
SteveX
·
· Score: 3, Flamebait
Sun proved, when they sued Microsoft, that they don't want Java-the-language being used to generate code to run anywhere but inside Java-the-VM or have direct access to anything but the Java classes.
Microsoft's extensions to Java were allowing Java code to directly instantiate and use COM objects; a really big part of.NET. The CLR is designed to give easy access to the underlying operating system (in a managed manner). Very different goals.
If Sun would have been willing to allow Java to be used this way, then Microsoft would probably have stuck with Visual J++ and the Windows Java framework they were already working on, and we wouldn't have C# or.NET.
- Steve
Re:Advantages of C# over Java
by
seebs
·
· Score: 3, Insightful
You're right. If Sun had wanted Microsoft to have complete control over a large and proprietary market segment of incompatible Java code, allowing them to blame Sun for incompatibilities introduced by Microsoft, they could have allowed this.
I see no advantage in allowing standards to be suborned like this.
-- My blog: http://www.seebs.net/log/ --- My iPhone/iPad app: http://www.seebs.net/seebsfrac/
Re:Advantages of C# over Java
by
bnenning
·
· Score: 5, Informative
Sun proved, when they sued Microsoft, that they don't want Java-the-language being used to generate code to run anywhere but inside Java-the-VM or have direct access to anything but the Java classes.
Not true at all. Look at Apple's Cocoa framework, which allows you to write native Mac OS X applications in Java. Sun has no problem with that, because Mac OS X also includes the 100% compatible pure Java envrionment. Sun sued Microsoft not because MS added features, but because they deliberately introduced incompatibilities in the core Java classes.
-- How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
Re:Advantages of C# over Java
by
Genady
·
· Score: 2
Following this reasoning is Sun going to pound Apple next for allowing Java access to Cocoa Frameworks? Or do compiled binaries out of ProjectBuilder run in a JVM?
--
What if it is just turtles all the way down?
Re:Advantages of C# over Java
by
seebs
·
· Score: 2
Well, of course; that's the whole point. Native access to *THE* OS. Windows, that is. Never anything else, not for any length of time.
You play the game nicely.
-- My blog: http://www.seebs.net/log/ --- My iPhone/iPad app: http://www.seebs.net/seebsfrac/
Re:Advantages of C# over Java
by
praedor
·
· Score: 2
And it is the extension inherent in C# that will make it not work out as the dreamy-eyed Miguel rhapsodizes about (running a.net binary seamlessly from the gnome desktop INDEED). Wine can't make more than a fraction of windoze apps run even though all the requisite win32 APIs are published and have been for years. Suddenly a broken/crippled version of C# is going to sidestep all that and with Mono we'll be able to run thos.not apps. Yeah, and my bunghole smells like jasmine.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Re:The moral of the story is...
by
tadas
·
· Score: 5, Funny
...that The Register is nothing more than the IT version of a British tabloid.
Kinda like Slashdot...
-- This page accidentally left blank
Patents still a showstopper
by
Straker+Skunk
·
· Score: 3, Informative
That doesn't help much. If it has patented yet unlicensed technology, then it can't be legally used in countries where the patent is recognized.
This is why free crypto software for a long time had an internal-RSA vs. external-RSAREF configuration switch for a long time, with the stipulation that RSAREF had to be used within the U.S.---as using internal RSA would leave you open to an infringement suit. (RSAREF was the only freely licensed implementation of RSA available, before the patent expired last year)
I think it's clear that using common bytecode offers some advantages to developers, as outlined by Miguel. It also seems like CLR can offer performance advantages over Java since it basically just maps native API calls to functions in the.NET framework, much like wxWindows or anyGui do for GUIs. If the classes are properly documented, it should be possible to match their functionality on other operating systems.
So what is Microsoft aiming for? Probably two things:
- Kill Java. They need to kill it before it becomes too wide-spread. They have a really good shot at doing so given Java's performance problems [insert thousands of flames from Java developers here] and C#'s advanced features like better encapsulation (you don't need to call set() and get() methods, you can map them to the = operator, for example).
- "Write once, run on Microsoft". In order to run.NET apps on another platform you would have to virtually re-implement (or substitute) the entire Win32 API, which will probably be modified at an ever-increasing pace. No company can keep up -- only open source may be able to do that, but Microsoft's opinion might be that open source is no real threat for the platforms where they want to deploy.NET. (After all, even the average Slashdotter seems to think that Linux will never be ready for the desktop -- quite idiotic, IMHO, but the more people believe that, the better.)
Insofar Ximian's Mono project may be a good thing as it offers a migration path where previously none existed (from Windows to Linux), even if.NET apps don't run properly on Mono (think about all the GUI stuff that can go wrong, for example). Besides, Java has never really been a mature technology IMHO and it's about time to replace it with something better, even if superficially less cross-platform.
Now the advantages of having a modular architecture become clear. Mono cannot break Linux, it cannot break X, it can probably not even break GNOME. There are more alternatives than you can throw a kernel image at if something goes wrong. Let's just wait and see what the Mono guys come up with. The only people who should worry about this are Sun and their followers. And maybe RMS.
Java is no less immune to bad programmers than any other programming language.
C#'s advanced features like better encapsulation (you don't need to call set() and get() methods, you can map them to the = operator, for example).
This isn't an advanced feature nor is it better encapsulation. It is sugar that probably becomes bitter-tasting in time.
Java has never really been a mature technology IMHO and it's about time to replace it with something better
Java is very mature. Don't confuse Java and its VM with the plethora of half-assed "me too" APIs that come and go. At its core, Java is solid.
The only people who should worry about this are Sun and their followers. And maybe RMS.
Add the many users of GNOME who avoid Microsoft software out of principle. There are many people who view anything Microsoft-flavored as a genuine risk (sort of like a flea-infested rat--does it carry the plague?). A.NET presence in GNOME will force these users to find a new desktop environment, and they will do so without hesitation.
Actually, C# has one feature which I consider to be a godsend for dealing with resource deallocation.
In java you write
resource blah = new resource();
try
{
// use some resources
blah.Use();
}
finally
{
blah.Dispose();
}
while in c# you can write
using (resource blah = new resource())
{
blah.SomethingElse();
}
I like this for the same reason I like for loops- everything's right there at the top, blah is scoped to only inside the curlies, etc... Granted it's just some syntactic sugar, but it's really good syntactic sugar.
C# objects that need to be cleaned up after you are done with them (ie objects that reference resources that are not garbage collected like file handles or db connections) implement an interface called IDispose. IDispose has a single method named Dispose, which should be invoked when you are done with the object. There are also destructors, but I'm not terribly familiar with them. They have some of the same problems as the java ones
The using keyword is a little syntax-sugar to explicitly control the lifetime of a resource. Anything declared at the top of a using block is immediately disposed of when the end of the block is reached. Otherwise, it would get GC'd like anything else.
using (CFoo foo = new CFoo()) {
foo.Song(Sizes.Little);
foo.Dance(Sizes.Little);
foo.Seltzer(Sizes.Little, this.Pants);
}// foo is disposed of right now.
A.NET presence in GNOME will force these users to find a new desktop environment, and they will do so without hesitation.
I recommend GNUstep. No, it isn't polished yet, but we already have a nice mail client, an IDE, and a GUI design application. And we hope to have a calendar/planner application coming soon. Oh, and you can easily compile Cocoa (Mac OS X) apps under GNUstep too (and vice versa).
Everybody who can help us should give it a shot. We just need more people involved in the project.
You're Not Surrounded by Girls?
by
Greyfox
·
· Score: 4, Funny
Dude, what's wrong with you? The rest of us are swimming in chicks, piles of cash and fast cars! You must be doing something wrong! As long as you follow the instruction book they send you when you start an open source project, all this can be yours. It outlines in clear steps exactly what you need to do to make your fortune using Open Source software, and it always works! Didn't you get yours yet?
--
I'm trying to teach myself to set people on fire with my mind... Is it hot in here?
Re:You're Not Surrounded by Girls?
by
geekoid
·
· Score: 3, Funny
Thanks Mr. Carmack...
-- The Kruger Dunning explains most post on/. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
Re:You're Not Surrounded by Girls?
by
pinkpineapple
·
· Score: 2
Although I like girls too, I'd rather be surrounded by cute guys (with ear ring if possible.)
PPA, the girl next door.
-- -- I feel better now. Thanks for asking.
multi language support
by
sfraggle
·
· Score: 2, Funny
I want to encourage other developers to look at targeting
existing compilers and interpreters to the CLI: JavaScript, Basic,
Perl, Python, C++, and maybe even get gcc core to generate CIL
bytecodes.
-- were you expecting to see a sig here? perhaps you'd rather see the inside of an ambulance!
Ok... so here's your kudos.
by
Da+VinMan
·
· Score: 2
Nice call broody.
Happy?:+)
--
Please mod this post only if you think others should/n't read this. I have enough ego^H^H^Hkarma. Thanks!
Re:Can run any language, as long as...
by
SteveX
·
· Score: 2
Think of the IL (the language the CLR runs) as an instruction set akin to a processor's native instruction set.. Obviously every language can be compiled to to run in assembler..
It may be more efficient to redesign the language to work with the underlying stuff, but I don't think it's a requirement..
- Steve
Miguel is naive
by
pubjames
·
· Score: 5, Interesting
Miguel's arguments sound all well and good, but I think he is fundamentally naive about Microsoft.
Microsoft have fought tooth and nail over many years to build their monopoly. They will do whatever it takes to protect that, within the boundries of what they can get away with these days.
Some parts of the.NET framework are still vague. Now, why might that be? The naive might think it's because Microsoft still haven't worked some of the details out. As has been stated many times before, Microsoft is betting the farm on.NET. Microsoft are a very competitive company, with one of the most lucrative monopolies in the world. Think about that. Imagine how Microsoft will respond if they start to loose market share, or control over developers, because of Mono.
As long as Mono stays a little project (which it is as far as Microsoft is concerned) then they will play nice. They will be able to point to it and say "Hey, look, even the Open Source people are supporting.NET! That's because it's great technology and these days we're such nice people." But as soon as they feel it's a threat, well...
Don't be naive Miguel. You are implementing a copy of a system still under development the world's largest and most aggressive software monopoly. Think about that.
Erm. Yes. I think that was my point. Maybe you misread my post.
Miguel is naive. Read what he says. He even suggests Microsoft might like to fund Mono. Now, is that naive or what? Microsoft identify Linux as being their current number one threat, and Miguel want them to fund Mono! Well, if they did, it would be to control or kill it.
Oh, I know all about capitalism and competition. I'm afraid that Miguel doesn't understand how competition in the software industy works.
M$ doesn't really understand it all either. If they did, they wouldn't CONSTANTLY be in legal trouble for violating the rules.
THAT fact should give one pause for wanting to have ANYTHING to do with them. Convicted illegal monopolists and unethical criminals and Miguel wants to play with them. Looney.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Actually, what he suggested was simply that he would like to be PAID by Microsoft.
One wonders if he would like to be paid by Microsoft to do the controlling or killing of Mono.
Free platform from non-free roots
by
Malc
·
· Score: 2, Insightful
I particularly liked his comment about Linux coming from AT&T's non-free environment. He seems to imply that the.NET framework is to the future what AT&T UNIX is to the present.
Re:Free platform from non-free roots
by
geekoid
·
· Score: 2
Yes, like MS won't go after people who clone there stuff for other platforms.
-- The Kruger Dunning explains most post on/. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
Embrace, Extend, and Endorse
by
SirSlud
·
· Score: 2
> They have incorporated many ideas from Java, and they have extended it to address new needs that developers had. They took where Java left off.
ROFL. Well, there you have it! An endorsement for 'embrace and extend'. We all know about MS's attempts to do it with Java, so I guess thats what C# is. Java, embraced, extended. Kinda like when the CIA was caught doing something bad, they lopped off the bad department, christened it unaffiliated with the CIA, and thus, we have the NED. But I digress. Anyhow, I just found it interesting just how upfront and accepted this approach is now.
-- "Old man yells at systemd"
Re:Embrace, Extend, and Endorse
by
TheAwfulTruth
·
· Score: 2, Insightful
The entire universe of computers (And all other engineering worlds) works on "Embrace and extend" You can't blanket everything as bad because of it. Sometimes it's bad but usually it's good. Labeling something "Embrace and extend" is not by default a bad thing. Quite the opposite. Aren't KDE and Gnome embracing and extending the xerox/apple/ms desktop metaphore?
Java may have been a nice idea but it's implementation and it's owner were terrible. So move aside sun, let someone else try...
-- Contrary to popular belief, coding is not all free blow-jobs and beer. Those things cost MONEY!
Re:Embrace, Extend, and Endorse
by
Anthony+Boyd
·
· Score: 2
Java may have been a nice idea but it's implementation and it's owner were terrible. So move aside sun, let someone else try...
Yes. Sun isn't perfect, so let's replace them with, um... Microsoft. Yeah. They're much more trustworthy.
Glad to see some clarification
by
I_redwolf
·
· Score: 4, Insightful
I have two things I would like to point out to you. Actually after preview it's alot of things.
So when you copy your binary from Windows that was compiled with the Visual Studio.NET and run it on your Unix platform, it will just integrate nicely with your GNOME desktop.
How exactly do you plan on doing that, as I'm aware of, at least right now. Microsoft hasn't submitted a full spec to the ECMA. Again; I will mention that Microsoft has never done something like this in the past; they've always blocked people out.
Your ideas on writing pieces of code in different languages is agreeable except in this case. Writing chunks of programs or pieces of code vital to the overall program in a different language which may or may not work to spec is just asking for trouble. (IE: using asm for sound routines etc etc many examples)
The.NET Framework stands on it's own feet, and developers in the Windows world love it....... We are witnessing the creating and deployment of a new standard...
A standard that we will have to fight to operate with in the long run. Instead of unix camp supporting those ideals we should be supporting things like java or creating or own stuff. Just because windows developers love it doesn't mean it's not java with a couple of addons. If it was wildly different in any manner I would agree that we should be looking to use it; however this is not the case. A standard already exists and that standard is java
The only restriction is that all of our work has to be free software. But other than that, I am ready to take money from anyone or listen to any kind of proposals for making this happen
We all know nothing involving money comes without a price. Don't blind yourself to that. If someone gives you money, they want something. For Microsoft it'd be whatever it took to end the free software movement; period. Try not to be a pawn in their game, try not to play the game period.
Your comment that follows above italicized voids most of what you said earlier regarding inteoperability.
I sincerely think that you need to assess what your true goal is. This isn't nirvana, this isn't a place where you can walk into the middle of the street and not get hit by a car. This is a cruel world, I fear your intentions are good and your heart and mindset is in the right place but don't be fooled, Microsoft and others make this a very cruel industry. There are certain things that you can and can't do and currently they set the rules, this is what we are trying to break so that we don't have to worry about if a standard is submitted and we base our code on said standard that it will work across the board. Building upon their standards which do nothing to help that only helps them.
Thanks for your clarification it did clear up a couple of points though.
I believe Microsoft actually obtained a software patent on at least one of the password hashing algorithms used in NT. If Microsoft ever pursued enforcement of that patent, anything that generated hashed passwords for use in the Samba password file could be at risk.
i will laugh my ass off
by
Anonymous Coward
·
· Score: 3, Interesting
when this comes to its only possible conclusion: microsoft silently encourages this effort until lots of gnome folks understand how to write c# and write to the.net fwk apis - then they will crush mono/open source.net; they'll kill you with licensing and incompatibility; they'll take you to court and screw you silly.
and then you'll have a huge group of people that like coding c# using the.net fwk class libraries - what do you think those folks will do? learn something else, or put those skills to work - often for money - on windows.
and i will laugh my ass off at you idiots.
Re:i will laugh my ass off
by
praedor
·
· Score: 2
Know what else is funny? I'm laughing right now. It's the FACT that both Ballmer and Gates ARE laughing about this whole thing RIGHT NOW. They are in an office laughing and getting so exciting that they are actually rubbing themselves.
This whole thing is going EXACTLY the way Gates/M$ wants it to. There is no "danger" here from Mono/Miguel. They are a joke, accidently and delusionally serving the best interests of M$. You HAVE to love this. HALLOWEEN.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Miguel's Comments
by
John+Kelvie
·
· Score: 5, Insightful
1) I thought Miguel's arguments for why he's getting behind the.NET Framework(the CLI and CLR to be specific) were excellent. I have read much about the Mono project since the announcement of its inception, but this is by far the best explication I have seen. If he hasn't made me a believer, he has at least made me very curious.
2) As an active Java developer, I think that this may very well be the BEST thing someone could do to help Java. The directions Microsoft are going in with.NET to me seem like the obvious directions(licensing as a standard to ECMA, support for multiple languages, etc.) that Java should be going towards, but, for whatever reason, is not. I think.NET(and Mono) if they pick up steam will give sun the kick in the ass they need to get moving on some of this stuff that they are not.
I personally think the main reason Sun has not further opened Java up is because they have not perceived the need to. They are doing some calculus in their head to make it as open as they need to gain developers from Redmond, but still try to hold onto as much as possible of it for themselves.
3) My largest concern with this, and I didn't notice Miguel addressing it there or in the followups, is the patent issue. My worst fear is everything would go incredibly well with mono: diverse compilers, robust libraries, etc. and we would all start to build code around it, and then about 5 years down the line Microsoft whips out a patent and demands royalties for all the labor that we have done under the illusion that it would be free.
I would love to see Miguel address this concern. I cannot speak for others, but I would be a long way to considering getting involved with Mono(whether it mean using their tools to develop, or even contributing to the developmen of libraries, languages, etc.) if I felt better about these things.
Actually, Miguel has already discussed patent concerns in this recent Slashdot Interview done by Microsoft's Carnage4Life:
We are trying to stay on the safe side regarding patents. That means that we implement things in a way that has been used in the past and we are not doing tremendously elaborate or efficient things in Mono yet. We are still very far from that. But just using existing technologies and techniques.
My worst fear is everything would go incredibly well with mono: diverse compilers, robust libraries, etc. and we would all start to build code around it, and then about 5 years down the line Microsoft whips out a patent and demands royalties for all the labor that we have done under the illusion that it would be free.
This is definitely a valid concern. However, what makes you so sure that the same thing couldn't happen with Java. In fact, since Java still hasn't been submitted to a standards body, I am thinking that C# may, in fact, be a safer route than Java. [Wow, that felt weird to say.]
Microsoft whips out a patent and demands royalties for all the labor that we have done under the illusion that it would be free.
IANAL, but common sense dictates that a stardard cannot be patented. Otherwise, who would implement ANY standard not knowing if/when the 'owner' would want to collect royalties. I find it very unlikely.
-- -----
rL
Re:Miguel's Comments
by
alext
·
· Score: 2, Interesting
What made you curious? As a Java developer, you'll be aware that there's nothing radically new in the Dotnet CLI or C# and you'll be highly sceptical about claims of portability between Dotnet and Mono, given the difficulties we have today with AWT, SWT, Swing, WebLogic vs. WebSphere etc.
It seems that you're most excited by the prospect of applying some pressure to Sun to open up its IPR. Well, I think there are many ways of doing that, most of which will not involve putting MS in the driving seat of Linux application development.
Alan Cox 1 Miguel 0
by
praedor
·
· Score: 5, Insightful
Sorry, even though Miguel does a good job of going into an indepth "answer", Alan Cox takes all the air out of the sail.
Java is NOT broken or lacking because it is inferior. If it is lacking anything, it is because no one has gone the one step further and fixed it. Do THAT instead of rebuilding from M$-poopie.
Finally, the simple statement by Alan that as soon as M$ decides they're a pain in the ass, poof, there goes the VM into patented special-feature land (see kerberos for a similar f*ckjob) and no.NET viralware will run via mono. Add this to the FACT that the predominant C# compiler in use will be the M$ version. De facto factamundo. The M$ version will be "special" while the free variants will be broken. Just like the PROPER implementation of java (non-M$) was "broken" with respect to the illegal perversions that M$ inflicted on it (and thus we have C#).
M$ is not changing its tune on whit. This is NOT a gift to the developer community. It is NOTHING but a means of continuing lockin (and conversely, lockout) and moola into Gates pocket. Nothing more, nothing less. It may be a nice way to build stuff at some future time for linux but it is NOT a means of being able to run some.NET windoze binary on linux (never happen except accidentally because the code was simple enough not to include "broken" M$-only freakishness). You will find that most of the important stuff will not run. Developers will STILL not make linux-friendly stuff because the bulk of the market is in M$-doze-land and they can run the broken/perverted.NET M$_VM-only stuff.
Stone cold fact. Sing the praises of mono for having the POTENTIAL of providing a nice development environment for linux coders (though unnecessary if they'd instead focus on the correct path of Java) but don't delude yourselves that this will mean windoze binaries working on linux.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Re:Alan Cox 1 Miguel 0
by
Arakonfap
·
· Score: 2, Interesting
WHAT are you talking about??
Better yet, WHAT are you comparing MONO to? Java? Well, there's lots of complains about Java out there..NET's intermediat langauge is intended to be compiled into native code, for one thing. C# has lots of nice development features that Java is sorely lacking. HOW can anyone fix Java when Sun is in official control of it, and is always late in implementing features? (And then does such things 1/2 way?) Yes, Java performs better then C/C++ in some situations, but most of those situations are lacking real-world features, like a fast/native-looking GUI.
Mono does Not need to be compatable with Windows in order to be a success. This was mentioned in the reply. The concepts, and the basic language of C# can't be bastardized by MS since it's already been submitted for standardization. They can add things to future versions, but how is that different then the HUNDREDS of C/C++ compiler problems out there?
Mono and the CLI will offer an easier development envirionment, allowing developers to use the best tool for the job w/out worrying about cross-language bindings. It will allow developers to easilly change from Window's C# to Mono's C# (Even if they can't use some specific language feature!). It will be a success when completed in it's own right, no matter what happens w/the MS implementation because it is good technology.
No doubt that IF it works, it will provide a nice development environ for coders. What will also happen is there will be hidden patents that will affect the whole thing (Mono) and M$ will bring them out swinging at a future point.
Even if THAT doesn't happen, there will be NO real compatibilitiy with.NET. The important, really "good" stuff will require windoze-based platforms. WindozeCE, WindozeXP, Windoze(Whatever). Windoze will remain, in imbedded form and on whatever computer object people use..NET operabilty will REQUIRE that one own and use a system containing an OS from M$. Anything else will have to licen$e from M$ to get to work properly.
.NET is not a forgone conclusion. It is attracting negative attention from consumer groups and soon the states. It is a problem, not a solution (in its M$-centric form where all information and storage and tabulation leads to MS). If the law and intelligence does what it is supposed to do, there will be no all-pervasive.NET. Ever.
I hardly think my personal computer will not be around in 5 years. I also doubt linux will be gone. I DEFINITELY doubt that it "wont matter" what OS is run on your system. M$ has made it repeatedly clear that it DOES matter - to them. Whether it is embedded in a cell-phone, a tv-cable tuner, a microwave, it should run M$ windoze. Those systems will require windoze-friendly binaries.
Over my dead body.
Giving up, tossing up the hands, and simply saying "Let M$ own the internet and the universe" as Miguel is objectively doing (regardless of his INTENT) is the wrong way to go. If he wants to cheer this mess on, he should drop ALL reference to M$ and.NET and stick ONLY to what it MIGHT offer linux developers in 4 years. It wont offer DIDDLE with regards to.NET and anything having to do with windoze.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Re:Alan Cox 1 Miguel 0
by
ink
·
· Score: 5, Insightful
Java is NOT broken or lacking because it is inferior. If it is lacking anything, it is because no one has gone the one step further and fixed it. Do THAT instead of rebuilding from M$-poopie.
Actually, Java is broken when it comes to multiple language bindings. Java (the language) was written with Java (the virutal machine) and they are designed to work hand-in-hand. It's easy for you to sit there and complain that someone should be re-coding Java so that it has Perl, Eiffel, Haskel, Visual Basic, and any other language's bindings; it's quite another for that to be done.
All this is very different from the Java approach, "use my language or die". Only three years ago, Scott McNealy wrote "Think Java. Write new applications in Java. Rewrite legacy apps with Java. Don't upgrade or downgrade. Sidegrade instead to a Java desktop device... I don't understand why anybody would be programming in anything other than Java" (in Open Finance, a Sun publication, Spring 1997). I'm not sure anyone would still dare speak like that today..NET recognizes that the world is multi-lingual, especially the world of component-based development, and that the duty of a component model is to help interoperability, not force a language corset onto everyone.
Most of the criticisms of Mono stem from those who misunderstand dotNet and Mono (you included). Mono is not trying to integrate services with Microsoft's dotNet services, they are trying to write a good component model. If Microsoft decides to change the internals of their dotNet implementations such that it "breaks" compatibility with Mono, then we've still lost nothing. Do you understand now? This isn't the "Samba problem" re-hashed.
All well and good but then it was brought on by bullcrap like "running a windoze.net binary seamlessly from the Gnome desktop" (to paraphrase). My ass. Only trivial windoze.net apps might actually work. REAL non-trivial apps will flat-out NOT work.
If you want to bring a neato development tool/environment to linux/*nix so that it is easier to write linux/*nix code fine, but never ever make any mention of running.net crap from the linux desktop. That is fantasy - trivial testruns be damned. The win32 APIs are published and available too aren't they? So why is it that after YEARS that wine only allows a mere fraction of a percent of windoze apps to run on linux? The APIs are published for all to see.
Nice development environment? No problem. Make ANY mention of running windoze binaries from linux and you're talking out your ass and dreaming the dreams of the Freedows people and probably the wine developers when they first started out.
Finally, by accepting M$ C#, you ARE feeding the monopoly, helping the monopoly, supporting the monopoly against good ethics and against good judgement.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Hehe. Yeah, and the intention/plan by M$ with.NOT is that most those PCs, tablets, handhelds, PDAs, etc, will be running a variant of windoze. Thus,.NOT stuff will work well with them, naturally. If you are a competitor, the price of making them work MOSTLY OK (let's say 90%) will be a nice licensing fee, passed on to you, the purchaser of the competitor's PC, tablet, handheld, PDA, etc.
You get it coming and going if you buy into.NOT. M$ is a MARKETING company that just happens to deal with software and shit. Any useful trinkets that fall around are unintentional and incidental to the goal of the M$ Marketing machine. Forget ANYTHING having to do with making linux work properly with.NOT. You shouldn't want that anyway - otherwise why not just cave and buy their OSes, use Hotmail, get a passport and give them your private data, your financial data, and your soul? THAT is what.NOT is REALLY about.
Any gee-wiz nifty crap about the.NET FRAMEWORK is incidental and accidental. No bones about it. Don't be getting all starry-eyed.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
love this phrase - if you just invented it (and a quick google search couldn't find any mentions) then my hats off to you
Re:keep chasing the taillights wag the dog
by
Anonymous Coward
·
· Score: 2, Interesting
and history with M$ and this kind of stuff is long and basically the same....YOU ARE FSCKED !!!
Read the explanation. That's covered. They're implementing the ECMA spec and adding seemless access to GNOME. If there's compatibility with Microsoft's implementation, that's nice since portability is free. If Microsoft deviates from the standard, it's a shame Mono is still has merit, especially language independence which was always important to GNOME. Essentially, Mono is cherry-picking features from.NET.
Okay, you're asking, why not use Java's JVM since it supports multiple languages. As someone pointed out in the gnome lists, Java, like TCL, is Turing complete so it can support any language your CPU can. Suppose you tried to implement Java in TCL? Would you be pleased with the performance? Probably not. Java's JVM lacks several features that make running languages like C++/C, Lisp, and Haskell fast, including:
support for tail calls
less heap allocation, due to
value types
function pointer types (rather than heap-allocated closures)
byref arguments (rather than returning multiple values in heap-allocated objects or arrays)
support for unverifiable code (which can avoid the need for some runtime checks)
The.NET's CLR gives you these features. If Java's JVM were open source, the Mono team could easily extend the JVM to support these features. It would certainly make life a lot easier. Unfortunately, if they did, Mono would get little commercial support, and they'd receive a call from Sun's legal department. I personally hope.NET and Mono force Sun to do the right thing and extend the JVM to efficiently support other languages.
Java is nice, but the take it or leave attitude of Java is the reason.NET was not laughed out of existence.
A Rational Approach
by
ChaoticCoyote
·
· Score: 4, Insightful
Miguel de Icaza has committed two sins against the "spirit" of "free" software:
He doesn't hate Microsoft.
He wants to make money.
As I understand it, Miguel is looking at the CLR part of.NET as a productivity tool; he believes that Ximian developers will create applications faster and more reliably using a clone of Microsoft's technology. And he is very valid in pointing out that cloning.NET will follow a long tradition of "freeing" proprietary technologies. If GNU can clone C, C++, Java, Word, and what-not, why complain about cloning the.NET CLR and C#?
Miguel is not forcing anything on anyone; Gnome and GNU will not be dependent on Mono, and Mono only imposes on those who wish to use it. So long as Miguel protects existing free code from proprietary contamination, I see nothing wrong with what he's doing.
As to whether he can succeed -- well, I think he's bitten off more than Ximian can chew, in that implementing certain pieces of the.NET CLR and VM is unlikely to attract hordes of Windows-based developers, nor is it going to offer the functionality that will allow cross-platform development. Perhaps the only "evil" involved here is that Miguel's efforts may legitimize Microsoft's monopoly as a false example of the "openness" the monster of Redmond. We'll need to keep an eye on that.
In the end, Mono will sink or swim based on its merits; if developers don't like Mono, they won't develop for it, and it will go the way of the dodo. On the other hand, if Mono works, it could be a Very Good Thing by making application development easier for Linux. Time will tell.
Re:A Rational Approach
by
bryanbrunton
·
· Score: 2
Your definiton of "free" appears to only be "free as in beer", while the real people behind open source software value it because it is "free" in a different way.
You are right that Ximian has bitten off more than it can chew. As it is highly unlikely that Ximian is profitable at this point, its quite likely that Ximian won't survive long enough to actually use Mono in any form that produces revenue. Small startups like Ximian in this day and age are not in the business of doing fundamental R&D on development platforms. I'd like to know how this waste of money is rationalized to Ximian's investors. What mono based products will Ximian release in two/three years (when the platform is ready) that can justify the expenditure of this capital? None. I do hope that they can survive on the products that they have released and will be releasing that don't use Mono, but from a business perspective hiring 5 guys (300,000 per year expenditure) to work on this project is utter insanity.
Application development for Linux already is easy. With the arrival of Kylix, C++ Builder, the many Java development environments, the maturation of QT, Python GUI alternatives, KDevelop, development under Linux isn't in the least bit challenging as compared to three years ago.
Perhaps Miguel's problem is that he has been programming in C and GTK+. How many fewer lines of code would Evolution have required and how quicker could have Ximian released products if he wasn't using those less than rapid development tools?
Perhaps the only "evil" involved here is that Miguel's efforts may legitimize Microsoft's monopoly as a false example of the "openness" the monster of Redmond.
Let me get this straight:
An open source developer implementing a STANDARD is legitimizing a monopoly? Please.
What Mono is all about is USING Microsoft's generosity to create a better GNOME development environment.
If that opens the doors to many more GNOME developers, how does that help the Microsoft monopoly? If programs can be easily ported between.NET and Linux how does that help the Microsoft monopoly?
The bottom line is that Miguel is legitimizing an open standard, not a monopoly. If Microsoft plans to deviate from the standard (ie. without publishing how), then why would Microsoft make it a standard in the first place? It just doesn't add up.
-- -----
rL
Re:A Rational Approach
by
ChaoticCoyote
·
· Score: 2
Note that I stressed how important it is that RMS and the community ensure the continued freedom (as in speech) of any "free" code that is involved in commercial projects (which includes work by the for-profit Ximian and its allies).
I don't wish Miguel ill, but I don't see how he's going to succeed. On that, at least, you and I agree.
Re:A Rational Approach
by
ChaoticCoyote
·
· Score: 2
Bah! Microsoft just submitted part of the CLR to ECMA; quite a bit of the CLR library is outside the "standard", and Microsoft has made it clear that "some" features of the CLR will only be available through licenses.
What Mono may do is provide Microsoft with an example of how "open" they are; it's a good defense when anti-trust talk begins to circulate.
I wish Miguel success, and hope he is lucky; perhaps he can influence Microsoft, too, for the good of us all. History suggests, however, that getting into bed with the beast is a prelude to being eaten...
Re:A Rational Approach
by
Chris+Johnson
·
· Score: 2
I can't think of the last time I've seen those words together, even in jest...
Microsoft's generosity
*snrk*
And you sound _serious_, too. It's hard to know whether to be amused or appalled...
How about parrot?
by
Dog+and+Pony
·
· Score: 3, Informative
From the statement:
The CIL has one feature not found in Java though: it is byte code representation that is powerful enough to be used as a target for many languages: from C++, C, Fortran and Eiffel to Lisp and Haskell including things like Java, C#, JavaScript and Visual Basic in the mix.
Let's forget for a minute what the source of this new byte code language, or standard, is. If it truly delivers the above, that would be quite an accomplishment, and probably a good thing. Remember I said, forget about the source for a moment...:)
What I wonder is, how does for example parrot measure up against that? Parrot seems to be moving quite slowly, but I might be mistaken since I am not involved. Since it apparently is the new engine for perl 6, I'd say it must have something going behind it.:)
Anyhow, one of the things with parrot is at least said to be the possibility to compile a lot of other languages besides perl, such as python or java into parrot byte code - something that indeed would be a good thing for portability and the ease of running a little of whatever on any platform. I am not sure how deep these plans actually go, and how feasible it really is.
But parrot is where I would like to set my hopes, so can anyone tell me - do I wait in vain? Is CIL really the way to go? Or are we, in reality, simply stuck with different compilers and/or interpreters for different languages?
Re:Can run any language, as long as...
by
mmacdona86
·
· Score: 2, Insightful
You betray a very limited understanding of the problem. The CLR (like the JVM) makes a number of assumptions about the nature of programs running upon it that a CPU can never make--things like the way stack frames are created, exceptions are propagated, methods are dispatched. If the language is not designed with the same assumptions, it can not run on the CLR (of course, if you are going to give up all efficiency, you could write another VM in C# and target the lanugage at that). All the languages that the CLR supports--even MS languages like VB--have been re-designed to work with the CLR.
Why Miguel Is Right - And a Prediction
by
captbunzo
·
· Score: 3, Interesting
Let me start out here with making a little bit of a prediction:
In 5-10 years, we will see the computer industry go through some variety of a revolution, when it comes to desktop computing platforms. The end result of this revolution will be a computing industry in which the specific desktop computing platform in use is
no longer important.
Let's face it. As much as we may not like it, the majority of the computing world uses some flavor of Microsoft Windows as a desktop computing environment. Now, we can argue about this from many different perspectives.
(My personal opinion is that Microsoft is not necessarily evil on account of this. To be honest, Windows is actually relatively useful -and useful is what companies require to survive. Rather, Microsoft is evil simply for what they are charging for their software. Sure, they can charge companies whatever they like (I don't care). However, the common man for his home computer should not be charged hundreds of dollars for an operating system and office software. That is truely the real evil of Microsoft and the Microsoft monopoly.)
Anyways, back to my point. Miguel is right because, like it or not, Windows is a reality that we have to coexist with. We can view this as contending or perhaps cooperating. Whatever the case, it is here and that is that.
Well, as Miguel said, Windows is here and that means that.NET is a reality as well.
Now, if Microsoft had done a terrible job with.NET, then that would be one thing. However, they didn't. End of story. No argument - it is a good implementation.
Therefore, it makes absolutely no sense for us to do our own thing. Especially considering the benefits that we will recieve due to actually getting along a little bit better.
Back to my prediction. I think that the computer world is heading toward a point where specific desktop platform is a non-issue. People thinking about the short term will fret about XP this, or Gnome that. However, something like.NET has long term consequences and effects that must be considered.
The journey to a non-platform-centric desktop world will have many parts. One of these will be the arrival of other competitors on the scene. That is hear, with wonderful options such as Linux/Gnome (foo on KDE) and Mac OS X. Ok, KDE can play too if they manage to provide things like.NET support in the future.
Other pieces of the puzzle are things that allow applications to be used from these multiple platforms. Well, suprise but some of these are already here. They best example to this is the internet. Other examples include emerging technologies such as the.NET framework, MONO, etc.
Anyways, once again, just my two cents. For what it's worth, I hope someone gets something from it.
(Go Miguel, go. Go Miguel, go!)
Re:Why Miguel Is Right - And a Prediction
by
praedor
·
· Score: 2
A prediction that will actually come true: Mono will fail at making.NET binaries EVER run on linux/unix. NEVER happen. EVER. M$ will NOT publish all the libs/apis, they haven't released the full mess to the ECMA and they wont. They need to hold back so they can do 2 things: 1) Collect licensing fees for access to SOME of the unpublished stuff, and 2) Hold some back for their own private use to ensure that M$ "solutions" work best and everyone else's is, well, broken somehow.
THAT is a prediction with meat on it and it will come true.
Point: M$ isn't evil because they have windoze, M$ is evil because of the BEHAVIOR of M$, the unethical, illegal behavior. It doesn't matter if you find windoze useful or good enough for certain things. In an of itself that is fine, but what is NOT OK and NEVER will be is the illegal, unethical behavior of M$ and Gates. It is the behavior and intent (take over the world, for all intents and purposes - control the means and manner of information distribution) that is evil.
Separate the OS from the overall beast. The beast is STILL evil and to be punished.
Miguel, incidently, is petting and feeding the beast with this whole fantasy of Mono thing. He is helping M$ create a bigger monopoly by taking over the internet and all transactions thereon, and he is helping M$ try to eliminate the PERFECTLY good and still developing Java.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Re:Why Miguel Is Right - And a Prediction
by
miguel
·
· Score: 2
Funny you should say that, because every day I copy my binary from Windows (mcs.exe) and run it on my JIT engine.
I routinely demo this at conferences;-)
This is not a far fetched prediction, I have been using this for months. Our interpreter ran its first code in September. Our JIT has been getting better every day (working since November;-)
Miguel.
Re:Why Miguel Is Right - And a Prediction
by
praedor
·
· Score: 2
The exception proves the rule, and so forth. I can run Half-life, notepad, and minesweeper under wine. I cannot run IE 5.0, Word (recent versions), and most of the widely-viewed as important apps.
Since I can run a mere fraction of a FRACTION of windoze apps under wine, does that mean I can run all apps under wine? Does that mean I'll be able to run any future app under wine?
It doesn't matter that wine and Mono are different. What matters is the way M$ does things. They do things to BREAK compatibility with alien systems, not aid compatibility. You can run app x in your JIT. Can you run all apps under it? Any reason to believe that M$ wont break things in the future (samba! kerberos! authentication protocols in vapor.NET)?
It might be a nice development environ in the future for LINUX. It is a starry-eyed fantasy to believe that it will have anything to offer for real.NET compatibility - and.NET isn't even born yet, it's still a fetus under scrutiny by consumer groups.
Certain aspects of.NET might be nice to borrow. But it is a bad model overall because its INTENT is not to give a gift to developers, it is to lock people into authenticating to M$ servers, store personal information on M$ servers, to collect internet transaction M$-taxes, etc.
Anything else is an accident and incidental. Borrow from it but totally separate it from anything to do with M$ and.NET. It wont work, M$ has no interest in having Mono work, most people will by default use M$ solutions that will be incompatible with Mono, etc, etc. Keep ALL talk of Mono strictly within the bounds of linux/unix where it belongs. It will be stillborn in the M$.NET abomination of services and M$ taxes and spying.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Marching down a dangerous path here.
by
Col_Panic
·
· Score: 4, Insightful
There are many things that greatly disturb me about Miguel's casual assertion that "Mono is just a free implementation that happens to implement a technology that was built by a proprietary company." His assertion to me was that "I will be writing some more free software using.NET, because I can produce more code in less time." This statement itself is completely baffling to me. If the point of the GNOME project was to "write more software in less time" and to hell with where the stuff came from and under what license, it would have never started in the first place. The reasons stated by Mr. de Icaza that GNOME was started had to do with the problems with the QT licensing with KDE, which was and still remains a much more complete and usable system.
People like me stuck with GNOME (I can remember a disasterous attempt to use way not ready for prime time 1.0 release on a college campus) because we believed in the GNU approach that GNOME was taking. Now that Mr. de Icaza is working at a high paid job, apparently none of this matters anymore, he has come to embrace the "whatever gets it done" mindset.
But would some one explain to me how a complete reverse engineering of a MicroSoft compiler and all the other bits and pieces of.Net is possibly "getting more done in less time." Not to meantion what is going to happen when MicroSoft says "no you can't do that" and sets out to put and end to it, and I think from the thier track record you can count on it. The only reason they haven't done so yet is that none of this has become a "standard" yet and Miguel seems perfectly content with helping them make it a "standard".
The notion that we should roll over and accept the fact of a.Net world flies in the face of everything the GNOME project asserted from the very beginning. They told us that we didn't have to accept proprietary standards, we could make our own. Now we are being told that it is OK to accept a "standard" that just happens to come from a proprietary company, in this case the worst of them, MicroSoft, because "I like it better" and "it will help me make stuff faster".
Well this is all just absurd. No matter how calmly he tries to assure us that everything will be OK, I think that anyone that hasn't been living in a cave knows what getting into bed in any way with MicroSoft will end up doing to you. You pick up a snake, you are going to be bitten. The only possible reason I could see for wanting to do this is for Ximian to slip in some non-free parts of Mono they want you buy (but it's OK cause it is just to connect to all the.Net stuff you already have from MicroSoft) the same way they did with evolution.
Re:Marching down a dangerous path here.
by
Sloppy
·
· Score: 2
Now we are being told that it is OK to accept a "standard"
that just happens to come from a proprietary company, in this case the
worst of them, MicroSoft, because "I like it better" and "it will help me
make stuff faster".
Hypothetically, let's say it's 1991 and you want a Free operating
system. Suppose AT&T has one that you like, but it's not free.
One fellow decides to clone AT&T's proprietary system. (Well, actually
he wants to clone a clone of AT&T system.) Got a problem with that?
As long Miguel only views it as a project to easily make
apps, there isn't a problem. He just needs to keep it clear in his
head that he's cloning an interface, not a whole system. The
interface is documented, and assuming there aren't any patent issues,
that is enough to make it so that it isn't proprietary.
But as soon as anyone gets illusions that having the same interface
between components means that they have a compatable system overall, they
are screwed. There is no chance that (nontrivial) Mono code will be
interoperable with (nontrivial) Microsoft code. Miguel won't be able to
run MS apps (or probably even apps generated with high-level MS tools) on
GNOME, because those apps will make calls to Windows native
components with deliberately obscure interfaces. If he falls for that
trick, he becomes Microsoft's slave.
-- As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
Re:Marching down a dangerous path here.
by
praedor
·
· Score: 2
I am shamed. You said it ALL in a clean, precise manner that I have been essentially trying to say again and again. I take STRONG exception to any mention of.NET compatibility or an ability to run M$.NET binaries on linux. Not a chance (beyond, as you say, trivial code)..NET is based on and dependent on continued butts in seats using M$ operating systems be they embedded or on a PC. That means specific cryptic tie-ins to the underlying OS which is incompatible with linux. Wine does marginally OK on the windoze apps-running front. No way will Mono do better. Probably wont do as well - its years behind and it has barely started.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Um, RMS basicaly said "That don't sound like something miguel would say. I would be suprized if it was true."
How is that "Flying off the handle"? (not that he dosn't).
-- autopr0n is like, down and stuff.
Re:keep chasing the taillights wag the dog
by
praedor
·
· Score: 2
ECMA spec be damned. It is incomplete and will remain so. The key things that WONT be in it, that is a CERTAINTY, will be M$-only. You want to get their benefit and run your code PROPERLY on computers? Ah, well you'll need the M$-C# compiler and the M$-VM. Anything else will fall short and just not cut it. Again, see kerberos, samba, etc, etc, for what to REALLY expect. M$ has not magically changed one iota. Not. One. Bit.
They will NEVER fully release to the ECMA the full spec. They will hold key parts back for their own use ONLY and with others, well, you can pay to license it if you want. Cost you a pretty penny but there you have it.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
One piddly point...that becomes a rant
by
dasmegabyte
·
· Score: 5, Insightful
Miguel, in an otherwise well thought out and well constructed rebuttal to TSH (Typical Stallman Hype), makes one comment I take great exception to...something to the effect of "CIL is Microsoft picking up where Java left off."
Excuse me, when the hell did Sun Microsystems "leave off"? Version 1.4 is coming out the door at any time, with such nice features as buffers and extensive regular expression support, and all of a sudden they've "left off"? Java will run on nearly every system ever created and in all sorts of unusual situations and suddenly Sun dropped the ball?
Look, Java is effing huge. People do write applications in it, and I'm not talking about ticker applets. Today's machines can run Sun's graphics engine as well as they can run GTK, and it's available underneath any OS. Any "work" that Microsoft is doing on the CIL has already been done by Sun, with the exception that MS' byte code executes faster and has better UI support.
But is there any wonder? An implementation of the CIL requires a lot of work on the part of the window management driver authors, meaning there's plenty of room for tuning. An implementation of Swing requires very little -- implement a fiew basic AWT classes and Swing, which is "100% Pure Java," will work atop the older class. Meaning that there has to be a lot more abstract code in Java. Meaning you can be damn sure your application looks the same everywhere and there won't be any glitches due to "factionalied" implementations.
Of course, most of the development world is still coping with the idea that different platforms require different code (hence the laundry lists inside Makefiles). The Java paradigm won't let you do that. It says, "write that shit once and deal with the slow down, it shouldn't be a dealbreaker for cross platform code." It shouldn't be. But it is. Many development houses can't get over this. Hell, I mentioned to our IT guy that I was doing our mailserver in java and he thought I meant an applet, scoffing "Write once, run nowhere."
CIL is an attempt to get under the skin of this, but it's a flawed attempt. Jesus, all the development time and heartache going into the optimization of x-platform windowing "frameworks" and "toolkits" where there already is one seems headstrong. Actually, it seems idiotic, and it's why I seethe whenever I hear somebody drop.NET like it's a great new IDEA.
"But C sharp has improved garabage collection, language integration and runs anywhere." Yeah, that's Java for you. "But.NET allows you to compile ASP code." JSP. "Tighter integration with IIS allows you to better utilize ISAPI." Servlets. "Serialization and persistance." EJB.
Jesus, why isn't Sun mopping the floor with these idiots???
Re:One piddly point...that becomes a rant
by
cgleba
·
· Score: 5, Insightful
For the same reason that DEC's Alpha is not mopping the procesor floor today.
Hell, DEC had 300Mhz *64-bit* Alphas out when P90s were "the bomb" and by the time Intel broke the 100Mhz barrier DEC was spitting out 500Mhz *64 bit* Alphas. Alphas were so friggn fast that they could emulate an x86 and still beat the true x86s.
Roughly 10 years later Intel decided to jump into the 64-bit world with the Itanium and the now defunct no-longer-developed Alpha line still beats the hell out of them. Yet DEC is gone and the Alpha has been officially scrapped.
Roughly 10 years after Sun, MS decides to get into the VM-language game. Currently they have nothing other then vaporware, some specs, alpha code and lots of hype yet Sun's been in the game for a long time. But yet people are buying books and training to be.NET developers like it's the best thing since sliced bread. Java versus.NET is like DEC versus Intel. DEC was in the game a lot earlier, was more mature at it and had perhaps even perfected the 64-bit game. ..in the end, though, Intel's Itanium wins because DEC was kicked out of the game by market share, propoganda, marketing, hype and poor business decisions.
Anyone who has been in the computer industry for any length of time KNOWS that the technologically superior or more mature product rarely wins. The person who screams the loudest about their product wins.
Let's hope the same doesn't happen with Java.
Re:One piddly point...that becomes a rant
by
ttfkam
·
· Score: 2
Jython is out for Python, the Rhino library is available for JavaScript, Apache Cocoon is recently implementing a Java-based Scheme interpreter.
I've heard of a Perl port from a while ago, but can't think of who did it. I think it was a research assignment and didn't go very far.
I know there is a REXX implementation out there too.
Moving on, if you want to count the "native" compilers, gcj from the GNU Compiler Collection has close integration with C++ to the point that they seem to mesh well. It's called CNI.
--
- I don't need to go outside, my CRT tan'll do me just fine.
Re:Actually, this is the way it is
by
infiniti99
·
· Score: 2
Isn't.Net different though, in that there are system libraries to worry about? I don't claim to be an expert here, I'm just going from what I have read and heard, but let's look at some crossplatform examples:
Java - you have a VM and a standard API that are with you wherever you go. Your API is limited, but you run anywhere. Life in a box!
Qt - you have an API that operates on all supported platforms. Each platform requires a separate build. The upside is you can link with native system libraries just like any normal program, and do specifics with win32, X, Carbon, etc.
.Net - a hybrid of the above. Your foundation is a VM, but you rely on libraries that exist outside of the box. Because the necessary libs may not be present on all platforms, your program may not be available everywhere (just like Qt).
.Net sounds like a nice solution to binary-compatibility though.
You want the long and short reason Miguel is so hot on.NET? Market share for Ximian apps, period. The technology will let Ximian write apps that they can sell to both the Linux and Windows markets. Pretty transparnt, really.
-- .technomancer
Re:Actually, this is the way it is
by
praedor
·
· Score: 2
Nah Not back to the drawing board, just back to Java where what Miguel wants is actuallly possible (the fantasy part, that is, of little binaries playing equally well on all computer playgrounds). The.NET binary crap running on linux is sheer, unadulterated, feces. I'm suprized he (Miguel) can stand the smell of all that feces gushing out his bunghole/cakehole. Frickin' delusional twit.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Microsoft has and will enforce .Net patents
by
Anonymous Coward
·
· Score: 4, Informative
Craig: "But look: we're a business, okay? We're in the business of
licensing intellectual property. So if it turns out that in the
future that business says, "Okay, we should license the patents to
people who use that in order to be compensated for the development
of intellectual property," maybe we'll do that. You're always
welcome to come and ask us to license anything from sources to
patents. But I mean, we are a business. We're not --
...
Craig:
Well, at the end of the day, if you have a patent, you enforce the patent if it's valuable to you. And so I think that Microsoft and other people who have patents will ultimately decide to enforce those patents.
Brian:
Are there any patents that apply or that will apply to implementers of.Net or Hailstorm?
Craig:
I expect there certainly will be. I mean, the patent process takes a long time.
Specifically, in what way are the Java bytecodes and VM "a bit more paranoid about things like security"? I've looked at both the specs and I don't see how this argument can be supported, but I'd seriously like to learn.
I spoke in ignorance, based on a belief that.NET supporters were serious when they were talking about the ability to run C, etc., in CLR. From looking at Microsoft's security overview, it does appear that they have things locked down pretty tight for the CLR's managed code execution.
Unfortunately, there aren't enough details there, and I was not able to find a good link to more details that would cover things like arbitrary memory access within a specific assembly, etc. Given the frequency of pointer passing in C based API's, though, I can't believe that any C code running in CLR would have much intra-assembly security.
So, it looks as though the CLR, when running managed code, at least looks as though it is on a similar footing to Java's security specs. The proof will be to see how much code winds up running within the managed CLR and how much winds up going unmanaged.
Great article!
by
ttfkam
·
· Score: 4, Interesting
I liked the comparison of technologies, but it misses a main point. Or rather, I believe its primary audience misses a main point.
.NET is not perfect. The JVM is not perfect. But I strongly believe that they are a step in the right direction. For example, the current choice(?) on UNIX systems is to have C-compatible exports for libraries.
While.NET and the JVM may be limited, let's not loose track of the fact that extern "C" {} and its ilk are far more limited. Instead of limiting languages to objects without templates and continuations, the current scheme of exporting function symbols and structs is downright embarrasing.
What would be really nice is using.NET as a library/component interface and leave each language relatively intact. For example, implement your library/component in the language of choice, but export the functionality (what is currently "handled" by library symbols) in a language-neutral but far more feature-rich manner.
Doesn't "Managed C++" allow for advanced C++ features that simply are not exported for use outside the codeblock? C# has "unsafe" blocks for its own bit-twiddling.
We're on the right track here. Let's not throw the baby out with the bathwater!
--
- I don't need to go outside, my CRT tan'll do me just fine.
Productivity over politics
by
GCP
·
· Score: 5, Insightful
Miguel's experience with.Net seems to mirror my own. It's a very productive environment that's a blast to work in.
Have you ever gotten used to working in a Unix/Linux shell then had to jump over to Windows and do something on the command line in *DOS*? Know what that feels like, that helpless feeling of losing all your magical powers?
That's what it feels like to work in.Net on Windows, then having to do some work in any current GUI app dev system on Linux.
If RMS thinks he or his minions can design a better architecture than.Net, let him prove it, but don't suggest that we have to learn to live with less for political reasons.
-- "Those who have never entered upon scientific pursuits know not a tithe of the poetry by which they are surrounded."
Re:Productivity over politics
by
miguel
·
· Score: 2
I love your example!
Beautiful, its going into my list of quotes;-)
Miguel
Those who do not study history, will repeat it...
by
justin+sane
·
· Score: 2, Insightful
Miguel is navigating dangerous waters that have wrecked other ships befoe him but he thinks himself a better captain. I have news for him: they were better than he thinks. As I see it, all of Miguel's arguments are sound and lull one into actually wanting to believe lions will lie down with lambs. Who can fault peace, love, and understanding after all? However, the real problem is not his logic but an underlying naieve assumption: that Microsoft has changed and will allow.Net to be cross platform when deployment volume becomes significant. When.Net starts to gain significant market share, they will do what they always do, add patent-protected feature that kills the cross-platform nature of their framework. It is in fact it is a deviously clever strategy--worthy of a Borgia Prince coached by Machiavelli himself. Give hope and encouragement to a large component of the open source developers which are givng Microsoft heartburn and let them devote an ever larger slice of their creative bandwidth and energy both feuding internally and developing to adopt.Net. Encourage them to do it--even help them walk deep into it and tie all their code to it inextricably. Allow.Net to change their architecture, setting the hook deeper. Then after the distraction has divided the open source community long enough and defocused Gnome, Mono and ensnared other open source projects, drop in a patented-feature that kills its cross-platform nature. They did it with Kerberos, then Samba, and lately NetApp using CIFS. I have absolutely no doubt they have not had a change of heart of strategy and will do it to Mono/.Net. It is only a matter of time. Voila--Victory Microsoft style. Miguel and Mono will be roadkill.
Not-so-rapid application development
by
nadador
·
· Score: 5, Interesting
Miguel's argument can be boiled down to this: (1) writing big applications sucks because complexity grows geometrically with each line of code, and (2) integrating code written in different languages sucks because complexity grows geometrically with each line of code in either language. Basically, Miguel is fighting the same fight that every software engineer has faced since the beginning of time. Complexity grows much faster than anyone can handle, and as soon as you let heterogeneity into the equation, you're basically screwed.
The only problem that a CLR supposedly solves is the maintanence of the bindings. Instead of binding Gtk to perl and python and ada and C and C++, etc., you bind it in a library in the CLR. Except that to access that new CLR binding, you need to have perl and python and ada and C and C++ compilers that target the CLR, which is certainly a more glamorous job than maintaining bindings for every language under the sun, but is *WAY MORE* complex.
Basically, the CLR is middleware for the desktop. It does nothing to decrease the complexity of the system, it just shifts some of the complexity to another software engineer. Applications get easier to write, but new compilers need to be written and maintained.
When Microsoft's writing the compilers and you're shelling out the cash, you're only responsible for your piece of it - the application. Obviously this is good for you. But the free software community is responsible for all of it, from compilers to run times, to new bindings, to applications. *We* have to do it all. I wonder if Ximian will really benefit from dispatching software engineers to work on Mono when they could be working on the applications. Companies that buy stuff from Microsoft don't have to send software engineers to work on Mono, but free software projects will "lose" engineers because they'll have to work on Mono, not their respective projects.
The challege that software engineers face in the future is constructing systems that actually reduce the complexity of applications, rather than just shift the complexity elsewhere.
--
Outside of a dog, a book is a man's best friend. Inside a dog, its too dark to read.
Re:Not-so-rapid application development
by
steveha
·
· Score: 2
The only problem that a CLR supposedly solves is the maintanence of the bindings. Instead of binding Gtk to perl and python and ada and C and C++, etc., you bind it in a library in the CLR. Except that to access that new CLR binding, you need to have perl and python and ada and C and C++ compilers that target the CLR, which is certainly a more glamorous job than maintaining bindings for every language under the sun, but is *WAY MORE* complex.
Nice summary. The big win with a CLR is that you need to write Perl/CLR once, and Python/CLR once, and so on; then you write each class library and interface for Mono once and everything just works.
Compare with the current system: for each new interface you add, you need to write the Python bindings, the Perl bindings, etc. etc. So you need to write an M*N matrix of bindings, where M is the number of interfaces and N is the number of supported languages.
Assuming the CLR works as Miguel thinks it will, you go from M*N to M+N, a huge win, even if writing the CLR interfaces for each language is much harder than writing some bindings. And the larger M and N become, the bigger the win becomes.
steveha
-- lf(1): it's like ls(1) but sorts filenames by extension, tersely
Re:Not-so-rapid application development
by
ansible
·
· Score: 2
Warning: I haven't looked closely at the CLR or the Python "VM".
I don't see why it's going to much harder targeting the CLR than it is to target the existing VMs out there. For example, Python already compiles to byte-code, and runs on the equivalent of a VM. They've already re-targeted it to the Java VM, I don't see why targeting the CLR would be much more difficult.
Unless there are some seriously funky parts to the spec, it shouldn't be that bad for some languages like Python/Jython, Perl, Smalltalk, and such.
Re:Not-so-rapid application development
by
nadador
·
· Score: 2
I agree. In many cases, I imagine it will be relatively easy to do. And there will be cases that it will really suck. But even assuming its moronically easy on every platform, you still have to do it. And someone has to maintain it. And when Ximian tries to track the spec that Microsoft will change as soon as Ximian gets up to the current spec, someone will have to mod it. All the time that gets spent on keeping the CLR right could be spent on the applications that people are trying to build.
All I'm saying is that a CLR type deal adds a lot of complexity to the system. I really do hope its worth it in the end because it'll be good for everyone involved.
I'm just suggesting that maybe some of us in the free software community should put our heads together to come up with ways of getting these kinds of benefits *without* increasing the complexity of the system.
--
Outside of a dog, a book is a man's best friend. Inside a dog, its too dark to read.
Re:Not-so-rapid application development
by
epukinsk
·
· Score: 2
It does nothing to decrease the complexity of the system, it just shifts some of the complexity to another software engineer.
This statement is true, but incomplete. Complexity doesn't just shift horizontally, it moves down. Instead of writing bindings for libraries X, Y, and Z in languages A, B, and C (3*3=9 projects) you just write one binding per language and all your libraries only have to be written once. (3*1+3*1=6 projects)
If you increase the complexity another notch and port your libraries to platforms L,M,N you all of the sudden have 3*3*3=27 projects (port each lib to each language, then port each of those to each platform). Whereas with the CLR you only have 3+3+3=9 (port VM to three platforms, bind three languages to CLR, write three apps for CLR)
To me, it seems it really is decreasing complexity.
-Erik
Re:Not-so-rapid application development
by
elflord
·
· Score: 2
And when Ximian tries to track the spec that Microsoft will change as soon as Ximian gets up to the current spec, someone will have to mod it.
I disagree with this. The goal of Mono isn't to act as some sort of "Microsoft emulator". This isn't WINE. They should for the most part work with the standard. However, some of Microsofts extensions stand a good chance of being included in the standard, and some are good enough to be worth using
anyway. Tracking Microsoft might be worthwhile to pre-empt changes in the standard, but I think the point of what Miguels doing is not to "follow Microsoft", but rather, to use a good technology to our advantage.
You're probably not dressing the part...
by
merz
·
· Score: 3, Funny
You need a shirt like this to remind the ladies that they find hackers irrestable. Women constantly say to me, "You know I do dig Unix... wanna go out?"
Re:Sure, and Sun's your best friend? Hardly.
by
Glock27
·
· Score: 5, Informative
Re-read your comment about the evils of Microsoft and apply the same argument to Sun and Java. What is stopping Sun from charging huge fees for J2EE libraries? Nothing. Just because they are not presently doing it does not mean they will not in the future as their hardware revenue dwindles in light of the x86 chip's performance/price ratio.
Sun does charge fees for J2EE. What made you think otherwise? What makes you think Microsoft couldn't charge huge fees for Windows XP server? (Oh yeah they do...)
Remember - it was Sun that renegged on ISO and EMCA standardization - not Microsoft.
Right, except it wasn't "not Microsoft" it was "because of Microsoft".
Sun has always stated it won't opposed clones (including open source clones) of Java, as long as they aren't called "Java". Microsoft's Java escapades were completely different - it licensed Java from Sun then proceeded to release "embrace and extend" enhancements.
Sun's "Java Community Process" is a complete sham and everybody knows it. Sun's vote is the only one that matters.
This ignorant statement simply shows that you have no clue about the JCP. Do a little research.
Why are you posting anonymously anyhow...?;-)
299,792,458 m/s...not just a good idea, its the law!
-- Galileo: "The Earth revolves around the Sun!"
Score: -1 100% Flamebait
Programmer migration
by
kievit
·
· Score: 2, Insightful
From Miguel's e-mail:
Despite my love for Mono as a tool for writing GNOME applications and giving developers new tools to write code in less time, there is an extra advantage in having a free implementation of the.NET Framework for Unix:
Windows developers know how to write code for it.
Lets make it easy to bring developers from the Windows world into our platform.
...
It can also work the other way round. A programmer wants to work in the best or most convenient programming environment. You (Mono developer) must be damn sure that your implementation of the.NET Framework is at least as attractive as the Microsoft's; otherwise the linux community might loose programmers via this route. But Mono will have less features of.NET implemented, or at least much later than MS; that has bad consequences for the appreciation of the programming environment. I'm afraid this means, in terms of the recent BCG study, that you will keep the believers and the fun/adventure seekers, but you will loose the skill enhancers and the professionals.
The M$ and the OpenSource a fairy tale
by
yelsirgany
·
· Score: 2, Interesting
The Scorpion and the Fox
A Retelling of an Ancient Middle Eastern Tale of Two Enemy Countries
by Ms. Holly
Once long ago in the vast lands of the desert there was a great and vast river that had to be crossed for animals to seek food and water elsewhere in the desert. As it was on this day Fox had come to the point where it had to cross the river in its travels. As it stood contemplating the best way to cross the river safely Fox's life long enemy Scorpion came upon it and began to talk to Fox.
"Fox as I was walking along the river bank looking for food I noticed a particularily easy place to cross the river where the water is not so deep and not so swift. As it is I would like to cross over myself also but as I am so small it would be impossible. Would you be willing to take me across if I show you this place to cross the river?" asked Scorpion.
"Why should I take you across? How could I possibly trust you will not sting me on the way across as we have been life long enemies?" asked Fox.
"Why would I sting you? For if I stung you it would mean you would drown then both of us would die." replied Scorpion.
Fox thought this over for a bit while carefully watching Scorpion with a distrustful eye. Eventually Fox said, "Show me where the place is and I will take you across."
"First place me on your back and then I will show you. For otherwise you may jump in and leave me behind once I show you." replied Scorpion.
Fox thought this over for a bit while carefully watching Scorpion with a distrustful eye. Then walked over to Scorpion and allowed him to climb onto its back. Scorpion directed Fox to where the river was not so deep nor so swift such that it was a safer place to cross over. As Fox was swimming across the river and had reached the middle of the river Fox felt a sharp stinging sensation on its back and realized it had been stung by Scorpion. Fox cried out, "How could you sting me we shall both drown now?"
Scorpion replied, "It is better we should both perish than that my enemy should live."
-- Can't think of clever sig so had to settle for this! Damit it Jim I am a programm not a sig writer.
Has Sun sued Apple over Cocoa written in Java? Has Sun sued any of the large number of companies that have implemented a native compiler for Java?
The lawsuit was specifically over JNI and RMI. Sun had no problems with strict supersets of the Java language (COM integration for example). However the native interface was replaced with RNI(?) and RMI was simply ommitted.
This means that if people coded to the spec for native integration with portable C, it wouldn't work from one target to the next. And in the case of RMI, MS simply didn't want a competitor to DCOM within DevStudio. RMI is a big deal. On a "pure" Java platform, RMI was how distributed computing was done. You take that away and suddenly you're right back with C and C++ and their myriad of options for distributed programming but lack of any consistent single API that you can use anywhere.
You'll note that MS whined that RMI was just too time consuming to be bothered with. Then after the judgement, an RMI implementation was produced in less than a month!
THIS is the reason Sun has not submitted Java to a standards body. If Java is messed with, Sun would have no legal recourse while suffering significant liabilities in keeping Java's APIs consistent. Add that to the fact that no standards body has sufficient clout to do more than look at Microsoft (or anyone else) sternly.
Do I trust Sun completely. Of course not. It is a large, public company with all of the benefits and drawbacks of a large, public company. But I trust them *enough* (with their current track record) to keep Java relatively clean and consistent -- especially in light of folks like IBM making compatible and very fast JVM implementations.
Sun isn't as closed off as people would suggest. The Java API for XML Parsing was heavily influenced from outside contributors -- especially the 1.1 version with TRAX.
Where are the cross-platform, standard C and C++ libraries for networking, threading, graphics, distributed programming, database access, XML parsing, object serialization, directory (LDAP, X.500, etc.) lookup, authorization, authentication, i18n and l10n? I'll tell you where: in the standards bodies who cannot enforce what people use nor can they do anything about people who ignore the spec.
Where would Java be if it were submitted to ISO five years ago? Right where C++ is today with Microsoft providing the only viable development platform. Woohoo.
--
- I don't need to go outside, my CRT tan'll do me just fine.
What i like....
by
SquierStrat
·
· Score: 2, Insightful
What i like about this, is that in the future it could well mean that i could use my windows application in linux, NOT via wine, simply because they are.NET based. This would save alot of hassle for me, because Windows crashes at a pathetically high rate, yet I have to use it!
Then,games...should games ever begin to use.NET (although, it wouldn't make much sense to most developer why they should) we'd get automatic cross-platform games...something most hard-core gamers would just love!
Bad thing: should Microsoft ever decide they don't like Mono...well the API will somehow become so that Mono can't reimplement it.
-- Derek Greene
I feel better now...
by
Eric+Damron
·
· Score: 2, Insightful
Like a lot of people, when I first read that GNOME was going to embrace a Microsoft technology, I was outraged.
The more I read, however, the more it makes sense. If the bytecode is truly portable this could produce an explosion of industrial quality programs that will run on Linux. This could potentially remove one barrier that is slowing Linux's growth as a viable mainstream desktop operating system. One has got to wonder what Microsoft's strategy is to thwart this.
So, I think we should proceed and implement Mono while keeping one eye open for that giant tube of Microsoft Vaseline.
--
The race isn't always to the swift... but that's the way to bet!
Heard all this before....
by
GooberToo
·
· Score: 3, Interesting
First, let me say that I use Gnome for my desktop and have used GTK+ for sizable projects. I've even developed smaller GNOME applications and found the various API's horrible. I can't stress enough that I'm not trying to cook someone here for the sake of cooking. I think the only point he makes here is that GNOME is without a solid technology direction and has suffered dearly for it for a very long time. In fact, he as much as points this out. So, call me a troll if you like but I fail to see how Mono isn't anything other than a new tech headline. Please read below if you care to follow his assumptions while he explains pretty much nothing.
The CIL and the promise of language independence
This is what CORBA promised more or less. Please correct me if I'm wrong, but didn't Gnome start out using CORBA and decided that it needed different technologies later in the cycle?
Are there not already language bindings for C, C++, Python, Perl and I'm sure several others? So tell me again why we need an interpretted wanna-be CORBA in the mix?
This technology allows programming languages to be considered on the basis of how they will perform for a given task, and not based on the runtime libraries that you will depend. Any software engineer should read this article:
Generally speaking, good engineers already do this. The choice of yet another tool somehow doesn't make this happen, though, choice can be a good thing. Adding a slow runtime is not going to make the awesomely optimized FORTAN libs suddenly appear and become compatible with various CIL implementations. In fact, really all you can say is that when you use this technology [CIL implementations], the language of choice will no longer effect performance rather it will be forced back onto the developers to optimize for a given language; that is, language specific CIL tuning tricks. On the other hand, all of the languages which use this are going to have a negative performance impact so it sounds like programmers will have even more choice (seemingly pointless). Let's see, I can pick C or C++ for performance or I can pick C/C++/C# [CIL implementations] which performs an order of magnitude slower. Hmmm. Hard choice. Tell me again why I should care about CIL, Mono and C#??
GNOME had always tried to have a good support for multiple programming languages.
No it hasn't. Save only for the CORBA efforts, GNOME is very C biased. One of the common complaints coming from the C++ KDE camp. The more correct statement would be, "multiple programming languages have always tried to support GNOME." These efforts have inflicted various levels of pain on their bindings implementors.
They have incorporated many ideas from Java, and they have extended it to address new needs that developers had. They took where Java left off.
What does that mean? Sounds like they are re-implementing Java. Why? Why don't you just further improve Java. I'll make it known here, I've never beena Java fan but this just doesn't make sense to me. It only makes sense to Microsoft because they badly need to de-crown Java. Aside from Microsoft, I don't see how this helps anyone. By the way, what are these "new needs that developers had", that existing technologies can't address? Do we really have to move to a VM to address these needs?? Somehow this seems like we're taking several steps backward. Anyone?
Libraries have been built by disconnected groups (PNG, JPEG, Gtk+, Xml, Bonobo, CORBA spec apis, etc) and the end result is that a developer eventually has to learn more than he wanted to in the course of developing a large application.
Might this have more to do with the fact that GNOME has been wondering without direction for a very long time and no one in the GNOME camp has been willing to settle and agree on a single API nor the technology behind these APIs? Does it have to be the programmer's fault? Can't it be that the API's provided have just sucked? Can't it be that the API's have changed so fast and often that programmers wonder what they are doing trying to implement a large application via GNOME? Can't this mean that the implementations behind the API's have been less than wonderful and seemingly change daily? Does it have to be because programmers don't want to learn? Seems to me, if programmers didn't want to learn, they wouldn't be trying to develope large applications in a highly dynamic environment (from an API perspective). Wouldn't a static API help address this? Won't simply adding yet another API compound this issue even further?
There is a point in your life when you realize that you have written enough destructors, and have spent enough time tracking down a memory leak, and you have spend enough time tracking down memory corruption, and you have spent enough time using low-level insecure functions, and you have implemented way too many linked lists [1]
Doesn't this really reflect the choice of underpinning APIs and implementations behind the APIs as much as the language. It's funny, I've developed very large applications (C/C++) before and never had nearly as many issues as one does when trying to use the GNOME/GTK technologies. Might it be that you've been chasing the wrong end of the technology spectrum? Might it be that you should of been looking to replace GTK and the billion other obtuse libraries that are the foundation of GNOME with better, faster, stronger technologies? Might is be that the number of memory leaks and associated debugging issues have something to do with design skills and/or coding habits? In not in whole, in part? Some part? Maybe a little? If you have even a small problem which is compounded over and over in various suite of libs that is GNOME, might this actually result in a large problem manifesting it self as obtuse APIs which lend them self to these issues?
Evolution took us two years to develop and at its peak had 17 engineers working on the project. I want to be able to deliver four times as many free software applications with the same resources, and I believe that this is achievable with these new technologies.
Wow! This really is magic technology1 It's going to 4x the level of productivity over any other tool, toolkit, and language. Wow! Does it come with a bridge too? I can't wait.
Even C++ was invented at ATT.
Yes, you're right, however, it was written by people who wanted to look at solving real problems with a different approach while leveraging the large C programmer base. It was need driven. The same can not be said for C# and CIL. Both of these are being driven my Microsoft to side step Sun and Java. The motive is as important as anything else, especially when we are talking about Microsoft. If, according to you, it's pretty much Java with some icing, why not go the shortest and best path for everyone and help improve Java? Go ahead, make the icing for Java. Then, you'll have everything you're asking for with a whole lot less effort and TONS more people will be rewarded for your efforts.
Windows developers know how to write code for it.
Do they? Windows developers are going to be coding to GTK's and GNOME's interfaces? That's news to me. As far as I know, what this really means is that Windows C# programmers will be able to code C# on unix. Last I heard, Windows C and C++ programmers already know how to code C and C++ on unix. Please, tell me again where this magic bean grows from...
Lets make it easy to bring developers from the Windows world into our platform.
I must of fallen to sleep or something because I don't see how this has suddenly changed. Anyone?
Training materials, tutorials, documentation, tips and tricks are already available in large quantities, lets leverage this.
I seriously question this. Seems to me, that would be true as long as the programmer is really using C# and the underlying CIL implementation is the same. But, you're telling me that you're developing your own CIL and your own C# implementation so I doubt this will be true any more than it is today for any other given language and platform combination. More magic beans. Mmmm....I smell fresh brew magic coming my way...
Sorry folks, I've gone on long enough...I'm simply tired of typing. Obviously I don't see anything that he's stating other than there's a whole bunch of magic in this technology that no one has ever seen before. Furthermore, I think he helps make a wonderful argument that GNOME needs someone else at the helm. And if he's saying that he's not at the helm (I think he tried to say that too), then GNOME very badly needs someone which is not him.
Last week I had an argument on the 'Linus does not scale' story with some dude whose entire contribution to suggestions on how to improve the management of the Linux kernel development process was to yell 'he can do whatever the fuck he wants, it's his kernel'.
Now that same argument, applied to de Icaza applies perfectly. Mono is not going to be "bound" in any way to GNOME, that much is fact. So the core product itself remains free. But more importantly, Miguel has to answer to a board of directors, whereas Linus can do (or not do) whatever he wants. They provide funding. They call the shots. They agreed to Ximian funding of Mono. How is anyone (especially RMS) entitled to an opinion here?
Regardless of RMS's embrace and extend FUD about everything being GNU (I bet very few people see it that way, but if it quacks like a duck...), he has absolutely no say about anything Miguel does, period. His argument of "Miguel better answer to the community" can be cleanly compiled to "explain this shit to me, boy".
Oh, and BTW, I'm surprised nobody has mentioned this small detail: RMS was turned down from the GNOME board of directors in November of last year. From the precedent of previous flame wars between RMS and various other people, who can say this is not simply his way of giving GNOME a bad time?
And finally, let's face it: Anything that has a relationship (remote as it may be) with Microsoft is immediately turned into an argument about "giving into the dark side" and "fight against the evil empire". That sure gives way to very constructive discussion. Most of the posts here have either tried to denounce Miguel as a traitor or simply nit-picked his reasons for doing what he's doing. Very nice.
And to Miguel: Dile a RMS que encamine sus pasos a la progenitora de sus dias y la salude de tu parte =)
Go ahead and mod me down now.
Re:Miguel's Comments--patents
by
ambrosius27
·
· Score: 2, Informative
The patent issue could be a problem, but there are a few things to lessen the worry:
1)Mono is being conservative and only trying to implement things that are already in existence. See this quotation: "We are trying to stay on the safe side regarding patents. That means that we implement things in a way that has been used in the past and we are not doing tremendously elaborate or efficient things in Mono yet. We are still very far from that. But just using existing technologies and techniques." from MSDN.
2) You say: "My worst fear is everything would go incredibly well with mono: diverse compilers, robust libraries, etc. and we would all start to build code around it, and then about 5 years down the line Microsoft whips out a patent and demands royalties for all the labor that we have done under the illusion that it would be free." It is unlikely that a surprise patent is going to bite you 5 years down the line. It is true that until a patent application is finally accepted or rejected, the patent claims are secret. See 35 U.S.C.A. sec. 122(a). However, this period of secrecy is fairly short. MS submitted the API specs to the ECMA at least a year ago. Those specs are what the Mono libraries are being built on. Those specs will likely be described as "described in a printed publication." If MS wants to patent any of the API's, it has only 1 year in which to do so. See 35 U.S.C.A. sec. 102(b). Otherwise, there is a statutory bar on patentability, and the specs are in the public domain. See id. If MS has applied for those patents by now, there is a maximum 3-year time span for those claims to be reviewed and accepted or rejected by the PTO. See 35 U.S.C.A. sec. 154(b)(1)(B). Generally, however, MS would have to prosecute its patent within 6 months of the filing date. See 35 U.S.C.A. sec. 133. Therefore, "secret" patents are likely to be in hiding for less than 3 years.
I hope this allays some of your fears. Cheers!
P.S. IANAL (but I hope to be one some day), and anyone construing what I have said here as legal advice to their specific situation is an idiot.
--
~~~~~~~~~
dissertus scribendo latine videri volo.
Re:picking mites with tweezers..
by
praedor
·
· Score: 2
Oh...and they're SO well published aren't they? Yeah, M$ is going to give the whole hog to ECMA. There wont be any hidden strings anywhere that ONLY works (and is only useful) on windoze.
A nice generic development environment, maybe. A means to run M$ binaries on linux? Never ever ever. NEVER.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Miguel says: So when you copy your binary from Windows that was compiled with the Visual Studio.NET and run it on your Unix platform, it will just integrate nicely with your GNOME desktop.
Hmmmm, I wonder what the KDE people would have to say about that. Is there any talk on the KDE mailing lists about.NET CLI integration with KDE?
Never mind KDE, what would the Microsoft people have to say about that?
This... does not compute
by
alext
·
· Score: 2, Insightful
Lots of insightful comments, but no one's actually picked out the yawning chasm of a non sequitur in the Mono programme:
If you like some of the Dotnet features, you have to clone the Dotnet Framework
I might like my mother, but I'm not about to clone her so I'll someone to marry in a few years - I know that her virtues can be found in other forms.
For example, we could develop a new CIL that was based on Scheme, but which could support programs originally written in Java syntax. This might be a better language superset - certainly many early LISP developers intended it to be an intermediate language, so the parens were always optional in essence.
Consequently, the only possible justification for cloning the Dotnet Framework is that MS tools will facilitate development of Mono apps, and that (equivalently) Dotnet apps will port to Mono. And on this point, it seems the crowd has spoken with one voice - it just ain't gonna happen.
Re:Actually, this is the way it is
by
schtum
·
· Score: 2, Funny
lynx_user_abroad wrote:
can someone explain to me why I keep running into Java apps that crash horribly on my Macintosh?
It's because you're using lynx.
What would be the point of that?
by
Nijika
·
· Score: 2
And another thing, if you are so tired of RMS why don't you start your on project to replace the GNU stuff.
I never said the work RMS was doing is bad, I said he's firey and has a tendancy to kneejerk. Demanding a response before investigating Miguel's comments is pompus.
Mods: Please moderate my comments to is not one with the hive mind (-1) from now on instead of veiling them in stuff like "redundant", thanks.
--
Luck favors the prepared, darling.
what is it with this stack based shit?
by
QuantumG
·
· Score: 2
I'm sorry, but it needs to be said, what is the story with these stack based virtual machines? Isn't a stack based virtual machine a dipology of good sense? I mean really, who actually sat down and thought "yes, you know, it's a good idea to binary translate from a language that is significantly different (stack based) from the target language (register based), and, to do it at run time". What's the sense here? Exactly, what is it? As I sit through my 20 minute install of random piece of java software I have to wonder, couldn't it be compiling those bytecodes to something native right now? Like, even if it still did the groovy runtime optimisations, it could save itself a whole shitload of trouble it was to precompile it. As for the whole signed/unsigned duality, yes, I hit that in a major way as I tried to write my JVM backend for GCC. Try compiling any normal C program without unsigned types, go on. Then there's the lack of unstructured memory, object store, etc, etc. I'd like to see a C compiler for.NET that doesn't suck ass -- I hereby claim it cant be done. When you embrace.NET (or for that matter Java) you are killing native code compilation and, more importantly, you are killing C. Some people might like that but I happen to love the C language (well, not the C99 extensions, but hey).
-- How we know is more important than what we know.
Re:what is it with this stack based shit?
by
SurfsUp
·
· Score: 2
I'm sorry, but it needs to be said, what is the story with these stack based virtual machines? Isn't a stack based virtual machine a dipology of good sense? I mean really, who actually sat down and thought "yes, you know, it's a good idea to binary translate from a language that is significantly different (stack based) from the target language (register based), and, to do it at run time". What's the sense here? Exactly, what is it?
What if your native machine doesn't have the same number of registers as your virtual register machine, or the registers don't have the same properties?? (hint: translate back to stack, map onto new native registers).
Mapping a stack efficiently into registers is a non-problem for direct pcode interpetation, and native code translation is not particularly difficult, slow or inefficient.
Please don't use sun's crappy jvm design or bloated implemenation as a reason why this approach has to suck.
-- Life's a bitch but somebody's gotta do it.
Re:what is it with this stack based shit?
by
joto
·
· Score: 2
Well, it does make a lot of sense to use an intermideate language, and compile this at run-time (or load-time). First of all, this allows you to put much more semantic information into the program, which can be used by the execution unit or the loader. Examples of such information can be simple interfaces (components), specifications (components), correctness proofs (read about proof-carrying code by doing a google search), safeness (java has a security model, you know), debugging information, etc...
Second, it allows you to have platform independent code. This is clearly useful in a lot of cases. And while you can do that with an interpreter, compiling to a binary format at least allows some optimisations to be carried out beforehand.
Third, it can even lead to reduced load-time, as an AST (such as in Oberon) is much smaller than compiled native code, and since disk-access is slow and modern processors fast, you can get the native code into memory faster than you can with just loading the native code itself. You can also avoid to check all references to external libraries (or classes, in the case of java) untill they are actually used, which can lead to huge performance benefits for large programs where most code will never run in typical use (although most java implementations doesn't do that, aiming for security instead of speed).
While you might not like Java, the idea of using an intermideate language is still a useful idea. And even if it is not useful for you, it's still useful for a hell of a lot of other developers.
Miguel's best point...
by
wmshub
·
· Score: 3, Interesting
One point Miguel made really made me sit up and take notice. He pointed out that all of Gnu started out as Richard Stallman's attempt to make a free copy of a proprietary system, and Mono is just another attempt to do that same. I'd never thought of it that way, but he's right; it is very hard to remember in this day and age that 20 years ago, AT&T and company were really a lot like Microsoft as far as their treatment of end users, so why was it good for Stallman to propogate the then-evil-and-proprietary Unix interface and bad for De Icaza to propogate the.NET interface?
Re:Miguel's best point...
by
Chris+Johnson
·
· Score: 2
GNU was about replacing and existing independently of UNIX, where Miguel seems much more interested in being joined-at-the-hip with Microsoft and setting up a situation of very _intimate_ continual interaction. it's NOT at all the same thing as going 'let's do everything.NET does, only make an independent version just for us!'. If it was, I would be a LOT more sympathetic.
Miguel WANTS.NET to win and control computing.
If this was 20 years ago, Miguel would be trying to make AT&T UNIX win, and turning people away from the BSD fork... though oddly enough Linux is more SysVish, I'm told...
I forgot something at the end
by
miguel
·
· Score: 5, Funny
I forgot to add this to my posting:
DEVELOPERS DEVELOPERS DEVELOPERS!
(Slashdot forced me to put more text than the three words, lame)
Software Engineering Implications of the CLI
by
hackus
·
· Score: 2, Insightful
I am not exactly, totally enthusiastic about this idea of being able to use ANY language for a given programming project or combination thereof.
I have these reasons, personally, as a matter of observation in the software engineering of large complicated systems.
But I would like to make some observations:
1) The US Military in the early 80's and 90's had enourmous problems with private sector bids and implementation, of software in defense systems.
Namely, every vendor delivered a portion of the system in a different language. Some languages were specifically invented to deliver the final product.
These systems were large and complex, and non trivial engineering problems developed between vendors who needed to integrate thier combined efforts to deliver the product.
2) As systems were delivered the cost too maintain them was very high due to the fact there was no common reference for the software implementation.
What I mean by this is, if you have a flight control system, or launch control system, and it has a bug or engineering issue. It is very difficult to see exactly what the problem is if it incorporates or was delivered with 8 different computer grammars.
3) These systems had artificially short life spans due to the fact they could not be easily upgraded. That is too say, for example, the above flight control system coulnd't be upgraded because the target language(s) could not be reimplemented on new hardware.
My point about MONO and CLI?
Which is:
1) If we accept the historical data on building complicated pieces of software, we can reduce the costs of a implementation if it is reduced to one language or computer grammar to build its entire scope.
The military's solution to this was to produce key critical compenents of a defense system project using one reference specification. The computer grammar they picked was called ADA.
I question if the CLI is actually a good idea in a concept that allows or permits multiple language platforms to cooperate, if the goal is to produce software that is easy to use, is of low defects and is cost effective.
Historically the military with budgets far beyond anything commercially accesible couldn't do it and produce quality defense systems.
2) If the CLI provides a capability to produce a GNOME vision of support for multiple language platforms, given historic research in the software engineering areas, CLI suggests that anything built with a.Net architecture with a CLI as envisioned by Microsoft should produce software with unessacarily high engineering requirements than a single language platform.
3) Considering the fact that such a system would produce diverse computer grammars in any authors favorite language, for contributing authors, a future.Net MONO vision for a Linux app would quite possible require COBOL, C, Java, PERL, FORTRAN etc programmers to cooperate in building a new desktop app or feature.
If we accept that historic software engineering suggests multiple computer grammars result in systems that:
1) Require a very high engineering cost.
2) Quality of the software suffers because fewer individuals can access the entire code base to make corrections.
Personally, in IMHO organizational scalability and human productivity issues in building this sort of software are problems with N different grammars being used to build a single piece of software.
Therefore, I believe CLI is really not a positive addition to an Open Source Project.
-hack
-- Got Geometrodynamics? Awe, too hard to figure out? Too bad.
Re:Suggest me a reading list.
by
miguel
·
· Score: 2
What I have read myself so far:
* Inside C#. Microsoft Press, good.
* C# Essentials: O'Reilly, if you want to learn it quickly, and do not care about details.
* The ECMA C# standard is useful if you want to write your own compiler 8-)
Miguel.
Re:Actually, this is the way it is
by
Sloppy
·
· Score: 5, Insightful
Any compiled class written in Java can run in any environment with a JVM.
Unless that class inherits or calls proprietary library stuff that you
don't have.
This is why I can't run most Java stuff on my Amiga. I have the Kaffe
JVM, but no AWT. So I can run a program that says "hello world" and even
Sun's Java compiler (written in Java) that comes with the JDK. But AWT
or Swing apps are right out, because no one has implemented that stuff
for my OS.
You're going to have the same problem running Microsoft Office on Linux.
Your VM will work perfectly, but the app will want to use stuff that you
don't have.
-- As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
-- How we know is more important than what we know.
Will MS screw this?
by
IamTheRealMike
·
· Score: 4, Insightful
Bet on it. It doesn't have to be through patents, or embrace-and-extend, or any of the techniques they've used in the past. It might be, but for all we know they could just come up with a new way of fiddling things.
Look - what is Microsoft? It is a big company, one which is in a serious crisis right now - it's main revenue streams are drying up in the form of slow Office/Windows XP sales (well, slow compared to what they need to be). Hence Hailstorm, which is a big part of.NET
So - consider that Linux is the first real competition MS has had on the desktop/server market for years (forget apple, they have survived by selling to a niche, mainly artists, not business/home). Now consider that they are desperate for cash, lots of it.
So, considering all that, how likely is it that MS will invest millions into a new platform for Windows, and then allow it's primary competitor to make it about a zillion times easier to port code from Win32 to Linux? Not very is the answer. Remember this - Microsoft HATE Linux: their corporate leaders see open source as "wrong" etc, and of course Linux is already good as a server and making headway on the desktop, so how do they respond to this threat?
Seems obvious - they need.NET, but what they don't need is to be giving their competitors a leg up by developing an expensive technology. They'll try and keep.NET Win32 only, and they won't have to try hard. Yes, yes, we all know about the ECMA submissions, but lets face it: There are standards, and there are standards. C#, CLI etc. will be de-facto standards soon, but that doesn't make them anymore acceptable, regardless of whether they've been rubber-stamped by ECMA or not.
Having said all that, you've got to give Miguel respect: he knows good technology when he sees it and isn't afraid of politics. I love some of Microsofts software, I just don't love the company. Problem is, in cases like.NET they are inextricably linked.
.NET is great - but I wouldn't touch it with a barge pole. That's like walking right into the lions den because the lion is guarding a great new toy that you want, and saying the lions reformed and won't eat you.
Having said that, can't the open source movement do any better? I mean.NET is an excellent implementation of technologies we're familiar with and have used for years, but surely we can do better. I think we can, I think it's called Mozilla, and I think it's underrated as a development platform. But that's just IMHO, please don't let that distract you from my main argument here.
yeah. anyway, rant over. it's much longer than i thought it would be anyway.
OK, so the fantastical claim is that one could run.NET doze binaries via Mono (balderdash). Why is Mono in this regard going to be ANY different than wine? Windoze APIs are published so software developers can write windoze apps. C# is "published" - the APIs are there so anyone can use them. Big frickin' deal. Even with the published windoze APIs, with wine you can only run a fraction of a percent of windoze apps. The problem IS the intimate tie-in of API to windoze proper. C# APIs are no different (if they are, WHY?). They have their fingers tied right into the OS too.
All it seems that aspect of Mono is about is duplicating wine in a.NET framework instead of the classic win32 framework (which ties into.NET and C# since they ARE the windoze API that you are playing with when writing doze code, yes?
So the fantastical claim is that Mono will do better than wine at implementing doze api/functions in linux. That's what wine tries to do and they've been at it for years! It's nice, and all, but there's a buttload of windoze apps that just don't work in wine. By the time they do (IF they do) there will be new apps out there that people want to use that WONT work. Why wouldn't Mono experience the exact same problem?
.NET is designed with WINDOZE in mind. It is the target platform of.NET. To Gates, the internet and computers are and/or should be Windoze PCs or Windoze handhelds, etc. Everything else is invisable to Gates or is something to be extinguished.
Unless someone can explain why JUST because C# APIs may be published that means jackdiddle (vis a vis win32 apis being published and the success of wine) for running windoze.NET crap on linux? Even if you refer to VMs, the VM is designed by and for Windoze and M$, NOT competitors (or potential competitors).
I think that if Miguel and Ximian want a "better" developer environment, then fine, speak of ONLY that but forget about (entirely).NET and anything Windoze/M$. It is pollution that will not work out and it confuses the issue. You like the development environment of.NET? Fine, go with a similar development environment for LINUX and that is ALL.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Third, Win32 APIs are NOT largely published. The good ones - the ones that MS has used to beat down competitors in the so-called "middleware" market have been secret/obscificute. The.NET Framework APIs are open, and submitted to the ECMA.
And what makes you think that Microsoft won't have added undocumented funtionality in it's implementation of.NET to give it's.NET applications a leg up on applications written to ECMA.NET???
Re:Why is it different?
by
Chris+Johnson
·
· Score: 2
"Second, Miguel firmly believes that.NET programs will run on any.NET platform."
But it doesn't matter how firmly he believes this if he's flat wrong... this is exactly the problem, Dan. It's NOT that Miguel has bad motives (though some of his value system needs work!), the problem is that he's 'drinking the Kool-Aid', he is firmly believing things that aren't necessarily so.
That is dangerous, because on the one hand he's setting himself up to be very astonished when he is victimized, chewed up and spat out- and on the other hand, because of his genuine sincerity it's not safe to simply go by his confidence level. You have to question whether that confidence is misplaced.
> Third, Win32 APIs are NOT largely published. The good ones - the ones that MS has used to beat down competitors in the so-called "middleware" market have been secret/obscificute. The.NET Framework APIs are open, and submitted to the ECMA.
As someone pointed out in the Linux Today discussion, there's an ECMA
standard for/Windows/. (The original poster had a ref. number,
approx. ECMA360 or thereabouts.) That doesn't seem to have helped
WINE much.
I think the invisble-looming-patent-bitchslap argument has some
merit. Look at it this way: why are Microsoft doing this? Follow the
money. What do they set to gain from it? As many have pointed out, as
a profit-driven company, and by virtue of their record, we know that
there's always a Grand Plan for Microsoft. They must believe that
they'll get more benefit if they do the standards thing, than if they
keep it as a traditional, closed, Microsoft-only technology. They
obviously know of Mono, et al, and they are happy for those projects
to exist. Where, and how, do they gain in this scenario?
I also notice that everyone who says they've used it, loves it
(including people with plenty of experience developing in the Unix
world.) Has anyone who's used it got a bad thing to say about it?
/Does/ it provide a big productivity gain? Is that just due to the
Microsoft implementations and tools, or are those benefits really
available to Free software users?
--
"None are more hopelessly enslaved than those who falsely believe they are free." -- Goethe
My last paragraphi is THE most important paragraph in some ways. I do NOT write-off linux/unix in it. I DO seek to throw water on the dreamy, fantasy that M$ is in any way going to allow Mono to succeed in ANY way the is competitve to M$. M$ holds ALL the cards and it stacked the deck. It NEVER EVER does ANYTHING without thoroughly thinking through how x is going to bring THEM buttloads more money. They do NOT give a flying f*ck for ANYONE outside M$..NET is NOT NOT NOT a gift to developers for their benefit. It is an M$ tool to develop more income and provide for more M$ lockin, NOT less.
Alan Cox's final paragraph is THE ONLY answer you need as to why Mono will NOT run non-trivial.NET apps. Period. I take his simple words over your starry-eyed dreamland fantasy any day. He is absolutely correct. Mono will not succeed in.NET. It MIGHT succeed within the world of linux/unix but that is ALL.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Re:Paul Graham said it best about Java...
by
praedor
·
· Score: 2
And...every word he writes about Java doesn't somehow apply to C#? The IDENTICAL language with a few "embrace and extend" features from M$ for the SOLE purpose of undermining a competitor?
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
That's a core part of the Mono project... Creating compatible libraries that work on Linux. Because of the OOP nature of the.NET frameworks, Mono can (and hopefully will) be ported to other OS's, like MacOS X. Linux gets Gnome-specific GUI tie-ins, and the Mac will eventually get Aqua-specific tie-ins.
Yeah, no doubt that C# is great for a WIndoze software developer. Hooks into the heart of WIndoze for improved speed, etc. Problem...those frickin libs and functions don't exist anywhere but on windoze using directx crap and win32.
Wine is having a fun time implementing all the published windoze apis in linux aren't they?
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Despite what the parent poster says, yes, J2EE is currently free for any use (commercial or otherwise) until Sun changes its mind.
Hmmm, I thought Sun charged a J2EE license fee for those ISVs who incorporate it in their offerings (like IBM and BEA). There never has been a direct cost for end users that I know of. (It also may be possible to clean-room the APIs and not call it J2EE, I'm not sure.)
All right, I did some checking and here's the result. I doubt Sun has dropped these fees since, please cite a reference if you think so.
299,792,458 m/s...not just a good idea, its the law!
-- Galileo: "The Earth revolves around the Sun!"
Score: -1 100% Flamebait
Re:Sure, and Sun's your best friend? Hardly.
by
Glock27
·
· Score: 2
Hey! It's Glock27 - the Sun's brainless Java posterchild!
Hey! It's another pathetic AC troll, making an ad-hominem attack! *yawn*
Try and add a little more substance to your argument...why is ECMA certification desirable for Java? Will I see some tangible improvement, somewhere? There is already a well-defined, published standard for the Java language.
I'm not holding my breath for a response...
299,792,458 m/s...not just a good idea, its the law!
-- Galileo: "The Earth revolves around the Sun!"
Score: -1 100% Flamebait
A microsoft yankee in open source's court
by
KenSentMe
·
· Score: 2, Interesting
Okay, I must admit I have lost all respect for GNOME/Ximian, now.
Miguel has this "if you can't beat 'em, join 'em" attitude, which usually goes along with being a follower, not a leader. Some friends I have, who are also MS people, always jokingly say, "Don't fight it... don't fight it! Let Uncle Bill take care of you!". I really hate that way of thinking.
Open source is about pure innovation, and problem solving, not porting others' work over to the free world (necessarily).
The other beef I have is with his comments regarding productivity. He says he has reached a point where he has "implemented too many linked lists", etc etc. My problem is, a good programmer knows how to reuse his/her code, and not reimplement ALL of it from scratch every damn time. You know why Microsoft's code is so bulky and unreliable? It's because they made their API's so attractive to lazy programmers who "don't want to deal with all that hard stuff" by doing it all for them. You write a "hello world" program in windows, and you'll be lucky if it isn't under 200Kb, because the routines and libraries that actually got compiled in are the same ones MS Office uses.
If we ignore the small and tedious details to programming, and base GNOME on the.NOT Framework, then it will be just as bulky and unreliable as windows programs.
Good software is not made by people who want to "get it done quickly and efficiently", it's made by people who want to spend the time to do it right, and "get it to run quickly and make it efficient". It's only one way or the other... we can drag 'n drop our way to building an application, but it sure as hell won't be as fast/reliable/efficient/good as a program written in a text editor, compiled by hand, checked and rechecked.
Re:I'm quite sane, everyone around me are nuts
by
ChaoticCoyote
·
· Score: 2
Microsoft has harmed me, on a very personal level, by severely damaging a piece of intellectual property I placed in thier care. I wrote a book for them that they butchered in the name of trying to control Java.
So I have no love for Microsoft, and don't trust them further than I can kick their legal department.
Who do I trust? you ask. It's hard to say, really; relatively speaking, I "trust" Linus more than Miguel, and I trust both of them more than I do Mr. Gates. My level of trust has something to do with intent: Linus never intended to change the world; even now, he's more interested in making Linux "work" than he is in "beating" Microsoft -- and that's an attitude I can trust. Miguel, on the other hand -- well, I can't put my finger on it, but his attitude just "feels" wrong. Maybe I'm splitting non-existent hairs... so I try to give Miguel the benefit of the doubt and take him at his word.
As for Mr. Gates... let's just say that I've shaken his hand, and twelve years later, it still feels a bit dirty.
Re:Oracle, IBM, HP, et al.....
by
praedor
·
· Score: 2
Doesn't matter what they WANT. M$ *IS* a corrupt, illegal monopolist NOW. If the others WANT to be, so what, they aren't and likely wont be. It does matter that M$ IS and it is deadass wrong to help them continue or secure a new monopoly.
-- In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Someone moderate parent up +5 funny...
by
Error27
·
· Score: 2
Its incredible that people have lost their understanding of what a godsend the UNIX API is. Right now, you can download random POSIX programs off the internet and reasonably except them to compile correctly on your machine, whether you're running Linux, BSD, or (gasp!) BeOS. Its the portability of.NET without its performance problems and with the addition of an emphasis on open source software. Isn't that the way it should be?
-- A deep unwavering belief is a sure sign you're missing something...
Framework is irrelevant
by
Alex+Belits
·
· Score: 2
The problem with "frameworks" that appear now -- Java, all generations of COM,.NET, etc. is that they basically don't do anything useful. They are implementations of someone's "vision" how software is supposed to be developed, and how existing two component models -- that is, one provided by shared libraries, and another one by interprocess communications, should be replaced by something more "object oriented". And all those visions are wrong, simply because at this point mankind has as much chances to develop a better component model as thousand years ago it had chances to develop better means of long-range transportation than a horse and a sailing ship -- the level of technology was inadequate for that and will be for quite a while.
But people are ambitious and instead of writing little useful things -- say, a serializer for data formats that will simplify communications, they are trying to create a GREAT NEW SYSTEM with everything existing replaced with some GREAT NEW IDEA plus every petty piece of idiosyncaasy that a particular developer or company has at the moment. That produced Java, and that plus typical Microsoft's aspirations to create more incompatibilities per hour than they were able before, produced.NET.
The fact is, for a programmer who is writing a new code, "framework" like this gives very little -- dynamic libraries existed for a long time, anything written in C can be now called from any other language that can load a library, and IPC is still not used at its full potential, especially considering that programmers (Gnome ones included) were indoctrinated with superstition that context switches are more expensive than additional in-core pages while in modern systems context switches are cheap, IPC is efficient, but data-structures bloat that causes huge amount of data sitting in memory in a tangled mess becomes a huge problem for speed even if memory itself is cheap.
For a programmer who wishes to use components developed for Windows it gives nothing, too -- the whole strategy of Windows development is to keep things unusable outside Windows, and certainly mixing few proprietary pieces in the mix will poison everything developed on Windows just like things being developed now are poisoned for everyone who agrees to anything less than a complete emulation of every ugly piece that Microsoft managed to throw into Windows. In other words -- if you will want to run something developed for Windows, you will need Windows, all Windows and you will have very little chance to add anything but Windows. You can emulate it, but then you will basically become it. So all this talk about "inevitable success" of.NET on Windows is pointless -- at best you can outrun them (despite some umm... strange ideology changes that reminds me Communist Party line, the development of GNOME is going fast enough), at least you can ignore them (Microsoft will replace it with something else soon anyway), but you can't assimilate them.
Oh, btw., the use of borg-style metaphors was intentional but not essential to this piece of advice.
-- Contrary to the popular belief, there indeed is no God.
C++ has a rudimentary but surprisingly effective memory management tool called the autoptr (or auto_ptr, depending on who's talking). It's essentially a thin class wrapped around a pointer. When the class goes out of scope, the autoptr destructor is called. It deletes the pointer contained within the class, thus returning whatever was pointed at to the memory pool. It ensures proper object destruction, etc., etc.
If you don't know about the autoptr, then maybe you'd better not make statements about C++'s lack of memory management assistance.
I've used the autoptr a fair bit, and it's a surprisingly handy and low-overhead way of solving a lot of dangling-pointer errors.
you still need to remember to wrap *all* of your allocations with auto_ptr
Huh? Since when?
MyObj::MyObjPtr foo = new MyObj;
... I define MyObj::MyObjPtr to be an autoptr, and I overload the new operator for MyObj to return an autoptr. This isn't rocket science, nor does it require a tremendous amount of discipline. All you have to do is have enough experience with C++ to know that (a) C-style pointers are Dangerous Beasts and should be avoided whenever possible, (b) the autoptr exists, (c) how to use a typedef, and (d) how to overload the new operator.
C++ does not have memory management because it lacks garbage collection of some sort.
C++ lacks built-in GC. It doesn't lack GC. If you want GC, it exists for C++. There are lots of providers of C++ GC. The reason why GC didn't make it into the C++ standard is twofold.
There is no optimal GC algorithm. Java is a garbage-collected language, but the specification doesn't say how the GC must be implemented. The ISO committee didn't have the Sun cop-out of saying "well, it must be done, but we don't care how it's done or how efficiently it's done". The C++ committee simply felt there was no single GC approach which would result in an engineering win for the vast majority of code. I think the committee was probably right.
It violates the C++ Maxim. The fundamental maxim of C++ is, ``you don't pay for what you don't use.'' Every C-superset feature of C++ is optional. If you restrict yourself to the C90 subset of the C++ spec, your code will have the performance of C. Adding GC to C would violate this maxim. Hence, no GC in C++.
... Bjarne Stroustrup has publically said that when the C++ standard is revised, beginning in 2003, he thoroughly expects GC to become part of the standard... but even when GC is included in the C++ standard, GC will be optional, due to the above two reasons.
If .NET is so language-independent..
by
ikekrull
·
· Score: 2
Then why implement a C# compiler for it?
Surely implementing something already in wide use within the Linux community - C, Java, Perl or Python would be much more useful than implementing some new, unproven toy language like C#.
If.NET truly is a good technology, which stands on it's own merit, and not because it happens to be the next lock-in tool of corporate behemoth Microsoft, then why would it not be immediately useful as a platform for existing proven Linux development tools and techniques?
Personally, I think.NET is a complete waste of time, which will fail to gain critical mass, despite the enormous pressure on developers from that fucking clown Steve Ballmer and his crew.
.NET offers nothing we don't already have except for the 'Made by Microsoft' stamp, but it's been a long time since that mark held any sway over me and my choice of development tools.
Obviously, Miguel de Icaza is free to do whatever floats his boat, but you can count me as a 'former user of the GNOME project' should.NET ever play a significant role in it's frameworks.
Maybe its petty politics and free-software rhetoric from RMS etc. that has led me to this decision, but thats how disillusioned I am with Microsoft and it's products.
I don't trust them, don't like them, and I feel much gratitude to the developers of Linux and all that has been built on top of it that lets get as far away from Microsoft and their shithouse software as possible.
-- I gots ta ding a ding dang my dang a long ling long
Miguel probably should look at M3 or Eiffel or Ada
by
Christopher+B.+Brown
·
· Score: 2
Consider:
The apparent "problem" with Gnome that he's trying to solve is that some huge portion of Evolution consists of memory management code.
(That apparently explains why when I request an install from Ximian.com, apt-get reports that the one package of evolution is going to consume something around 110MB of disk space...)
Miguel would kind of like to move over to Java as an application development language; it's a not-horrifically-badly-designed language, and has the merit of garbage collection and some "syntactic sugar" to support OO classes and exceptions...
Unfortunately, the design of Java is such that it nicely interoperates with, well, Java, and um, Java, and, um, not too much else. (Unless you jump into FFI stuff that's always terribly fiddly, and leaps you back into writing constructors and destructors in C for the interface code...)
The "JVM" thing offers some portability, but Java suffers from the huge problem that all the Kool Stuff in J2EE and Swing and such that you'd like to use is, well, only marginally less encumbered by Sun licenses than .NET services will be by Microsoft licenses.
Count the number of major Java apps that are installed by default in your favorite Linux distribution. That number is usually zero, as you get to choose between:
Deploying stuff using the "toy" APIs of Java 1.0 that are really creaky, but available "libre and gratis," or
Paying some huge license fee to Sun to allow you to include the Cool New Java APIs on the CD.
C++ is Not Miguel's Favorite Language
And it really wouldn't do anything to solve the problems at hand, as it still mandates spending lots of time writing constructors and destructors. Plus there's no quasi-standard ABI, so that you'll be recompiling incessantly.
And then there's the KDE problem where library loading takes quite a bit of time because of resolution of virtual methods...
But I think the real reason for "no C++" is simply that Miguel doesn't much like C++.
So Miguel wants something a tad more dynamic than C/C++, particularly vis-a-vis memory management. I find it a little disappointing that he didn't take a serious look at some of the mature languages already out there.
GNU Ada is a whopping lot more mature than G++, for instance, and would offer some "software engineering" merits.
There are a good set of Eiffel compilers, and that combines OO with GC as well as the "Design by Contract" thing that Miguel has consciously tipped his hat to.
Modula 3 is another "unsung language;" OO plus GC plus well-defined threading, even.
If he's looking for a better language in which to build more stuff like Evolution, I'd think these three to be eminently plausible Good Alternatives to designing a new Virtual Machine environment along with a whole set of compilers.
-- If you're not part of the solution, you're part of the precipitate.
"The.NET Framework will exist in the Windows world, and because of this they will be widely deployed. It is a pointless battle to pretend that boycotting the use of those technologies will have any kind of effect on their reach."
Um... wouldn't boycotting these technologies (such as they are) make their reach that much less than if you weren't boycotting them?
Weird to be seeing hardcore Microsoft propaganda from an open source project leader. Why doesn't he just go over to Microsoft and work for them if he wants their stuff deployed that much? Why is he even bothering to be involved with free software at all? Of course, didn't he also arrange to have a free project _drop_ the LGPL and go with a more proprietary-friendly arrangement? Who is this guy?
One runtime to rule them all...
by
dido
·
· Score: 3, Interesting
An ancient verse in Open SOurce Lore...
Three VM's for the Open Sourcers under the sky
Seven VM's for the chipmakers with their foundries of stone
Nine for the mass market doomed to die
One for the Dark Lord on his dark throne
In the Land of Redmond where the Shadows Lie
One Runtime to Rule them All, One Runtime to find them
One Runtime to bring them and with.NET bind them
In the Land of Redmond where the Shadows Lie
Gee, so I guess that makes Miguel de Icaza Celebrimor, building his own runtime based on secrets given to him by the Dark Lord of Redmond, disguised as Annatar, Lord of Gifts. Maybe RMS is Elrond, watchful and distrustful of this mysterious being bearing secrets...
-- Qu'on me donne six lignes écrites de la main du plus honnête homme, j'y trouverai de quoi le faire pendre.
finalizing the architecture...
by
ttfkam
·
· Score: 2
The long term plans for Java include items such as tail-recursion and templates but they came up too late in the dev cycle to include in 1.4 without pushing the release date out too far. 1.5 is slated to have an updated bytecode format (although presumably backwards compatible in much the same way that 1.02-era applets still run for the most part in JDK 1.3)
Don't presume that Java isn't a moving target for.NET
It's not like Sun and IBM are planning on standing still and waiting for Microsoft to catch up.
--
- I don't need to go outside, my CRT tan'll do me just fine.
Wrong, borland has no CIL
by
StrawberryFrog
·
· Score: 3, Informative
The CIL idea is not new.
Right. A proof of concept was when other languages were compiled to java bytecode. There may have been earlier ones too.
If I remember correctly is used in Borlands C++ Builder & Delphi to some extent. C++ Builder compilers down to the same thing as Delphi and if I remember correctly they use the same linker.... I beleive this is where they got this ideas behind CIL and combined it with the Java virtual Machine model.
Um. Nope. CIL stands for Common Intermediate Language.
Neither Delphi nor BCB are interpreted, JIT'd or run on virtual machine. Nor do they use an intermediate language of any kind.
The language that they have in common is in fact x86 assembly. The reason that the Delphi VCL can be used in BCB is that they share an object file format.
Maybe the idea of sharing a class library came over from Borland with Anders Heijsberg, but the method of achieving it is different.
--
My Karma: ran over your Dogma
StrawberryFrog
Re:Wrong, borland has no CIL
by
jmccay
·
· Score: 2
"A good way to begin your exploration of this issue is to understand that Delphi, and Borland C++ 5.0 use the same 32-bit compiler. The difference is simply in how the language is parsed. Delphi parses Object Pascal, tokenizes it, and then passes it on to the compiler. Borland C++ 5.0 parses C++, tokenizes it, and then passes it on to the compiler. Underneath the hood, Delphi 2.0, C++ Builder and Borland C++ are very similar tools. The difference is in how the syntax of the language looks before it is parsed and tokenized.
Delphi finishes its compile and link cycles faster than Borland C++ simply because Pascal is easier to parse, and because Delphi supports a simpler, and more flexible type of binary file (DCUs are easier to make than OBJs.)
Since C++Builder uses the same compiler as Delphi, the road is obviously at least half way open to finding compatibility between Delphi and C++. The next stone on the path is laid by C++Builder's advantageous use of the Delphi VCL."
The above section demonstrates that Delphi and C++ Builder use a type of common language. Once the Delphi code and C++ Builder code have been parsed and tokenized, they get passed to the same compiler. Microsoft took this idea, and combined it with the virtual machine concept (most recently used in Java) to get the CIL idea.
You said they don't use an intermediate language of any kind, but as you should be able to see from the above text, they actually do. The difference is Borland kept this idea in the background. They just focused marketing the idea that two development environments work well together.
The code name for C++ Builder was Sci-Fi as stated by Brian Long, who used to work for Borland UK. According to an opinion section in his article for The Delphi Magazine, C++ Builder was already being planned during Delphi's original development. He also makes a comment as to why the project was called Sci-Fi, but I will let you look those up because they are irrelevant to my point here. To me at least, it becomes obvious that they wanted some common point for both languages. They paths may have varied some since then, but I would guess that they still use the same compiler. No, they don't have an interpreter, but interpreters were not that popular until Java came along and brought interpreters back into the spotlight.
Very rarely does Microsoft actual create new idea. They tend to rehash old ideas with a new twist, and then they call it their own.
-- At the next eco-hypocrisy-meeting, count the private jets used to get to the meeting. Should be interesting to see that
Really, those people who claim that if you start implementing.Net you'll always be behind -- I don't understand the argument. If you *don't* start implementing it, you'll be even farther behind -- unless they're suggesting that you use something even better. If that's their suggestion, then perhaps they could point it out to you.
-- "Those who have never entered upon scientific pursuits know not a tithe of the poetry by which they are surrounded."
One hour of your enemy's time is worth...
by
aphor
·
· Score: 3, Insightful
Sun Tzu:
One pound of your enemy's provisions is worth twenty of your own.
I would apply the corollary: "One hour of your enemy's time is worth twenty of your own." The principle is that you are not only getting your enemy's preparations and resources to work for your goals, but you also prevent him from using them against you. Your own resources are many times more costly to build up. Microsoft sees Miguel as a tool, and they are waging Ximian against Gnome (the GNU GUI) with the goal of making GNU oriented developers waste their time even learning C#.
If we need a new language, why don't more people get together and decide on all the goals of that language? If we need to link compiled code from disparate languages together, why not write a CORBA spec or something? The key concept here is DO NOT LET MICROSOFT SLIP INTO YOUR PROJECT'S DEPENDANCIES.
-- ---
Nothing clever here: move along now...
Re:The moral of the story is...
by
SilentChris
·
· Score: 2
Aye, but this be not Britain. A crucial difference, lad.
Re:You do not need your asbestos suit for this...
by
tommck
·
· Score: 2
well, introducing STL allocators.
for any STL container (which should be used by most people), you can pass in your own allocator class. In that class, you handle your own memory management. If you want to reduce fragmentation, you allocate very large blocks of memory and then do "placement new" calls to allocate memory. Problem solved.
T
-- ----
It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
GNOME had always tried to have a good support for multiple programming languages, because we realize that no matter how much we loved C as a programming language, there was a large crowd of people out there that would like to use the GNOME libraries fromtheir favorite programming language, which might not necessarily be C.
This is the reason having Mono at the heart of Gnome would be a good idea. Base it on the CLI and suddenly any language that is ".Net-enabled" is usable under Gnome.
It's about choice. Isn't that what Open Source is all about?
Wrong. Programmer's lives are exciting, as long as you like Computer Science and enjoy tweaking with the little bits, discovering new things. Now, if Miguel started writing Unix software thinking he would be rich, surrounded by girls and driving Romero's Ferrari, he's far beyond dumbness.
Miguel has made many positive arguments for his prior statments. And thanks to the Register for obfuscating the variables.
Luck favors the prepared, darling.
Linux is a copy of a proprietary OS, Unix, which was invented by a monopolistic company, AT&T. Miguel pointed this out in the email, if you actually read it. Most free software has been free re-implementations of closed software or technologies.
Liberty in your lifetime
One thing though. Miguel says:
This just strikes me as overly hopeful optimism to think that Microsoft is going to give up their hard fought and long defeneded applications barrier to entry.
Key to financial independence: Spend less than you earn. Save and invest the difference. Do it for a long time.
The biggest problem with .NET is that it is a MS initiative and controlled at its most basic level's by MS. Anyone who thinks they can safely develop a project under it without fear that MS will change the APIs the instant they actually start competing at some level is an idiot.
And therein lies the rub of any development using MS tools. Undocumented, incompatible changes to the underlying APIs at MS's whims for MS's gain.
Miguel:
> or ourselves. I want to be as compatible as
> possible with the APIs that were published by
> Microsoft.
Alan:
Be assured that the day they decide you are a nuisance the VM will acquire a patented neat feature that kills you off. Just ask the Samba people.
(from Alan's reply to Miguel's message)
Could someone please play this email backwards, I'm afraid I'll be brainwashed into a Microsoft slut by the time I'm done reading it.
Over and over again, Miguel De Icaza has displayed the same sort of breathless excitement over Microsoft technologies that I'd expect to see from a newbie, not a developer of his caliber. It's extraordinarily short-sighted for him to believe that he'll be able to keep up with Microsoft. This isn't a matter of talent. Microsoft has shown, time and time again, that it has no problem locking out other vendors using API changes and whatever other means available.
Miguel seems to be ignoring the fact that Microsoft will very likely do everything it can to keep Mono uselessly lagging. They've embraced and extended every technology they've adopted, and even their own APIs shift constantly. I realize that the .NET Framework looks like a different approach, and Microsoft is acting like it's going to start playing nice. If it happens, it'd be a first for Microsoft. I personally have my doubts, and history backs me up. What a shame that a talented developer like Miguel doesn't know better than to trust them.
-zack
There is a point in your life when you realize that you have written enough destructors, and have spent enough time tracking down a memory leak, and you have spend enough time tracking down memory corruption, and you have spent enough time using low-level insecure functions, and you have implemented way too many linked lists [1]
Last time I felt that way, I dicovered Lisp. Java also fits the bill (and so does C++ with STL, BOOST and ACE.
Good article on this appeared today:
.NET SDK, the cross-language support looks impressive, but the illusion holds true only until realizing that all languages in the mix are virtually identical. Microsoft has actually invented the concept of skinnable language: changing a language's most superficial aspects, and claiming the result to be a new language. There is only One True Language that is C#, and "skins" offered by Microsoft and third parties. Just like in GUIs, these skins will alter the system's look and feel, add a few features, but never compete with a fully new toolkit.
One Runtime to Bind Them All
Some quotes:
The reality looks much darker instead. The CLR is not truly language-neutral, and it will ostensibly favor languages that look a lot like C#. Those not in this group will be severely bastardized, producing dialects which are really "C# with another syntax"; look at ISE's Eiffel# (or even Microsoft's own VB.NET and J#) for great examples. Programmers' choice will be limited to superficial features: whether to delimit their blocks with curly braces, Begin/End or parentheses. It's also worth notice that the CTS/CTS do not allow use of the full set of CLR features; for example, unsigned integers are supported by the CLR but not considered language-neutral, simply because many languages share Java's abomination for the signed/unsigned duality (this includes Microsoft's own VB) and there's no good solution for this issue.
-cut-
Playing with the
Seasoned industry programmers will notice that the above is very much like Java and the Java VM. They are right, the above is just like Java.
The CIL has one feature not found in Java though: it is byte code representation that is powerful enough to be used as a target for many languages: from C++, C, Fortran and Eiffel to Lisp and Haskell including things like Java, C#, JavaScript and Visual Basic in the mix.
But this is surely misleading? It's true that this doesn't exist at present, but there's nothing in theory to stop it being implemented (isn't Java sufficiently "powerful" for this to be done?)
If Java is capable of doing it, then why not work on making compilers for those languages to Java's bytecode instead of working with a new language?
Kinda like Slashdot...
This page accidentally left blank
That doesn't help much. If it has patented yet unlicensed technology, then it can't be legally used in countries where the patent is recognized.
This is why free crypto software for a long time had an internal-RSA vs. external-RSAREF configuration switch for a long time, with the stipulation that RSAREF had to be used within the U.S.---as using internal RSA would leave you open to an infringement suit. (RSAREF was the only freely licensed implementation of RSA available, before the patent expired last year)
iSKUNK!
So what is Microsoft aiming for? Probably two things:
- Kill Java. They need to kill it before it becomes too wide-spread. They have a really good shot at doing so given Java's performance problems [insert thousands of flames from Java developers here] and C#'s advanced features like better encapsulation (you don't need to call set() and get() methods, you can map them to the = operator, for example).
- "Write once, run on Microsoft". In order to run .NET apps on another platform you would have to virtually re-implement (or substitute) the entire Win32 API, which will probably be modified at an ever-increasing pace. No company can keep up -- only open source may be able to do that, but Microsoft's opinion might be that open source is no real threat for the platforms where they want to deploy .NET. (After all, even the average Slashdotter seems to think that Linux will never be ready for the desktop -- quite idiotic, IMHO, but the more people believe that, the better.)
Insofar Ximian's Mono project may be a good thing as it offers a migration path where previously none existed (from Windows to Linux), even if .NET apps don't run properly on Mono (think about all the GUI stuff that can go wrong, for example). Besides, Java has never really been a mature technology IMHO and it's about time to replace it with something better, even if superficially less cross-platform.
Now the advantages of having a modular architecture become clear. Mono cannot break Linux, it cannot break X, it can probably not even break GNOME. There are more alternatives than you can throw a kernel image at if something goes wrong. Let's just wait and see what the Mono guys come up with. The only people who should worry about this are Sun and their followers. And maybe RMS.
Dude, what's wrong with you? The rest of us are swimming in chicks, piles of cash and fast cars! You must be doing something wrong! As long as you follow the instruction book they send you when you start an open source project, all this can be yours. It outlines in clear steps exactly what you need to do to make your fortune using Open Source software, and it always works! Didn't you get yours yet?
I'm trying to teach myself to set people on fire with my mind... Is it hot in here?
were you expecting to see a sig here? perhaps you'd rather see the inside of an ambulance!
Nice call broody.
:+)
Happy?
Please mod this post only if you think others should/n't read this. I have enough ego^H^H^Hkarma. Thanks!
Think of the IL (the language the CLR runs) as an instruction set akin to a processor's native instruction set.. Obviously every language can be compiled to to run in assembler..
It may be more efficient to redesign the language to work with the underlying stuff, but I don't think it's a requirement..
- Steve
Miguel's arguments sound all well and good, but I think he is fundamentally naive about Microsoft.
.NET framework are still vague. Now, why might that be? The naive might think it's because Microsoft still haven't worked some of the details out. As has been stated many times before, Microsoft is betting the farm on .NET. Microsoft are a very competitive company, with one of the most lucrative monopolies in the world. Think about that. Imagine how Microsoft will respond if they start to loose market share, or control over developers, because of Mono.
.NET! That's because it's great technology and these days we're such nice people." But as soon as they feel it's a threat, well...
Microsoft have fought tooth and nail over many years to build their monopoly. They will do whatever it takes to protect that, within the boundries of what they can get away with these days.
Some parts of the
As long as Mono stays a little project (which it is as far as Microsoft is concerned) then they will play nice. They will be able to point to it and say "Hey, look, even the Open Source people are supporting
Don't be naive Miguel. You are implementing a copy of a system still under development the world's largest and most aggressive software monopoly. Think about that.
I particularly liked his comment about Linux coming from AT&T's non-free environment. He seems to imply that the .NET framework is to the future what AT&T UNIX is to the present.
> They have incorporated many ideas from Java, and they have extended it to address new needs that developers had. They took where Java left off.
ROFL. Well, there you have it! An endorsement for 'embrace and extend'. We all know about MS's attempts to do it with Java, so I guess thats what C# is. Java, embraced, extended. Kinda like when the CIA was caught doing something bad, they lopped off the bad department, christened it unaffiliated with the CIA, and thus, we have the NED. But I digress. Anyhow, I just found it interesting just how upfront and accepted this approach is now.
"Old man yells at systemd"
I have two things I would like to point out to you. Actually after preview it's alot of things.
.NET Framework stands on it's own feet, and developers in the Windows world love it....... We are witnessing the creating and deployment of a new standard...
So when you copy your binary from Windows that was compiled with the Visual Studio.NET and run it on your Unix platform, it will just integrate nicely with your GNOME desktop.
How exactly do you plan on doing that, as I'm aware of, at least right now. Microsoft hasn't submitted a full spec to the ECMA. Again; I will mention that Microsoft has never done something like this in the past; they've always blocked people out.
Your ideas on writing pieces of code in different languages is agreeable except in this case. Writing chunks of programs or pieces of code vital to the overall program in a different language which may or may not work to spec is just asking for trouble. (IE: using asm for sound routines etc etc many examples)
The
A standard that we will have to fight to operate with in the long run. Instead of unix camp supporting those ideals we should be supporting things like java or creating or own stuff. Just because windows developers love it doesn't mean it's not java with a couple of addons. If it was wildly different in any manner I would agree that we should be looking to use it; however this is not the case. A standard already exists and that standard is java
The only restriction is that all of our work has to be free software. But other than that, I am ready to take money from anyone or listen to any kind of proposals for making this happen
We all know nothing involving money comes without a price. Don't blind yourself to that. If someone gives you money, they want something. For Microsoft it'd be whatever it took to end the free software movement; period. Try not to be a pawn in their game, try not to play the game period.
Your comment that follows above italicized voids most of what you said earlier regarding inteoperability.
I sincerely think that you need to assess what your true goal is. This isn't nirvana, this isn't a place where you can walk into the middle of the street and not get hit by a car. This is a cruel world, I fear your intentions are good and your heart and mindset is in the right place but don't be fooled, Microsoft and others make this a very cruel industry. There are certain things that you can and can't do and currently they set the rules, this is what we are trying to break so that we don't have to worry about if a standard is submitted and we base our code on said standard that it will work across the board. Building upon their standards which do nothing to help that only helps them.
Thanks for your clarification it did clear up a couple of points though.
I believe Microsoft actually obtained a software patent on at least one of the password hashing algorithms used in NT. If Microsoft ever pursued enforcement of that patent, anything that generated hashed passwords for use in the Samba password file could be at risk.
- jon
Ganymede, a GPL'ed metadirectory for UNIX
when this comes to its only possible conclusion: microsoft silently encourages this effort until lots of gnome folks understand how to write c# and write to the .net fwk apis - then they will crush mono/open source .net; they'll kill you with licensing and incompatibility; they'll take you to court and screw you silly.
.net fwk class libraries - what do you think those folks will do? learn something else, or put those skills to work - often for money - on windows.
and then you'll have a huge group of people that like coding c# using the
and i will laugh my ass off at you idiots.
1) I thought Miguel's arguments for why he's getting behind the .NET Framework(the CLI and CLR to be specific) were excellent. I have read much about the Mono project since the announcement of its inception, but this is by far the best explication I have seen. If he hasn't made me a believer, he has at least made me very curious.
.NET to me seem like the obvious directions(licensing as a standard to ECMA, support for multiple languages, etc.) that Java should be going towards, but, for whatever reason, is not. I think .NET(and Mono) if they pick up steam will give sun the kick in the ass they need to get moving on some of this stuff that they are not.
2) As an active Java developer, I think that this may very well be the BEST thing someone could do to help Java. The directions Microsoft are going in with
I personally think the main reason Sun has not further opened Java up is because they have not perceived the need to. They are doing some calculus in their head to make it as open as they need to gain developers from Redmond, but still try to hold onto as much as possible of it for themselves.
3) My largest concern with this, and I didn't notice Miguel addressing it there or in the followups, is the patent issue. My worst fear is everything would go incredibly well with mono: diverse compilers, robust libraries, etc. and we would all start to build code around it, and then about 5 years down the line Microsoft whips out a patent and demands royalties for all the labor that we have done under the illusion that it would be free.
I would love to see Miguel address this concern. I cannot speak for others, but I would be a long way to considering getting involved with Mono(whether it mean using their tools to develop, or even contributing to the developmen of libraries, languages, etc.) if I felt better about these things.
Sorry, even though Miguel does a good job of going into an indepth "answer", Alan Cox takes all the air out of the sail.
Java is NOT broken or lacking because it is inferior. If it is lacking anything, it is because no one has gone the one step further and fixed it. Do THAT instead of rebuilding from M$-poopie.
Finally, the simple statement by Alan that as soon as M$ decides they're a pain in the ass, poof, there goes the VM into patented special-feature land (see kerberos for a similar f*ckjob) and no .NET viralware will run via mono. Add this to the FACT that the predominant C# compiler in use will be the M$ version. De facto factamundo. The M$ version will be "special" while the free variants will be broken. Just like the PROPER implementation of java (non-M$) was "broken" with respect to the illegal perversions that M$ inflicted on it (and thus we have C#).
M$ is not changing its tune on whit. This is NOT a gift to the developer community. It is NOTHING but a means of continuing lockin (and conversely, lockout) and moola into Gates pocket. Nothing more, nothing less. It may be a nice way to build stuff at some future time for linux but it is NOT a means of being able to run some .NET windoze binary on linux (never happen except accidentally because the code was simple enough not to include "broken" M$-only freakishness). You will find that most of the important stuff will not run. Developers will STILL not make linux-friendly stuff because the bulk of the market is in M$-doze-land and they can run the broken/perverted .NET M$_VM-only stuff.
Stone cold fact. Sing the praises of mono for having the POTENTIAL of providing a nice development environment for linux coders (though unnecessary if they'd instead focus on the correct path of Java) but don't delude yourselves that this will mean windoze binaries working on linux.
In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Read the explanation. That's covered. They're implementing the ECMA spec and adding seemless access to GNOME. If there's compatibility with Microsoft's implementation, that's nice since portability is free. If Microsoft deviates from the standard, it's a shame Mono is still has merit, especially language independence which was always important to GNOME. Essentially, Mono is cherry-picking features from .NET.
Okay, you're asking, why not use Java's JVM since it supports multiple languages. As someone pointed out in the gnome lists, Java, like TCL, is Turing complete so it can support any language your CPU can. Suppose you tried to implement Java in TCL? Would you be pleased with the performance? Probably not. Java's JVM lacks several features that make running languages like C++/C, Lisp, and Haskell fast, including:
The .NET's CLR gives you these features. If Java's JVM were open source, the Mono team could easily extend the JVM to support these features. It would certainly make life a lot easier. Unfortunately, if they did, Mono would get little commercial support, and they'd receive a call from Sun's legal department. I personally hope .NET and Mono force Sun to do the right thing and extend the JVM to efficiently support other languages.
Java is nice, but the take it or leave attitude of Java is the reason .NET was not laughed out of existence.
Miguel de Icaza has committed two sins against the "spirit" of "free" software:
As I understand it, Miguel is looking at the CLR part of .NET as a productivity tool; he believes that Ximian developers will create applications faster and more reliably using a clone of Microsoft's technology. And he is very valid in pointing out that cloning .NET will follow a long tradition of "freeing" proprietary technologies. If GNU can clone C, C++, Java, Word, and what-not, why complain about cloning the .NET CLR and C#?
Miguel is not forcing anything on anyone; Gnome and GNU will not be dependent on Mono, and Mono only imposes on those who wish to use it. So long as Miguel protects existing free code from proprietary contamination, I see nothing wrong with what he's doing.
As to whether he can succeed -- well, I think he's bitten off more than Ximian can chew, in that implementing certain pieces of the .NET CLR and VM is unlikely to attract hordes of Windows-based developers, nor is it going to offer the functionality that will allow cross-platform development. Perhaps the only "evil" involved here is that Miguel's efforts may legitimize Microsoft's monopoly as a false example of the "openness" the monster of Redmond. We'll need to keep an eye on that.
In the end, Mono will sink or swim based on its merits; if developers don't like Mono, they won't develop for it, and it will go the way of the dodo. On the other hand, if Mono works, it could be a Very Good Thing by making application development easier for Linux. Time will tell.
All about me
From the statement:
:)
:)
The CIL has one feature not found in Java though: it is byte code representation that is powerful enough to be used as a target for many languages: from C++, C, Fortran and Eiffel to Lisp and Haskell including things like Java, C#, JavaScript and Visual Basic in the mix.
Let's forget for a minute what the source of this new byte code language, or standard, is. If it truly delivers the above, that would be quite an accomplishment, and probably a good thing. Remember I said, forget about the source for a moment...
What I wonder is, how does for example parrot measure up against that? Parrot seems to be moving quite slowly, but I might be mistaken since I am not involved. Since it apparently is the new engine for perl 6, I'd say it must have something going behind it.
Anyhow, one of the things with parrot is at least said to be the possibility to compile a lot of other languages besides perl, such as python or java into parrot byte code - something that indeed would be a good thing for portability and the ease of running a little of whatever on any platform. I am not sure how deep these plans actually go, and how feasible it really is.
But parrot is where I would like to set my hopes, so can anyone tell me - do I wait in vain? Is CIL really the way to go? Or are we, in reality, simply stuck with different compilers and/or interpreters for different languages?
You betray a very limited understanding of the problem. The CLR (like the JVM) makes a number of assumptions about the nature of programs running upon it that a CPU can never make--things like the way stack frames are created, exceptions are propagated, methods are dispatched. If the language is not designed with the same assumptions, it can not run on the CLR (of course, if you are going to give up all efficiency, you could write another VM in C# and target the lanugage at that). All the languages that the CLR supports--even MS languages like VB--have been re-designed to work with the CLR.
Let's face it. As much as we may not like it, the majority of the computing world uses some flavor of Microsoft Windows as a desktop computing environment. Now, we can argue about this from many different perspectives.
(My personal opinion is that Microsoft is not necessarily evil on account of this. To be honest, Windows is actually relatively useful -and useful is what companies require to survive. Rather, Microsoft is evil simply for what they are charging for their software. Sure, they can charge companies whatever they like (I don't care). However, the common man for his home computer should not be charged hundreds of dollars for an operating system and office software. That is truely the real evil of Microsoft and the Microsoft monopoly.)
Anyways, back to my point. Miguel is right because, like it or not, Windows is a reality that we have to coexist with. We can view this as contending or perhaps cooperating. Whatever the case, it is here and that is that.
Well, as Miguel said, Windows is here and that means that
Now, if Microsoft had done a terrible job with
Therefore, it makes absolutely no sense for us to do our own thing. Especially considering the benefits that we will recieve due to actually getting along a little bit better.
Back to my prediction. I think that the computer world is heading toward a point where specific desktop platform is a non-issue. People thinking about the short term will fret about XP this, or Gnome that. However, something like
The journey to a non-platform-centric desktop world will have many parts. One of these will be the arrival of other competitors on the scene. That is hear, with wonderful options such as Linux/Gnome (foo on KDE) and Mac OS X. Ok, KDE can play too if they manage to provide things like
Other pieces of the puzzle are things that allow applications to be used from these multiple platforms. Well, suprise but some of these are already here. They best example to this is the internet. Other examples include emerging technologies such as the
Anyways, once again, just my two cents. For what it's worth, I hope someone gets something from it.
(Go Miguel, go. Go Miguel, go!)
People like me stuck with GNOME (I can remember a disasterous attempt to use way not ready for prime time 1.0 release on a college campus) because we believed in the GNU approach that GNOME was taking. Now that Mr. de Icaza is working at a high paid job, apparently none of this matters anymore, he has come to embrace the "whatever gets it done" mindset.
But would some one explain to me how a complete reverse engineering of a MicroSoft compiler and all the other bits and pieces of .Net is possibly "getting more done in less time." Not to meantion what is going to happen when MicroSoft says "no you can't do that" and sets out to put and end to it, and I think from the thier track record you can count on it. The only reason they haven't done so yet is that none of this has become a "standard" yet and Miguel seems perfectly content with helping them make it a "standard".
The notion that we should roll over and accept the fact of a .Net world flies in the face of everything the GNOME project asserted from the very beginning. They told us that we didn't have to accept proprietary standards, we could make our own. Now we are being told that it is OK to accept a "standard" that just happens to come from a proprietary company, in this case the worst of them, MicroSoft, because "I like it better" and "it will help me make stuff faster".
Well this is all just absurd. No matter how calmly he tries to assure us that everything will be OK, I think that anyone that hasn't been living in a cave knows what getting into bed in any way with MicroSoft will end up doing to you. You pick up a snake, you are going to be bitten. The only possible reason I could see for wanting to do this is for Ximian to slip in some non-free parts of Mono they want you buy (but it's OK cause it is just to connect to all the .Net stuff you already have from MicroSoft) the same way they did with evolution.
Um, RMS basicaly said "That don't sound like something miguel would say. I would be suprized if it was true."
How is that "Flying off the handle"? (not that he dosn't).
autopr0n is like, down and stuff.
ECMA spec be damned. It is incomplete and will remain so. The key things that WONT be in it, that is a CERTAINTY, will be M$-only. You want to get their benefit and run your code PROPERLY on computers? Ah, well you'll need the M$-C# compiler and the M$-VM. Anything else will fall short and just not cut it. Again, see kerberos, samba, etc, etc, for what to REALLY expect. M$ has not magically changed one iota. Not. One. Bit.
They will NEVER fully release to the ECMA the full spec. They will hold key parts back for their own use ONLY and with others, well, you can pay to license it if you want. Cost you a pretty penny but there you have it.
In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Miguel, in an otherwise well thought out and well constructed rebuttal to TSH (Typical Stallman Hype), makes one comment I take great exception to...something to the effect of "CIL is Microsoft picking up where Java left off."
.NET like it's a great new IDEA.
.NET allows you to compile ASP code." JSP. "Tighter integration with IIS allows you to better utilize ISAPI." Servlets. "Serialization and persistance." EJB.
Excuse me, when the hell did Sun Microsystems "leave off"? Version 1.4 is coming out the door at any time, with such nice features as buffers and extensive regular expression support, and all of a sudden they've "left off"? Java will run on nearly every system ever created and in all sorts of unusual situations and suddenly Sun dropped the ball?
Look, Java is effing huge. People do write applications in it, and I'm not talking about ticker applets. Today's machines can run Sun's graphics engine as well as they can run GTK, and it's available underneath any OS. Any "work" that Microsoft is doing on the CIL has already been done by Sun, with the exception that MS' byte code executes faster and has better UI support.
But is there any wonder? An implementation of the CIL requires a lot of work on the part of the window management driver authors, meaning there's plenty of room for tuning. An implementation of Swing requires very little -- implement a fiew basic AWT classes and Swing, which is "100% Pure Java," will work atop the older class. Meaning that there has to be a lot more abstract code in Java. Meaning you can be damn sure your application looks the same everywhere and there won't be any glitches due to "factionalied" implementations.
Of course, most of the development world is still coping with the idea that different platforms require different code (hence the laundry lists inside Makefiles). The Java paradigm won't let you do that. It says, "write that shit once and deal with the slow down, it shouldn't be a dealbreaker for cross platform code." It shouldn't be. But it is. Many development houses can't get over this. Hell, I mentioned to our IT guy that I was doing our mailserver in java and he thought I meant an applet, scoffing "Write once, run nowhere."
CIL is an attempt to get under the skin of this, but it's a flawed attempt. Jesus, all the development time and heartache going into the optimization of x-platform windowing "frameworks" and "toolkits" where there already is one seems headstrong. Actually, it seems idiotic, and it's why I seethe whenever I hear somebody drop
"But C sharp has improved garabage collection, language integration and runs anywhere." Yeah, that's Java for you. "But
Jesus, why isn't Sun mopping the floor with these idiots???
Hey freaks: now you're ju
Isn't .Net different though, in that there are system libraries to worry about? I don't claim to be an expert here, I'm just going from what I have read and heard, but let's look at some crossplatform examples:
Java - you have a VM and a standard API that are with you wherever you go. Your API is limited, but you run anywhere. Life in a box!
Qt - you have an API that operates on all supported platforms. Each platform requires a separate build. The upside is you can link with native system libraries just like any normal program, and do specifics with win32, X, Carbon, etc.
.Net - a hybrid of the above. Your foundation is a VM, but you rely on libraries that exist outside of the box. Because the necessary libs may not be present on all platforms, your program may not be available everywhere (just like Qt).
.Net sounds like a nice solution to binary-compatibility though.
You want the long and short reason Miguel is so hot on .NET? Market share for Ximian apps, period. The technology will let Ximian write apps that they can sell to both the Linux and Windows markets. Pretty transparnt, really.
.technomancer
Nah Not back to the drawing board, just back to Java where what Miguel wants is actuallly possible (the fantasy part, that is, of little binaries playing equally well on all computer playgrounds). The .NET binary crap running on linux is sheer, unadulterated, feces. I'm suprized he (Miguel) can stand the smell of all that feces gushing out his bunghole/cakehole. Frickin' delusional twit.
In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Craig: "But look: we're a business, okay? We're in the business of licensing intellectual property. So if it turns out that in the future that business says, "Okay, we should license the patents to people who use that in order to be compensated for the development of intellectual property," maybe we'll do that. You're always welcome to come and ask us to license anything from sources to patents. But I mean, we are a business. We're not --
...
Craig: Well, at the end of the day, if you have a patent, you enforce the patent if it's valuable to you. And so I think that Microsoft and other people who have patents will ultimately decide to enforce those patents.
Brian: Are there any patents that apply or that will apply to implementers of .Net or Hailstorm?
Craig: I expect there certainly will be. I mean, the patent process takes a long time.
Specifically, in what way are the Java bytecodes and VM "a bit more paranoid about things like security"? I've looked at both the specs and I don't see how this argument can be supported, but I'd seriously like to learn.
I spoke in ignorance, based on a belief that .NET supporters were serious when they were talking about the ability to run C, etc., in CLR. From looking at Microsoft's security overview, it does appear that they have things locked down pretty tight for the CLR's managed code execution.
Unfortunately, there aren't enough details there, and I was not able to find a good link to more details that would cover things like arbitrary memory access within a specific assembly, etc. Given the frequency of pointer passing in C based API's, though, I can't believe that any C code running in CLR would have much intra-assembly security.
So, it looks as though the CLR, when running managed code, at least looks as though it is on a similar footing to Java's security specs. The proof will be to see how much code winds up running within the managed CLR and how much winds up going unmanaged.
- jon
Ganymede, a GPL'ed metadirectory for UNIX
I liked the comparison of technologies, but it misses a main point. Or rather, I believe its primary audience misses a main point.
.NET and the JVM may be limited, let's not loose track of the fact that extern "C" {} and its ilk are far more limited. Instead of limiting languages to objects without templates and continuations, the current scheme of exporting function symbols and structs is downright embarrasing.
.NET as a library/component interface and leave each language relatively intact. For example, implement your library/component in the language of choice, but export the functionality (what is currently "handled" by library symbols) in a language-neutral but far more feature-rich manner.
.NET is not perfect. The JVM is not perfect. But I strongly believe that they are a step in the right direction. For example, the current choice(?) on UNIX systems is to have C-compatible exports for libraries.
While
What would be really nice is using
Doesn't "Managed C++" allow for advanced C++ features that simply are not exported for use outside the codeblock? C# has "unsafe" blocks for its own bit-twiddling.
We're on the right track here. Let's not throw the baby out with the bathwater!
- I don't need to go outside, my CRT tan'll do me just fine.
Miguel's experience with .Net seems to mirror my own. It's a very productive environment that's a blast to work in.
.Net on Windows, then having to do some work in any current GUI app dev system on Linux.
.Net, let him prove it, but don't suggest that we have to learn to live with less for political reasons.
Have you ever gotten used to working in a Unix/Linux shell then had to jump over to Windows and do something on the command line in *DOS*? Know what that feels like, that helpless feeling of losing all your magical powers?
That's what it feels like to work in
If RMS thinks he or his minions can design a better architecture than
"Those who have never entered upon scientific pursuits know not a tithe of the poetry by which they are surrounded."
Miguel is navigating dangerous waters that have wrecked other ships befoe him but he thinks himself a better captain. I have news for him: they were better than he thinks. As I see it, all of Miguel's arguments are sound and lull one into actually wanting to believe lions will lie down with lambs. Who can fault peace, love, and understanding after all? However, the real problem is not his logic but an underlying naieve assumption: that Microsoft has changed and will allow .Net to be cross platform when deployment volume becomes significant. When .Net starts to gain significant market share, they will do what they always do, add patent-protected feature that kills the cross-platform nature of their framework. It is in fact it is a deviously clever strategy--worthy of a Borgia Prince coached by Machiavelli himself. Give hope and encouragement to a large component of the open source developers which are givng Microsoft heartburn and let them devote an ever larger slice of their creative bandwidth and energy both feuding internally and developing to adopt .Net. Encourage them to do it--even help them walk deep into it and tie all their code to it inextricably. Allow .Net to change their architecture, setting the hook deeper. Then after the distraction has divided the open source community long enough and defocused Gnome, Mono and ensnared other open source projects, drop in a patented-feature that kills its cross-platform nature. They did it with Kerberos, then Samba, and lately NetApp using CIFS. I have absolutely no doubt they have not had a change of heart of strategy and will do it to Mono/.Net. It is only a matter of time. Voila--Victory Microsoft style. Miguel and Mono will be roadkill.
Miguel's argument can be boiled down to this: (1) writing big applications sucks because complexity grows geometrically with each line of code, and (2) integrating code written in different languages sucks because complexity grows geometrically with each line of code in either language. Basically, Miguel is fighting the same fight that every software engineer has faced since the beginning of time. Complexity grows much faster than anyone can handle, and as soon as you let heterogeneity into the equation, you're basically screwed.
The only problem that a CLR supposedly solves is the maintanence of the bindings. Instead of binding Gtk to perl and python and ada and C and C++, etc., you bind it in a library in the CLR. Except that to access that new CLR binding, you need to have perl and python and ada and C and C++ compilers that target the CLR, which is certainly a more glamorous job than maintaining bindings for every language under the sun, but is *WAY MORE* complex.
Basically, the CLR is middleware for the desktop. It does nothing to decrease the complexity of the system, it just shifts some of the complexity to another software engineer. Applications get easier to write, but new compilers need to be written and maintained.
When Microsoft's writing the compilers and you're shelling out the cash, you're only responsible for your piece of it - the application. Obviously this is good for you. But the free software community is responsible for all of it, from compilers to run times, to new bindings, to applications. *We* have to do it all. I wonder if Ximian will really benefit from dispatching software engineers to work on Mono when they could be working on the applications. Companies that buy stuff from Microsoft don't have to send software engineers to work on Mono, but free software projects will "lose" engineers because they'll have to work on Mono, not their respective projects.
The challege that software engineers face in the future is constructing systems that actually reduce the complexity of applications, rather than just shift the complexity elsewhere.
Outside of a dog, a book is a man's best friend. Inside a dog, its too dark to read.
You need a shirt like this to remind the ladies that they find hackers irrestable. Women constantly say to me, "You know I do dig Unix... wanna go out?"
Sun does charge fees for J2EE. What made you think otherwise? What makes you think Microsoft couldn't charge huge fees for Windows XP server? (Oh yeah they do...)
Remember - it was Sun that renegged on ISO and EMCA standardization - not Microsoft.
Right, except it wasn't "not Microsoft" it was "because of Microsoft".
Sun has always stated it won't opposed clones (including open source clones) of Java, as long as they aren't called "Java". Microsoft's Java escapades were completely different - it licensed Java from Sun then proceeded to release "embrace and extend" enhancements.
Sun's "Java Community Process" is a complete sham and everybody knows it. Sun's vote is the only one that matters.
This ignorant statement simply shows that you have no clue about the JCP. Do a little research.
Why are you posting anonymously anyhow...? ;-)
299,792,458 m/s...not just a good idea, its the law!
Galileo: "The Earth revolves around the Sun!"
Score: -1 100% Flamebait
The Scorpion and the Fox
A Retelling of an Ancient Middle Eastern Tale of Two Enemy Countries
by Ms. Holly
Once long ago in the vast lands of the desert there was a great and vast river that had to be crossed for animals to seek food and water elsewhere in the desert. As it was on this day Fox had come to the point where it had to cross the river in its travels. As it stood contemplating the best way to cross the river safely Fox's life long enemy Scorpion came upon it and began to talk to Fox.
"Fox as I was walking along the river bank looking for food I noticed a particularily easy place to cross the river where the water is not so deep and not so swift. As it is I would like to cross over myself also but as I am so small it would be impossible. Would you be willing to take me across if I show you this place to cross the river?" asked Scorpion.
"Why should I take you across? How could I possibly trust you will not sting me on the way across as we have been life long enemies?" asked Fox.
"Why would I sting you? For if I stung you it would mean you would drown then both of us would die." replied Scorpion.
Fox thought this over for a bit while carefully watching Scorpion with a distrustful eye. Eventually Fox said, "Show me where the place is and I will take you across."
"First place me on your back and then I will show you. For otherwise you may jump in and leave me behind once I show you." replied Scorpion.
Fox thought this over for a bit while carefully watching Scorpion with a distrustful eye. Then walked over to Scorpion and allowed him to climb onto its back. Scorpion directed Fox to where the river was not so deep nor so swift such that it was a safer place to cross over. As Fox was swimming across the river and had reached the middle of the river Fox felt a sharp stinging sensation on its back and realized it had been stung by Scorpion. Fox cried out, "How could you sting me we shall both drown now?"
Scorpion replied, "It is better we should both perish than that my enemy should live."
Can't think of clever sig so had to settle for this! Damit it Jim I am a programm not a sig writer.
Has Sun sued Apple over Cocoa written in Java? Has Sun sued any of the large number of companies that have implemented a native compiler for Java?
The lawsuit was specifically over JNI and RMI. Sun had no problems with strict supersets of the Java language (COM integration for example). However the native interface was replaced with RNI(?) and RMI was simply ommitted.
This means that if people coded to the spec for native integration with portable C, it wouldn't work from one target to the next. And in the case of RMI, MS simply didn't want a competitor to DCOM within DevStudio. RMI is a big deal. On a "pure" Java platform, RMI was how distributed computing was done. You take that away and suddenly you're right back with C and C++ and their myriad of options for distributed programming but lack of any consistent single API that you can use anywhere.
You'll note that MS whined that RMI was just too time consuming to be bothered with. Then after the judgement, an RMI implementation was produced in less than a month!
THIS is the reason Sun has not submitted Java to a standards body. If Java is messed with, Sun would have no legal recourse while suffering significant liabilities in keeping Java's APIs consistent. Add that to the fact that no standards body has sufficient clout to do more than look at Microsoft (or anyone else) sternly.
Do I trust Sun completely. Of course not. It is a large, public company with all of the benefits and drawbacks of a large, public company. But I trust them *enough* (with their current track record) to keep Java relatively clean and consistent -- especially in light of folks like IBM making compatible and very fast JVM implementations.
Sun isn't as closed off as people would suggest. The Java API for XML Parsing was heavily influenced from outside contributors -- especially the 1.1 version with TRAX.
Where are the cross-platform, standard C and C++ libraries for networking, threading, graphics, distributed programming, database access, XML parsing, object serialization, directory (LDAP, X.500, etc.) lookup, authorization, authentication, i18n and l10n? I'll tell you where: in the standards bodies who cannot enforce what people use nor can they do anything about people who ignore the spec.
Where would Java be if it were submitted to ISO five years ago? Right where C++ is today with Microsoft providing the only viable development platform. Woohoo.
- I don't need to go outside, my CRT tan'll do me just fine.
What i like about this, is that in the future it could well mean that i could use my windows application in linux, NOT via wine, simply because they are .NET based. This would save alot of hassle for me, because Windows crashes at a pathetically high rate, yet I have to use it!
.NET (although, it wouldn't make much sense to most developer why they should) we'd get automatic cross-platform games...something most hard-core gamers would just love!
Then,games...should games ever begin to use
Bad thing: should Microsoft ever decide they don't like Mono...well the API will somehow become so that Mono can't reimplement it.
Derek Greene
Like a lot of people, when I first read that GNOME was going to embrace a Microsoft technology, I was outraged.
The more I read, however, the more it makes sense. If the bytecode is truly portable this could produce an explosion of industrial quality programs that will run on Linux. This could potentially remove one barrier that is slowing Linux's growth as a viable mainstream desktop operating system. One has got to wonder what Microsoft's strategy is to thwart this.
So, I think we should proceed and implement Mono while keeping one eye open for that giant tube of Microsoft Vaseline.
The race isn't always to the swift... but that's the way to bet!
First, let me say that I use Gnome for my desktop and have used GTK+ for sizable projects. I've even developed smaller GNOME applications and found the various API's horrible. I can't stress enough that I'm not trying to cook someone here for the sake of cooking. I think the only point he makes here is that GNOME is without a solid technology direction and has suffered dearly for it for a very long time. In fact, he as much as points this out. So, call me a troll if you like but I fail to see how Mono isn't anything other than a new tech headline. Please read below if you care to follow his assumptions while he explains pretty much nothing.
The CIL and the promise of language independence
This is what CORBA promised more or less. Please correct me if I'm wrong, but didn't Gnome start out using CORBA and decided that it needed different technologies later in the cycle?
Are there not already language bindings for C, C++, Python, Perl and I'm sure several others? So tell me again why we need an interpretted wanna-be CORBA in the mix?
This technology allows programming languages to be considered on the basis of how they will perform for a given task, and not based on the runtime libraries that you will depend. Any software engineer should read this article:
Generally speaking, good engineers already do this. The choice of yet another tool somehow doesn't make this happen, though, choice can be a good thing. Adding a slow runtime is not going to make the awesomely optimized FORTAN libs suddenly appear and become compatible with various CIL implementations. In fact, really all you can say is that when you use this technology [CIL implementations], the language of choice will no longer effect performance rather it will be forced back onto the developers to optimize for a given language; that is, language specific CIL tuning tricks. On the other hand, all of the languages which use this are going to have a negative performance impact so it sounds like programmers will have even more choice (seemingly pointless). Let's see, I can pick C or C++ for performance or I can pick C/C++/C# [CIL implementations] which performs an order of magnitude slower. Hmmm. Hard choice. Tell me again why I should care about CIL, Mono and C#??
GNOME had always tried to have a good support for multiple programming languages.
No it hasn't. Save only for the CORBA efforts, GNOME is very C biased. One of the common complaints coming from the C++ KDE camp. The more correct statement would be, "multiple programming languages have always tried to support GNOME." These efforts have inflicted various levels of pain on their bindings implementors.
They have incorporated many ideas from Java, and they have extended it to address new needs that developers had. They took where Java left off.
What does that mean? Sounds like they are re-implementing Java. Why? Why don't you just further improve Java. I'll make it known here, I've never beena Java fan but this just doesn't make sense to me. It only makes sense to Microsoft because they badly need to de-crown Java. Aside from Microsoft, I don't see how this helps anyone. By the way, what are these "new needs that developers had", that existing technologies can't address? Do we really have to move to a VM to address these needs?? Somehow this seems like we're taking several steps backward. Anyone?
Libraries have been built by disconnected groups (PNG, JPEG, Gtk+, Xml, Bonobo, CORBA spec apis, etc) and the end result is that a developer eventually has to learn more than he wanted to in the course of developing a large application.
Might this have more to do with the fact that GNOME has been wondering without direction for a very long time and no one in the GNOME camp has been willing to settle and agree on a single API nor the technology behind these APIs? Does it have to be the programmer's fault? Can't it be that the API's provided have just sucked? Can't it be that the API's have changed so fast and often that programmers wonder what they are doing trying to implement a large application via GNOME? Can't this mean that the implementations behind the API's have been less than wonderful and seemingly change daily? Does it have to be because programmers don't want to learn? Seems to me, if programmers didn't want to learn, they wouldn't be trying to develope large applications in a highly dynamic environment (from an API perspective). Wouldn't a static API help address this? Won't simply adding yet another API compound this issue even further?
There is a point in your life when you realize that you have written enough destructors, and have spent enough time tracking down a memory leak, and you have spend enough time tracking down memory corruption, and you have spent enough time using low-level insecure functions, and you have implemented way too many linked lists [1]
Doesn't this really reflect the choice of underpinning APIs and implementations behind the APIs as much as the language. It's funny, I've developed very large applications (C/C++) before and never had nearly as many issues as one does when trying to use the GNOME/GTK technologies. Might it be that you've been chasing the wrong end of the technology spectrum? Might it be that you should of been looking to replace GTK and the billion other obtuse libraries that are the foundation of GNOME with better, faster, stronger technologies? Might is be that the number of memory leaks and associated debugging issues have something to do with design skills and/or coding habits? In not in whole, in part? Some part? Maybe a little? If you have even a small problem which is compounded over and over in various suite of libs that is GNOME, might this actually result in a large problem manifesting it self as obtuse APIs which lend them self to these issues?
Evolution took us two years to develop and at its peak had 17 engineers working on the project. I want to be able to deliver four times as many free software applications with the same resources, and I believe that this is achievable with these new technologies.
Wow! This really is magic technology1 It's going to 4x the level of productivity over any other tool, toolkit, and language. Wow! Does it come with a bridge too? I can't wait.
Even C++ was invented at ATT.
Yes, you're right, however, it was written by people who wanted to look at solving real problems with a different approach while leveraging the large C programmer base. It was need driven. The same can not be said for C# and CIL. Both of these are being driven my Microsoft to side step Sun and Java. The motive is as important as anything else, especially when we are talking about Microsoft. If, according to you, it's pretty much Java with some icing, why not go the shortest and best path for everyone and help improve Java? Go ahead, make the icing for Java. Then, you'll have everything you're asking for with a whole lot less effort and TONS more people will be rewarded for your efforts.
Windows developers know how to write code for it.
Do they? Windows developers are going to be coding to GTK's and GNOME's interfaces? That's news to me. As far as I know, what this really means is that Windows C# programmers will be able to code C# on unix. Last I heard, Windows C and C++ programmers already know how to code C and C++ on unix. Please, tell me again where this magic bean grows from...
Lets make it easy to bring developers from the Windows world into our platform.
I must of fallen to sleep or something because I don't see how this has suddenly changed. Anyone?
Training materials, tutorials, documentation, tips and tricks are already available in large quantities, lets leverage this.
I seriously question this. Seems to me, that would be true as long as the programmer is really using C# and the underlying CIL implementation is the same. But, you're telling me that you're developing your own CIL and your own C# implementation so I doubt this will be true any more than it is today for any other given language and platform combination. More magic beans. Mmmm....I smell fresh brew magic coming my way...
Sorry folks, I've gone on long enough...I'm simply tired of typing. Obviously I don't see anything that he's stating other than there's a whole bunch of magic in this technology that no one has ever seen before. Furthermore, I think he helps make a wonderful argument that GNOME needs someone else at the helm. And if he's saying that he's not at the helm (I think he tried to say that too), then GNOME very badly needs someone which is not him.
Greg
Now that same argument, applied to de Icaza applies perfectly. Mono is not going to be "bound" in any way to GNOME, that much is fact. So the core product itself remains free. But more importantly, Miguel has to answer to a board of directors, whereas Linus can do (or not do) whatever he wants. They provide funding. They call the shots. They agreed to Ximian funding of Mono. How is anyone (especially RMS) entitled to an opinion here?
Regardless of RMS's embrace and extend FUD about everything being GNU (I bet very few people see it that way, but if it quacks like a duck...), he has absolutely no say about anything Miguel does, period. His argument of "Miguel better answer to the community" can be cleanly compiled to "explain this shit to me, boy".
Oh, and BTW, I'm surprised nobody has mentioned this small detail: RMS was turned down from the GNOME board of directors in November of last year. From the precedent of previous flame wars between RMS and various other people, who can say this is not simply his way of giving GNOME a bad time?
And finally, let's face it: Anything that has a relationship (remote as it may be) with Microsoft is immediately turned into an argument about "giving into the dark side" and "fight against the evil empire". That sure gives way to very constructive discussion. Most of the posts here have either tried to denounce Miguel as a traitor or simply nit-picked his reasons for doing what he's doing. Very nice.
And to Miguel: Dile a RMS que encamine sus pasos a la progenitora de sus dias y la salude de tu parte =)
Go ahead and mod me down now.
The patent issue could be a problem, but there are a few things to lessen the worry:
1)Mono is being conservative and only trying to implement things that are already in existence. See this quotation: "We are trying to stay on the safe side regarding patents. That means that we implement things in a way that has been used in the past and we are not doing tremendously elaborate or efficient things in Mono yet. We are still very far from that. But just using existing technologies and techniques." from MSDN.
2) You say: "My worst fear is everything would go incredibly well with mono: diverse compilers, robust libraries, etc. and we would all start to build code around it, and then about 5 years down the line Microsoft whips out a patent and demands royalties for all the labor that we have done under the illusion that it would be free." It is unlikely that a surprise patent is going to bite you 5 years down the line. It is true that until a patent application is finally accepted or rejected, the patent claims are secret. See 35 U.S.C.A. sec. 122(a). However, this period of secrecy is fairly short. MS submitted the API specs to the ECMA at least a year ago. Those specs are what the Mono libraries are being built on. Those specs will likely be described as "described in a printed publication." If MS wants to patent any of the API's, it has only 1 year in which to do so. See 35 U.S.C.A. sec. 102(b). Otherwise, there is a statutory bar on patentability, and the specs are in the public domain. See id. If MS has applied for those patents by now, there is a maximum 3-year time span for those claims to be reviewed and accepted or rejected by the PTO. See 35 U.S.C.A. sec. 154(b)(1)(B). Generally, however, MS would have to prosecute its patent within 6 months of the filing date. See 35 U.S.C.A. sec. 133. Therefore, "secret" patents are likely to be in hiding for less than 3 years.
I hope this allays some of your fears. Cheers!
P.S. IANAL (but I hope to be one some day), and anyone construing what I have said here as legal advice to their specific situation is an idiot.
~~~~~~~~~
dissertus scribendo latine videri volo.
Oh...and they're SO well published aren't they? Yeah, M$ is going to give the whole hog to ECMA. There wont be any hidden strings anywhere that ONLY works (and is only useful) on windoze.
A nice generic development environment, maybe. A means to run M$ binaries on linux? Never ever ever. NEVER.
In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Miguel says: So when you copy your binary from Windows that was compiled with the Visual Studio.NET and run it on your Unix platform, it will just integrate nicely with your GNOME desktop.
.NET CLI integration with KDE?
Hmmmm, I wonder what the KDE people would have to say about that. Is there any talk on the KDE mailing lists about
Lots of insightful comments, but no one's actually picked out the yawning chasm of a non sequitur in the Mono programme:
If you like some of the Dotnet features, you have to clone the Dotnet Framework
I might like my mother, but I'm not about to clone her so I'll someone to marry in a few years - I know that her virtues can be found in other forms.
For example, we could develop a new CIL that was based on Scheme, but which could support programs originally written in Java syntax. This might be a better language superset - certainly many early LISP developers intended it to be an intermediate language, so the parens were always optional in essence.
Consequently, the only possible justification for cloning the Dotnet Framework is that MS tools will facilitate development of Mono apps, and that (equivalently) Dotnet apps will port to Mono. And on this point, it seems the crowd has spoken with one voice - it just ain't gonna happen.
lynx_user_abroad wrote:
can someone explain to me why I keep running into Java apps that crash horribly on my Macintosh?
It's because you're using lynx.
I never said the work RMS was doing is bad, I said he's firey and has a tendancy to kneejerk. Demanding a response before investigating Miguel's comments is pompus.
Mods: Please moderate my comments to is not one with the hive mind (-1) from now on instead of veiling them in stuff like "redundant", thanks.
Luck favors the prepared, darling.
I'm sorry, but it needs to be said, what is the story with these stack based virtual machines? Isn't a stack based virtual machine a dipology of good sense? I mean really, who actually sat down and thought "yes, you know, it's a good idea to binary translate from a language that is significantly different (stack based) from the target language (register based), and, to do it at run time". What's the sense here? Exactly, what is it? As I sit through my 20 minute install of random piece of java software I have to wonder, couldn't it be compiling those bytecodes to something native right now? Like, even if it still did the groovy runtime optimisations, it could save itself a whole shitload of trouble it was to precompile it. As for the whole signed/unsigned duality, yes, I hit that in a major way as I tried to write my JVM backend for GCC. Try compiling any normal C program without unsigned types, go on. Then there's the lack of unstructured memory, object store, etc, etc. I'd like to see a C compiler for .NET that doesn't suck ass -- I hereby claim it cant be done. When you embrace .NET (or for that matter Java) you are killing native code compilation and, more importantly, you are killing C. Some people might like that but I happen to love the C language (well, not the C99 extensions, but hey).
How we know is more important than what we know.
One point Miguel made really made me sit up and take notice. He pointed out that all of Gnu started out as Richard Stallman's attempt to make a free copy of a proprietary system, and Mono is just another attempt to do that same. I'd never thought of it that way, but he's right; it is very hard to remember in this day and age that 20 years ago, AT&T and company were really a lot like Microsoft as far as their treatment of end users, so why was it good for Stallman to propogate the then-evil-and-proprietary Unix interface and bad for De Icaza to propogate the .NET interface?
I forgot to add this to my posting:
DEVELOPERS DEVELOPERS DEVELOPERS!
(Slashdot forced me to put more text than the three words, lame)
I am not exactly, totally enthusiastic about this idea of being able to use ANY language for a given programming project or combination thereof.
.Net architecture with a CLI as envisioned by Microsoft should produce software with unessacarily high engineering requirements than a single language platform.
.Net MONO vision for a Linux app would quite possible require COBOL, C, Java, PERL, FORTRAN etc programmers to cooperate in building a new desktop app or feature.
I have these reasons, personally, as a matter of observation in the software engineering of large complicated systems.
But I would like to make some observations:
1) The US Military in the early 80's and 90's had enourmous problems with private sector bids and implementation, of software in defense systems.
Namely, every vendor delivered a portion of the system in a different language. Some languages were specifically invented to deliver the final product.
These systems were large and complex, and non trivial engineering problems developed between vendors who needed to integrate thier combined efforts to deliver the product.
2) As systems were delivered the cost too maintain them was very high due to the fact there was no common reference for the software implementation.
What I mean by this is, if you have a flight control system, or launch control system, and it has a bug or engineering issue. It is very difficult to see exactly what the problem is if it incorporates or was delivered with 8 different computer grammars.
3) These systems had artificially short life spans due to the fact they could not be easily upgraded. That is too say, for example, the above flight control system coulnd't be upgraded because the target language(s) could not be reimplemented on new hardware.
My point about MONO and CLI?
Which is:
1) If we accept the historical data on building complicated pieces of software, we can reduce the costs of a implementation if it is reduced to one language or computer grammar to build its entire scope.
The military's solution to this was to produce key critical compenents of a defense system project using one reference specification. The computer grammar they picked was called ADA.
I question if the CLI is actually a good idea in a concept that allows or permits multiple language platforms to cooperate, if the goal is to produce software that is easy to use, is of low defects and is cost effective.
Historically the military with budgets far beyond anything commercially accesible couldn't do it and produce quality defense systems.
2) If the CLI provides a capability to produce a GNOME vision of support for multiple language platforms, given historic research in the software engineering areas, CLI suggests that anything built with a
3) Considering the fact that such a system would produce diverse computer grammars in any authors favorite language, for contributing authors, a future
If we accept that historic software engineering suggests multiple computer grammars result in systems that:
1) Require a very high engineering cost.
2) Quality of the software suffers because fewer individuals can access the entire code base to make corrections.
Personally, in IMHO organizational scalability and human productivity issues in building this sort of software are problems with N different grammars being used to build a single piece of software.
Therefore, I believe CLI is really not a positive addition to an Open Source Project.
-hack
Got Geometrodynamics? Awe, too hard to figure out? Too bad.
What I have read myself so far:
* Inside C#. Microsoft Press, good.
* C# Essentials: O'Reilly, if you want to learn it quickly, and do not care about details.
* The ECMA C# standard is useful if you want to write your own compiler 8-)
Miguel.
Unless that class inherits or calls proprietary library stuff that you don't have.
This is why I can't run most Java stuff on my Amiga. I have the Kaffe JVM, but no AWT. So I can run a program that says "hello world" and even Sun's Java compiler (written in Java) that comes with the JDK. But AWT or Swing apps are right out, because no one has implemented that stuff for my OS.
You're going to have the same problem running Microsoft Office on Linux. Your VM will work perfectly, but the app will want to use stuff that you don't have.
As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
'GNU is a free re-implementations of Unix...'
Hey! I thought GNU is Not Unix!
Get your recursive acronyms right buddy.
"It takes many nails to build a crib, but one screw to fill it."
Remember this?
How we know is more important than what we know.
Look - what is Microsoft? It is a big company, one which is in a serious crisis right now - it's main revenue streams are drying up in the form of slow Office/Windows XP sales (well, slow compared to what they need to be). Hence Hailstorm, which is a big part of .NET
So - consider that Linux is the first real competition MS has had on the desktop/server market for years (forget apple, they have survived by selling to a niche, mainly artists, not business/home). Now consider that they are desperate for cash, lots of it.
So, considering all that, how likely is it that MS will invest millions into a new platform for Windows, and then allow it's primary competitor to make it about a zillion times easier to port code from Win32 to Linux? Not very is the answer. Remember this - Microsoft HATE Linux: their corporate leaders see open source as "wrong" etc, and of course Linux is already good as a server and making headway on the desktop, so how do they respond to this threat?
Seems obvious - they need .NET, but what they don't need is to be giving their competitors a leg up by developing an expensive technology. They'll try and keep .NET Win32 only, and they won't have to try hard. Yes, yes, we all know about the ECMA submissions, but lets face it: There are standards, and there are standards. C#, CLI etc. will be de-facto standards soon, but that doesn't make them anymore acceptable, regardless of whether they've been rubber-stamped by ECMA or not.
Having said all that, you've got to give Miguel respect: he knows good technology when he sees it and isn't afraid of politics. I love some of Microsofts software, I just don't love the company. Problem is, in cases like .NET they are inextricably linked.
yeah. anyway, rant over. it's much longer than i thought it would be anyway.
thanks -mike
OK, so the fantastical claim is that one could run .NET doze binaries via Mono (balderdash). Why is Mono in this regard going to be ANY different than wine? Windoze APIs are published so software developers can write windoze apps. C# is "published" - the APIs are there so anyone can use them. Big frickin' deal. Even with the published windoze APIs, with wine you can only run a fraction of a percent of windoze apps. The problem IS the intimate tie-in of API to windoze proper. C# APIs are no different (if they are, WHY?). They have their fingers tied right into the OS too.
All it seems that aspect of Mono is about is duplicating wine in a .NET framework instead of the classic win32 framework (which ties into .NET and C# since they ARE the windoze API that you are playing with when writing doze code, yes?
So the fantastical claim is that Mono will do better than wine at implementing doze api/functions in linux. That's what wine tries to do and they've been at it for years! It's nice, and all, but there's a buttload of windoze apps that just don't work in wine. By the time they do (IF they do) there will be new apps out there that people want to use that WONT work. Why wouldn't Mono experience the exact same problem?
.NET is designed with WINDOZE in mind. It is the target platform of .NET. To Gates, the internet and computers are and/or should be Windoze PCs or Windoze handhelds, etc. Everything else is invisable to Gates or is something to be extinguished.
Unless someone can explain why JUST because C# APIs may be published that means jackdiddle (vis a vis win32 apis being published and the success of wine) for running windoze .NET crap on linux? Even if you refer to VMs, the VM is designed by and for Windoze and M$, NOT competitors (or potential competitors).
I think that if Miguel and Ximian want a "better" developer environment, then fine, speak of ONLY that but forget about (entirely) .NET and anything Windoze/M$. It is pollution that will not work out and it confuses the issue. You like the development environment of .NET? Fine, go with a similar development environment for LINUX and that is ALL.
In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
And...every word he writes about Java doesn't somehow apply to C#? The IDENTICAL language with a few "embrace and extend" features from M$ for the SOLE purpose of undermining a competitor?
In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
They're saying "You know, I do dig eunuchs... Wanna go out?"
And if you're wondering, yes, I know...
That's a core part of the Mono project... Creating compatible libraries that work on Linux. Because of the OOP nature of the .NET frameworks, Mono can (and hopefully will) be ported to other OS's, like MacOS X. Linux gets Gnome-specific GUI tie-ins, and the Mac will eventually get Aqua-specific tie-ins.
Yeah, no doubt that C# is great for a WIndoze software developer. Hooks into the heart of WIndoze for improved speed, etc. Problem...those frickin libs and functions don't exist anywhere but on windoze using directx crap and win32.
Wine is having a fun time implementing all the published windoze apis in linux aren't they?
In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Hmmm, I thought Sun charged a J2EE license fee for those ISVs who incorporate it in their offerings (like IBM and BEA). There never has been a direct cost for end users that I know of. (It also may be possible to clean-room the APIs and not call it J2EE, I'm not sure.)
All right, I did some checking and here's the result. I doubt Sun has dropped these fees since, please cite a reference if you think so.
299,792,458 m/s...not just a good idea, its the law!
Galileo: "The Earth revolves around the Sun!"
Score: -1 100% Flamebait
Hey! It's another pathetic AC troll, making an ad-hominem attack! *yawn*
Try and add a little more substance to your argument...why is ECMA certification desirable for Java? Will I see some tangible improvement, somewhere? There is already a well-defined, published standard for the Java language.
I'm not holding my breath for a response...
299,792,458 m/s...not just a good idea, its the law!
Galileo: "The Earth revolves around the Sun!"
Score: -1 100% Flamebait
Okay, I must admit I have lost all respect for GNOME/Ximian, now.
.NOT Framework, then it will be just as bulky and unreliable as windows programs.
Miguel has this "if you can't beat 'em, join 'em" attitude, which usually goes along with being a follower, not a leader. Some friends I have, who are also MS people, always jokingly say, "Don't fight it... don't fight it! Let Uncle Bill take care of you!". I really hate that way of thinking.
Open source is about pure innovation, and problem solving, not porting others' work over to the free world (necessarily).
The other beef I have is with his comments regarding productivity. He says he has reached a point where he has "implemented too many linked lists", etc etc. My problem is, a good programmer knows how to reuse his/her code, and not reimplement ALL of it from scratch every damn time. You know why Microsoft's code is so bulky and unreliable? It's because they made their API's so attractive to lazy programmers who "don't want to deal with all that hard stuff" by doing it all for them. You write a "hello world" program in windows, and you'll be lucky if it isn't under 200Kb, because the routines and libraries that actually got compiled in are the same ones MS Office uses.
If we ignore the small and tedious details to programming, and base GNOME on the
Good software is not made by people who want to "get it done quickly and efficiently", it's made by people who want to spend the time to do it right, and "get it to run quickly and make it efficient". It's only one way or the other... we can drag 'n drop our way to building an application, but it sure as hell won't be as fast/reliable/efficient/good as a program written in a text editor, compiled by hand, checked and rechecked.
Microsoft has harmed me, on a very personal level, by severely damaging a piece of intellectual property I placed in thier care. I wrote a book for them that they butchered in the name of trying to control Java.
So I have no love for Microsoft, and don't trust them further than I can kick their legal department.
Who do I trust? you ask. It's hard to say, really; relatively speaking, I "trust" Linus more than Miguel, and I trust both of them more than I do Mr. Gates. My level of trust has something to do with intent: Linus never intended to change the world; even now, he's more interested in making Linux "work" than he is in "beating" Microsoft -- and that's an attitude I can trust. Miguel, on the other hand -- well, I can't put my finger on it, but his attitude just "feels" wrong. Maybe I'm splitting non-existent hairs... so I try to give Miguel the benefit of the doubt and take him at his word.
As for Mr. Gates... let's just say that I've shaken his hand, and twelve years later, it still feels a bit dirty.
All about me
Doesn't matter what they WANT. M$ *IS* a corrupt, illegal monopolist NOW. If the others WANT to be, so what, they aren't and likely wont be. It does matter that M$ IS and it is deadass wrong to help them continue or secure a new monopoly.
In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
Comment removed based on user account deletion
Comment removed based on user account deletion
Comment removed based on user account deletion
Its incredible that people have lost their understanding of what a godsend the UNIX API is. Right now, you can download random POSIX programs off the internet and reasonably except them to compile correctly on your machine, whether you're running Linux, BSD, or (gasp!) BeOS. Its the portability of .NET without its performance problems and with the addition of an emphasis on open source software. Isn't that the way it should be?
A deep unwavering belief is a sure sign you're missing something...
The problem with "frameworks" that appear now -- Java, all generations of COM, .NET, etc. is that they basically don't do anything useful. They are implementations of someone's "vision" how software is supposed to be developed, and how existing two component models -- that is, one provided by shared libraries, and another one by interprocess communications, should be replaced by something more "object oriented". And all those visions are wrong, simply because at this point mankind has as much chances to develop a better component model as thousand years ago it had chances to develop better means of long-range transportation than a horse and a sailing ship -- the level of technology was inadequate for that and will be for quite a while.
But people are ambitious and instead of writing little useful things -- say, a serializer for data formats that will simplify communications, they are trying to create a GREAT NEW SYSTEM with everything existing replaced with some GREAT NEW IDEA plus every petty piece of idiosyncaasy that a particular developer or company has at the moment. That produced Java, and that plus typical Microsoft's aspirations to create more incompatibilities per hour than they were able before, produced .NET.
The fact is, for a programmer who is writing a new code, "framework" like this gives very little -- dynamic libraries existed for a long time, anything written in C can be now called from any other language that can load a library, and IPC is still not used at its full potential, especially considering that programmers (Gnome ones included) were indoctrinated with superstition that context switches are more expensive than additional in-core pages while in modern systems context switches are cheap, IPC is efficient, but data-structures bloat that causes huge amount of data sitting in memory in a tangled mess becomes a huge problem for speed even if memory itself is cheap.
For a programmer who wishes to use components developed for Windows it gives nothing, too -- the whole strategy of Windows development is to keep things unusable outside Windows, and certainly mixing few proprietary pieces in the mix will poison everything developed on Windows just like things being developed now are poisoned for everyone who agrees to anything less than a complete emulation of every ugly piece that Microsoft managed to throw into Windows. In other words -- if you will want to run something developed for Windows, you will need Windows, all Windows and you will have very little chance to add anything but Windows. You can emulate it, but then you will basically become it. So all this talk about "inevitable success" of .NET on Windows is pointless -- at best you can outrun them (despite some umm... strange ideology changes that reminds me Communist Party line, the development of GNOME is going fast enough), at least you can ignore them (Microsoft will replace it with something else soon anyway), but you can't assimilate them.
Oh, btw., the use of borg-style metaphors was intentional but not essential to this piece of advice.
Contrary to the popular belief, there indeed is no God.
C++ has a rudimentary but surprisingly effective memory management tool called the autoptr (or auto_ptr, depending on who's talking). It's essentially a thin class wrapped around a pointer. When the class goes out of scope, the autoptr destructor is called. It deletes the pointer contained within the class, thus returning whatever was pointed at to the memory pool. It ensures proper object destruction, etc., etc.
If you don't know about the autoptr, then maybe you'd better not make statements about C++'s lack of memory management assistance.
I've used the autoptr a fair bit, and it's a surprisingly handy and low-overhead way of solving a lot of dangling-pointer errors.
Then why implement a C# compiler for it?
.NET truly is a good technology, which stands on it's own merit, and not because it happens to be the next lock-in tool of corporate behemoth Microsoft, then why would it not be immediately useful as a platform for existing proven Linux development tools and techniques?
.NET is a complete waste of time, which will fail to gain critical mass, despite the enormous pressure on developers from that fucking clown Steve Ballmer and his crew.
.NET ever play a significant role in it's frameworks.
Surely implementing something already in wide use within the Linux community - C, Java, Perl or Python would be much more useful than implementing some new, unproven toy language like C#.
If
Personally, I think
.NET offers nothing we don't already have except for the 'Made by Microsoft' stamp, but it's been a long time since that mark held any sway over me and my choice of development tools.
Obviously, Miguel de Icaza is free to do whatever floats his boat, but you can count me as a 'former user of the GNOME project' should
Maybe its petty politics and free-software rhetoric from RMS etc. that has led me to this decision, but thats how disillusioned I am with Microsoft and it's products.
I don't trust them, don't like them, and I feel much gratitude to the developers of Linux and all that has been built on top of it that lets get as far away from Microsoft and their shithouse software as possible.
I gots ta ding a ding dang my dang a long ling long
Comment removed based on user account deletion
(That apparently explains why when I request an install from Ximian.com, apt-get reports that the one package of evolution is going to consume something around 110MB of disk space...)
Unfortunately, the design of Java is such that it nicely interoperates with, well, Java, and um, Java, and, um, not too much else. (Unless you jump into FFI stuff that's always terribly fiddly, and leaps you back into writing constructors and destructors in C for the interface code...)
The "JVM" thing offers some portability, but Java suffers from the huge problem that all the Kool Stuff in J2EE and Swing and such that you'd like to use is, well, only marginally less encumbered by Sun licenses than .NET services will be by Microsoft licenses.
Count the number of major Java apps that are installed by default in your favorite Linux distribution. That number is usually zero, as you get to choose between:
And it really wouldn't do anything to solve the problems at hand, as it still mandates spending lots of time writing constructors and destructors. Plus there's no quasi-standard ABI, so that you'll be recompiling incessantly.
And then there's the KDE problem where library loading takes quite a bit of time because of resolution of virtual methods...
But I think the real reason for "no C++" is simply that Miguel doesn't much like C++.
So Miguel wants something a tad more dynamic than C/C++, particularly vis-a-vis memory management. I find it a little disappointing that he didn't take a serious look at some of the mature languages already out there.
- GNU Ada is a whopping lot more mature than G++, for instance, and would offer some "software engineering" merits.
- There are a good set of Eiffel compilers, and that combines OO with GC as well as the "Design by Contract" thing that Miguel has consciously tipped his hat to.
- Modula 3 is another "unsung language;" OO plus GC plus well-defined threading, even.
If he's looking for a better language in which to build more stuff like Evolution, I'd think these three to be eminently plausible Good Alternatives to designing a new Virtual Machine environment along with a whole set of compilers.If you're not part of the solution, you're part of the precipitate.
Um... wouldn't boycotting these technologies (such as they are) make their reach that much less than if you weren't boycotting them?
Weird to be seeing hardcore Microsoft propaganda from an open source project leader. Why doesn't he just go over to Microsoft and work for them if he wants their stuff deployed that much? Why is he even bothering to be involved with free software at all? Of course, didn't he also arrange to have a free project _drop_ the LGPL and go with a more proprietary-friendly arrangement? Who is this guy?
An ancient verse in Open SOurce Lore...
Gee, so I guess that makes Miguel de Icaza Celebrimor, building his own runtime based on secrets given to him by the Dark Lord of Redmond, disguised as Annatar, Lord of Gifts. Maybe RMS is Elrond, watchful and distrustful of this mysterious being bearing secrets...
Qu'on me donne six lignes écrites de la main du plus honnête homme, j'y trouverai de quoi le faire pendre.
The long term plans for Java include items such as tail-recursion and templates but they came up too late in the dev cycle to include in 1.4 without pushing the release date out too far. 1.5 is slated to have an updated bytecode format (although presumably backwards compatible in much the same way that 1.02-era applets still run for the most part in JDK 1.3)
.NET
Don't presume that Java isn't a moving target for
It's not like Sun and IBM are planning on standing still and waiting for Microsoft to catch up.
- I don't need to go outside, my CRT tan'll do me just fine.
Right. A proof of concept was when other languages were compiled to java bytecode. There may have been earlier ones too.
If I remember correctly is used in Borlands C++ Builder & Delphi to some extent. C++ Builder compilers down to the same thing as Delphi and if I remember correctly they use the same linker. ... I beleive this is where they got this ideas behind CIL and combined it with the Java virtual Machine model.
Um. Nope. CIL stands for Common Intermediate Language.
Neither Delphi nor BCB are interpreted, JIT'd or run on virtual machine. Nor do they use an intermediate language of any kind.
The language that they have in common is in fact x86 assembly. The reason that the Delphi VCL can be used in BCB is that they share an object file format.
Maybe the idea of sharing a class library came over from Borland with Anders Heijsberg, but the method of achieving it is different.
My Karma: ran over your Dogma
StrawberryFrog
I hope it helps convey your message.
.Net you'll always be behind -- I don't understand the argument. If you *don't* start implementing it, you'll be even farther behind -- unless they're suggesting that you use something even better. If that's their suggestion, then perhaps they could point it out to you.
Really, those people who claim that if you start implementing
"Those who have never entered upon scientific pursuits know not a tithe of the poetry by which they are surrounded."
Sun Tzu:
I would apply the corollary: "One hour of your enemy's time is worth twenty of your own." The principle is that you are not only getting your enemy's preparations and resources to work for your goals, but you also prevent him from using them against you. Your own resources are many times more costly to build up. Microsoft sees Miguel as a tool, and they are waging Ximian against Gnome (the GNU GUI) with the goal of making GNU oriented developers waste their time even learning C#.If we need a new language, why don't more people get together and decide on all the goals of that language? If we need to link compiled code from disparate languages together, why not write a CORBA spec or something? The key concept here is DO NOT LET MICROSOFT SLIP INTO YOUR PROJECT'S DEPENDANCIES.
--- Nothing clever here: move along now...
Aye, but this be not Britain. A crucial difference, lad.
for any STL container (which should be used by most people), you can pass in your own allocator class. In that class, you handle your own memory management. If you want to reduce fragmentation, you allocate very large blocks of memory and then do "placement new" calls to allocate memory. Problem solved.
T
---- It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
Comment removed based on user account deletion
Comment removed based on user account deletion