1998Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...] -->
<!--X-From-R13: Qnyvona Fverfvnf Rnexybpx <pnyvonaNqnexybpx.pbz> -->
<!--X-Date: Tue, 25 Aug 1998 21:02:19 &#45;0700 -->
<!--X-Message-Id: 199808260400.WAA25729#darklock,com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199808260104.TAA29610#darklock,com -->
<!--X-Reference: 199808251246.GAA12440#darklock,com -->
<!--X-Reference: Pine.LNX.3.96.980823141741.23081A&#45;100000#shamen,cyberhighway.net -->
<!--X-Reference: 199808240327.VAA05642#darklock,com -->
<!--X-Reference: 35E1FC86.A5C22F2#mindless,com -->
<!--X-Reference: 19980825105837.C3917#flagstaff,Princeton.EDU -->
<!--X-Reference: 19980825220041.B20005#yuma,Princeton.EDU -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programm</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:caliban#darklock,com">
</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="msg00848.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00850.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00844.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00857.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00849">Author</A>
&nbsp;|&nbsp;<A HREF="#00849">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00849">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</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>: [MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</LI>
<LI><em>From</em>: Caliban Tiresias Darklock &lt;<A HREF="mailto:caliban#darklock,com">caliban#darklock,com</A>&gt;</LI>
<LI><em>Date</em>: Tue, 25 Aug 1998 20:59:43 -0700</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#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>
On 10:00 PM 8/25/98 -0400, I personally witnessed Adam J. Thornton jumping
up to say:
&gt;
&gt;I'm not smart enough to write real programs without screwing up.  And I
&gt;like it when my mistakes don't make me have to reboot, and I just get
&gt;"Segmentation Violation [core dumped]", and then I can debug using the core
&gt;file and my executable, and realize that I passed in the value stored at
&gt;some place rather than its address, or something like that.

I don't generally have to reboot either. Visual C++ is pretty smart at
catching my bonehead mistakes before I ever run the program. Which is
another thing that bugs me about Unix; the development tools are very good
at doing what you tell them, but they don't generally tell YOU a damn
thing. I don't mind having to sleuth around to find stuff (Windows
certainly requires it enough), but I'd rather not have to do it ALL THE
TIME. Unix requires me to think of everything myself, and never jogs my
memory. Some people work better that way. I'm not one of them. I would
certainly be annoyed if Visual C++ popped up a dialog for every error and
expected me to fix it immediately, but I like it to sit down there and just
tell me what it finds. Ideally it shouldn't find anything, but at least I
can tell where I did something strange on purpose... and that's usually a
good place for a comment about why I did it.

&gt;And with a modular, extensible framework, where you can't necessarily
&gt;control the quality of the code being run, well, I'd be really wary of
&gt;running it in an environment that didn't rigorously enforce process

&gt;isolation. 

I used to co-own Telmaron, where an awful lot of would-be server hacks
learned what *not* to do to your MUD. A MUD is quite capable of bringing
the machine to its knees even WITH process isolation. Bad code is still
bad, no matter how well it's sectioned off. There are errors Windows
handles with ease, and errors Windows chokes and dies on. Unix may not
choke and die on most errors, but it can certainly become functionally
useless on some of them. Unix just suffers from code in *different* places
than Windows does. 

I'm sure there's some way of comparing those places and declaring one O/S
"better", but I'm of the opinion that operating systems are like languages
-- you pick the best one for the job based on what the job is, where it's
being done, and who's doing it. I certainly wouldn't tell a crack VB
programmer to work in C++ if VB would do the job, regardless of how much I
hate VB (a lot). And if I can write an application in five minutes using
Perl or half an hour using C++, chances are I'm going to use Perl. 

&gt;Are there really that many people out there who *want* to run MUDs who
&gt;don't know how to?  

Yeah, they just don't know it yet. Are there really that many people out
there who want to be on the internet? ;)

&gt;The question is, you're going
&gt;to want to support things you can't even think of now.  Is JavaScript
&gt;extensible enough to do that?

The arrogant answer: Of course it is. 

The truthful answer: I hope so. :)

---
=+[ caliban#darklock,com ]=+=+=+=+=+=+=+=+=[ <A  HREF="http://www.darklock.com/">http://www.darklock.com/</A> ]+=
"It must be remembered that there is nothing more difficult to plan, more 
doubtful of success, nor more dangerous to manage than the creation of a 
new system. For the initiator has the enmity of all who would profit by 
the preservation of the old institution, and merely lukewarm defenders in 
those who would gain by the new one."              -- Niccolo Machiavelli
=+=+[ FREE KEVIN * <A  HREF="http://www.kevinmitnick.com/">http://www.kevinmitnick.com/</A> * IT COULD BE YOU ]+=+=+=



</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<ul compact><li><strong>Follow-Ups</strong>:
<ul>
<li><strong><A NAME="00857" HREF="msg00857.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet	  programming ...]</A></strong>
<ul compact><li><em>From:</em> pomales &lt;pomales#caip,rutgers.edu&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00842" HREF="msg00842.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></STRONG>
<UL><LI><EM>From:</EM> Caliban Tiresias Darklock &lt;caliban#darklock,com&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00839" HREF="msg00839.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></STRONG>
<UL><LI><EM>From:</EM> Caliban Tiresias Darklock &lt;caliban#darklock,com&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00828" HREF="msg00828.html">[MUD-Dev] Re: Finer points of Telnet programming ...</A></STRONG>
<UL><LI><EM>From:</EM> Ben Greear &lt;greear#cyberhighway,net&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00830" HREF="msg00830.html">[MUD-Dev] Re: Finer points of Telnet programming ...</A></STRONG>
<UL><LI><EM>From:</EM> Caliban Tiresias Darklock &lt;caliban#darklock,com&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00835" HREF="msg00835.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></STRONG>
<UL><LI><EM>From:</EM> "Jynx (Wyrm / Tygr / Myth) Ryn" &lt;jynx_ryn#mindless,com&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00840" HREF="msg00840.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></STRONG>
<UL><LI><EM>From:</EM> "Adam J. Thornton" &lt;adam#phoenix,Princeton.EDU&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00844" HREF="msg00844.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></STRONG>
<UL><LI><EM>From:</EM> "Adam J. Thornton" &lt;adam#phoenix,Princeton.EDU&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00848.html">[MUD-Dev] Re: Marion's Tailor Problem</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00850.html">[MUD-Dev] Re: UBE/high: Re: FW: UBE/high: Re: W IRED: Kilers</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00844.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00857.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet	  programming ...]</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00849"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00849"><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>[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="00839" HREF="msg00839.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Tue 25 Aug 1998, 12:47 GMT
<UL>
<LI><strong><A NAME="00840" HREF="msg00840.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></strong>, 
Adam J. Thornton <a href="mailto:adam#phoenix,Princeton.EDU">adam#phoenix,Princeton.EDU</a>, Tue 25 Aug 1998, 15:11 GMT
<UL>
<LI><strong><A NAME="00842" HREF="msg00842.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Wed 26 Aug 1998, 01:05 GMT
<UL>
<LI><strong><A NAME="00844" HREF="msg00844.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></strong>, 
Adam J. Thornton <a href="mailto:adam#phoenix,Princeton.EDU">adam#phoenix,Princeton.EDU</a>, Wed 26 Aug 1998, 02:02 GMT
<UL>
<LI><strong><A NAME="00849" HREF="msg00849.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet programming ...]</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Wed 26 Aug 1998, 04:02 GMT
<LI><strong><A NAME="00857" HREF="msg00857.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet	  programming ...]</A></strong>, 
pomales <a href="mailto:pomales#caip,rutgers.edu">pomales#caip,rutgers.edu</a>, Wed 26 Aug 1998, 12:34 GMT
<LI><strong><A NAME="00858" HREF="msg00858.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet   programming ...]</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Wed 26 Aug 1998, 12:51 GMT
</LI>
<LI><strong><A NAME="00859" HREF="msg00859.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet   programming ...]</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Wed 26 Aug 1998, 12:58 GMT
<LI><strong><A NAME="00860" HREF="msg00860.html">[MUD-Dev] Re: Modular MUD [Was:Finer points of Telnet  	  programming ...]</A></strong>, 
pomales <a href="mailto:pomales#caip,rutgers.edu">pomales#caip,rutgers.edu</a>, Wed 26 Aug 1998, 13:11 GMT
</LI>
</LI>
</LI>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</ul>
</ul>
</ul>
</ul>
</ul>
</LI>
</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>