2000Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Fw: 16K mud server competition ! -->
<!--X-From-R13: [vebfyni Evybivp <fvybivpNmrfbv.sre.ue> -->
<!--X-Date: Wed, 05 Apr 2000 08:27:04 &#45;0700 -->
<!--X-Message-Id: 7eog7o3gae.fsf#zesoi,fer.hr -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 200004040311.WAA27664#laurel,actlab.utexas.edu -->
<!--X-Reference: 7e8zyut75e.fsf#zesoi,fer.hr -->
<!--X-Reference: 027901bf9e7f$2e96c050$18095381@POINTSMAN -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Fw: 16K mud server competition !</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:silovic#zesoi,fer.hr">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg00057.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00059.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00052.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00042.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00058">Author</A>
&nbsp;|&nbsp;<A HREF="#00058">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00058">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Fw: 16K mud server competition !</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Subject</em>: Re: [MUD-Dev] Fw: 16K mud server competition !</LI>
<LI><em>From</em>: Miroslav Silovic &lt;<A HREF="mailto:silovic#zesoi,fer.hr">silovic#zesoi,fer.hr</A>&gt;</LI>
<LI><em>Date</em>: 05 Apr 2000 14:04:25 +0200</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: <A HREF="mailto:mud-dev-admin#kanga,nu">mud-dev-admin#kanga,nu</A></LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
"Jay Carlson" &lt;nop#mitre,org&gt; writes:

&gt; "Miroslav Silovic" &lt;silovic#zesoi,fer.hr&gt; writes on Tuesday, April 04, 2000
&gt; 7:52 AM:
&gt; 
&gt; &gt; Otherwise, you can just write a MUD in
&gt; &gt; Java or Common LISP (The Language With Everything On, or Did You
&gt; &gt; Really Think That -Emacs- Was Big? or MMap Twenty Megabytes On
&gt; &gt; Startup), and use all the available libraries for these languages - as
&gt; &gt; a result, you'd get really small code indeed, and it'd want to link to
&gt; &gt; megabytes of runtime environment.
&gt; 
&gt; Lisp gets a bad rap here.  Just about every C app on the system gets to mmap
&gt; in libc.so, and from there it gets worse:

Okay, that was meant as a joke (I'm guile's early adopter, and I wrote
10-20,000 lines of Scheme and went as far as to actually try and write
a bit of a MUD in Common LISP, using CMUCL implementation).

My main gripe with Common LISP is that there still isn't any single
implementation that satisfies all of the following:

	- within 1/3 speed of C (CMUCL, ACL does this)
	- realtime, generational GC (ACL checks)
	- optimised CLOS implementation (ACL)
	- free, source available (CMUCL, CLISP check)
	- source actually readable and compilable (CLISP check)
	- active development (ummmm... CLISP)

IMHO guile+hobbit come close to be useful for Real Work (esp. with
Greg Harvey's upcoming garbage collector), but while guile duplicates
most of CL features, it doesn't do that in a standard way (although
that isn't all that important for MUDs).

&gt; KDE looks pretty svelte in comparison---the terminal only needs 4M
&gt; of shared libraries to come up.  I'm still trying to forget the
&gt; project from a few years ago that linked in truly massive piles of
&gt; CORBA and auto-generated libraries....

Note that you'd have to link GUI libs -in addition- to runtime libs of
whatever language(s) you chose to code with.

Also, KDE chose MICO as their ORB. I failed to find a sufficiently
strong set of adjectives to apply to MICO that'd also pass the basic
net decency principles (but you get the idea) - that thing overuses
templates, can't short-circuit same address space calls (i.e. if
you're using CORBA to just wrap a shared lib, then a Real ORB wouldn't
add a huge overhead of serialising all your data, sending it via IIOP
from one bucket in your process to another, then unpack it all and
call the function, it would call the bloody function and just get on
with it), and uses DII for EVERYTHING. Lesson: CORBA is actually a
good idea, but some of the implementations suck beyond belief. When in
doubt, use ORBit (and help the guys doing C++ binding, if you're after
C++ - otherwise stick with C, Perl and Python).

-rwxr-xr-x   1 silovic  lss        288692 Apr  4 11:45 /opt/beta/lib/libORBit.so.0.4.0
-rwxr-xr-x   1 silovic  lss        179012 Apr  5 14:02 /opt/beta/lib/libglib-1.2.so.0.0.6

-- 
How to eff the ineffable?



_______________________________________________
MUD-Dev mailing list
MUD-Dev#kanga,nu
<A  HREF="http://www.kanga.nu/lists/listinfo/mud-dev">http://www.kanga.nu/lists/listinfo/mud-dev</A>

</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00029" HREF="msg00029.html">Re: [MUD-Dev] Fw: 16K mud server competition !</A></STRONG>
<UL><LI><EM>From:</EM> Cynbe ru Taren &lt;cynbe#muq,org&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00031" HREF="msg00031.html">Re: [MUD-Dev] Fw: 16K mud server competition !</A></STRONG>
<UL><LI><EM>From:</EM> Miroslav Silovic &lt;silovic#zesoi,fer.hr&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00043" HREF="msg00043.html">Re: [MUD-Dev] Fw: 16K mud server competition !</A></STRONG>
<UL><LI><EM>From:</EM> "Jay Carlson" &lt;nop#mitre,org&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00057.html">[MUD-Dev] MUD-Dev request rejected (fwd)</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00059.html">Re: [MUD-Dev] Re: J  (was: Re: 16K mud server competition !)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00052.html">Re[2]: [MUD-Dev] Fw: 16K mud server competition !</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00042.html">RE: [MUD-Dev] Fw: 16K mud server competition !</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00058"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00058"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><STRONG>Re: [MUD-Dev] Fw: 16K mud server competition !</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00029" HREF="msg00029.html">Re: [MUD-Dev] Fw: 16K mud server competition !</A></strong>, 
Cynbe ru Taren <a href="mailto:cynbe#muq,org">cynbe#muq,org</a>, Tue 04 Apr 2000, 05:30 GMT
<UL>
<LI><strong><A NAME="00031" HREF="msg00031.html">Re: [MUD-Dev] Fw: 16K mud server competition !</A></strong>, 
Miroslav Silovic <a href="mailto:silovic#zesoi,fer.hr">silovic#zesoi,fer.hr</a>, Tue 04 Apr 2000, 16:11 GMT
<UL>
<LI><strong><A NAME="00043" HREF="msg00043.html">Re: [MUD-Dev] Fw: 16K mud server competition !</A></strong>, 
Jay Carlson <a href="mailto:nop#mitre,org">nop#mitre,org</a>, Tue 04 Apr 2000, 22:22 GMT
<UL>
<LI><strong><A NAME="00052" HREF="msg00052.html">Re[2]: [MUD-Dev] Fw: 16K mud server competition !</A></strong>, 
Travis Casey <a href="mailto:efindel#io,com">efindel#io,com</a>, Wed 05 Apr 2000, 01:03 GMT
</LI>
<LI><strong><A NAME="00058" HREF="msg00058.html">Re: [MUD-Dev] Fw: 16K mud server competition !</A></strong>, 
Miroslav Silovic <a href="mailto:silovic#zesoi,fer.hr">silovic#zesoi,fer.hr</a>, Wed 05 Apr 2000, 15:27 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00042" HREF="msg00042.html">RE: [MUD-Dev] Fw: 16K mud server competition !</A></strong>, 
Powell, Warren <a href="mailto:warren.powell#nz,unisys.com">warren.powell#nz,unisys.com</a>, Tue 04 Apr 2000, 22:22 GMT
<UL>
<LI><strong><A NAME="00051" HREF="msg00051.html">Re[2]: [MUD-Dev] Fw: 16K mud server competition !</A></strong>, 
Travis Casey <a href="mailto:efindel#io,com">efindel#io,com</a>, Wed 05 Apr 2000, 00:46 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00053" HREF="msg00053.html">Re: [MUD-Dev] Fw: 16K mud server competition !</A></strong>, 
Jon Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Wed 05 Apr 2000, 01:41 GMT
</LI>
</ul>
</LI>
<LI><strong><A NAME="00007" HREF="msg00007.html">[MUD-Dev] Old Topic: Playfulness in 3-D Spaces, done.</A></strong>, 
Rudy Fink <a href="mailto:rudyfink#rice,edu">rudyfink#rice,edu</a>, Sun 02 Apr 2000, 14:54 GMT
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>