jameco is pretty good, too. Their selection is much smaller than DigiKey's but it's oriented slightly more towards the hobbyist. They both have good online and free paper catalogs.
Mono is not.NET - it will not have Microsoft's.NET libraries.
This is not entirely correct.
While it is not ximian's goal to produce a fully.NET-compatible runtime, there is definitely work being done as part of the mono project to support almost all of the non-EMA managed.NET runtime libraries, including ADO.NET, ASP.NET, WebForms, WinForms, Remoting, XML, SOAP, WebServices, EnterpriseServces, etc...
There used to be video cards that had 2D acceleration as a selling point
Yeah, most of them still do. The real difference between 2d and 3d in this case is the API. 2d acceleration as used by gdi, xaa, etc... is limited to simple primitives (drawing lines/curves, blitting, scaling, etc...). There's generally no ability to handle multiple layers, clipping or texture effects beyond the simple boolean operation, whereas a 3d API such as OpenGL or Direct3D gives you much more flexibility even if you aren't using the 3rd dimension.
Of course, the real question is whether or not you really want all the extra eye-candy this brings.
Hmm... we've had drive arrays go down on us regularly (the power's not too reliable here) and we've never had any data loss or filesystem corruption since we upgraded to 2k. I agree that the management is pretty limited.
The filesystem did do journaling before 2000, but win2k was the first OS version that allowed applications to query the change journal. Primary clients of the change journal APIs (FSCTL_QUERY_USN_JOURNAL) include Index Server and File Replication System, which use the journal to find recent changes to the filesystem.
wow, you don't really pay attention to much do you?
interns and temps don't usually appear on the credits, as you'll see if you bothered to find out anything about what you're blabbering on about. i'm not surprised, though, it doesn't really seem like you really know much about anything, but you'd like to think you do.
the whole point of the class status pages is to show the work remaining for the various mono assemblies. the errors and todos are what it's all about. some people thought it was useful.
if you bothered to look at the cvs pages, you'll see at the bottom that CVSWeb is written by zeller@think.de. if you don't like it you should complain to him. the reason i sent you those links is that you asked for some of my code to peer review.
so, what is it that you do (apart from pathetic trolls), pizzaboy?
you're right (modulo a couple of <'s), and the.NET runtime does this optimization. however the parent is also right, you have to be careful. For example, the.NET runtime does not lift the bounds check in the following example:
int count = a.length;
for (int i = 0; i < count; i++)
x = a[i];...
An optimization that most C/C++ coders might not trust the compiler to make.
one of the differences between the desktop and server version of the.NET runtime is that the desktop uses a separate thread in which to do asynchronous GCs (in order to reduce the 'burping') whereas the server version prefers to stop (most) everthing and GC synchronously (in order to avoid synchronization costs).
Yeah, I've been using both IDEs for a while now, v7 for.NET and v6 for C++ and I'm still feeling reluctant to move over to v7 for C++ work. There are some features, like autcomplete, that work better, but other things, like multi-project builds that are much worse.
jameco is pretty good, too. Their selection is much smaller than DigiKey's but it's oriented slightly more towards the hobbyist. They both have good online and free paper catalogs.
While it is not ximian's goal to produce a fully .NET-compatible runtime, there is definitely work being done as part of the mono project to support almost all of the non-EMA managed .NET runtime libraries, including ADO.NET, ASP.NET, WebForms, WinForms, Remoting, XML, SOAP, WebServices, EnterpriseServces, etc...
Of course, the real question is whether or not you really want all the extra eye-candy this brings.
my code is under NDA, sorry.
Hmm... we've had drive arrays go down on us regularly (the power's not too reliable here) and we've never had any data loss or filesystem corruption since we upgraded to 2k. I agree that the management is pretty limited.
The filesystem did do journaling before 2000, but win2k was the first OS version that allowed applications to query the change journal. Primary clients of the change journal APIs (FSCTL_QUERY_USN_JOURNAL) include Index Server and File Replication System, which use the journal to find recent changes to the filesystem.
heh, who's trolling who now?
works fine in mozilla last time i checked. i'd say it's more significant than anything you've ever done...
you're mistaken. yes, he was lying. you, on the other hand, are just a fool.
heh, who's the one using the search feature again?
I think you're under the mistaken impression that someone, anyone, gives a damn about what you think.
yeah, on the other hand, you've got so much to say...
get a life, tourette's boy.
fuck, piss, fag, fag. wohoooo!
you should put a rating on some of the things you do. i'll give you a 10 out of 10 for being a complete fuckwit.
man, you're almost as good as Mohammed Saeed al-Sahaf.
interns and temps don't usually appear on the credits, as you'll see if you bothered to find out anything about what you're blabbering on about. i'm not surprised, though, it doesn't really seem like you really know much about anything, but you'd like to think you do.
the whole point of the class status pages is to show the work remaining for the various mono assemblies. the errors and todos are what it's all about. some people thought it was useful.
if you bothered to look at the cvs pages, you'll see at the bottom that CVSWeb is written by zeller@think.de. if you don't like it you should complain to him. the reason i sent you those links is that you asked for some of my code to peer review.
so, what is it that you do (apart from pathetic trolls), pizzaboy?
that XPath link is wrong, it should be here.
no, i just looked at the ptc benchmarks. and i noticed that the machines you mentioned aren't in there. i wonder what their $/tpmC would be?
well, if you want to see some of my code on the web, you can go to the mono project. I did:
- the class status pages, and the corcompare tool that generates them.
- the mono tinderbox.
- the XPath engine.
There's a bunch of other stuff scattered around, but you'll find my name in the easter-eggs for the following:- Visual C++ 2.x
- Visual C++ 4.x
- Visual J++ 1.x
eat your heart out...one of the differences between the desktop and server version of the .NET runtime is that the desktop uses a separate thread in which to do asynchronous GCs (in order to reduce the 'burping') whereas the server version prefers to stop (most) everthing and GC synchronously (in order to avoid synchronization costs).
Yeah, I've been using both IDEs for a while now, v7 for .NET and v6 for C++ and I'm still feeling reluctant to move over to v7 for C++ work. There are some features, like autcomplete, that work better, but other things, like multi-project builds that are much worse.
COM is a vtable (virtual methods in C++) with simple type casting and reference counting. What's to hate?