From scsh-users-request@scsh.net Thu Jan 5 12:45:38 2006 Return-Path: X-Original-To: scsh@informatik.uni-tuebingen.de Delivered-To: scsh@informatik.uni-tuebingen.de Received: from localhost (loopback [127.0.0.1]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id D5D55145D; Thu, 5 Jan 2006 12:45:36 +0100 (NFT) Received: from mx4.informatik.uni-tuebingen.de ([127.0.0.1]) by localhost (mx4 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 50252-04; Thu, 5 Jan 2006 12:45:34 +0100 (NFT) Received: from www.scsh.net (bernard.Informatik.Uni-Tuebingen.De [134.2.12.122]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id D074413D0; Thu, 5 Jan 2006 12:45:32 +0100 (NFT) Received: by www.scsh.net (Postfix, from userid 3123) id CF7395ECE; Thu, 5 Jan 2006 12:44:59 +0100 (MET) Old-Return-Path: X-Original-To: scsh-users@scsh.net Delivered-To: scsh-users@scsh.net Message-ID: <43BD062D.7080809@cse.iitb.ac.in> Date: Thu, 05 Jan 2006 17:12:37 +0530 From: Gautham Anil User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: scsh-users@scsh.net Subject: Opening packages using scheme Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Resent-Message-ID: Resent-From: scsh-users@scsh.net X-Mailing-List: archive/latest/242 X-Loop: scsh-users@scsh.net List-Post: List-Help: List-Subscribe: List-Unsubscribe: Precedence: list Resent-Sender: scsh-users-request@scsh.net List-Id: List-Archive: Resent-Date: Thu, 5 Jan 2006 12:44:59 +0100 (MET) Hi, I need to find out how I can open packages opened using ,open such as ,open sockets etc. in the program itself. So a program could be something like (begin (run-shell (,open sockets)) (run-shell (,open locks)) (run-shell (,open threads)) .... ) Thanks in advance. -- Gautham Anil From scsh-users-request@scsh.net Thu Jan 5 18:15:41 2006 Return-Path: X-Original-To: scsh@informatik.uni-tuebingen.de Delivered-To: scsh@informatik.uni-tuebingen.de Received: from localhost (loopback [127.0.0.1]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id 9E6ED1440; Thu, 5 Jan 2006 18:15:39 +0100 (NFT) Received: from mx4.informatik.uni-tuebingen.de ([127.0.0.1]) by localhost (mx4 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23134-04; Thu, 5 Jan 2006 18:15:36 +0100 (NFT) Received: from www.scsh.net (bernard.Informatik.Uni-Tuebingen.De [134.2.12.122]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id 3EAAD13EF; Thu, 5 Jan 2006 18:15:35 +0100 (NFT) Received: by www.scsh.net (Postfix, from userid 3123) id F172E5ECE; Thu, 5 Jan 2006 18:15:34 +0100 (MET) Old-Return-Path: X-Original-To: scsh-users@scsh.net Delivered-To: scsh-users@scsh.net DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jqJVDHjQ9imw8zc3F7mTJhSwoDil8q6RQCrDHfZxwJg9AAOsnuOGPHRbqyrzsDf5SXox1qF60EMeuhCPNiz1FYxWK9M/hPe1ij3XEHgoiupwQ77/cDLNf42IOToiXJ05Woo6ZTpM6wIh3+TcYxwK2L1xGxzgv8Fh4NweNRYrxT0= Message-ID: Date: Thu, 5 Jan 2006 18:15:31 +0100 From: Andreas Bernauer Reply-To: andreas.bernauer@gmx.de Sender: bernauer@gmail.com To: Gautham Anil Subject: Re: Opening packages using scheme Cc: scsh-users@scsh.net In-Reply-To: <43BD062D.7080809@cse.iitb.ac.in> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <43BD062D.7080809@cse.iitb.ac.in> Resent-Message-ID: <_WXG-C.A.f1Q.2QVvDB@bernard> Resent-From: scsh-users@scsh.net X-Mailing-List: archive/latest/243 X-Loop: scsh-users@scsh.net List-Post: List-Help: List-Subscribe: List-Unsubscribe: Precedence: list Resent-Sender: scsh-users-request@scsh.net List-Id: List-Archive: Resent-Date: Thu, 5 Jan 2006 18:15:34 +0100 (MET) On 1/5/06, Gautham Anil wrote: > I need to find out how I can open packages opened using ,open such as > ,open sockets etc. in the program itself. > > So a program could be something like > > (begin > (run-shell (,open sockets)) > (run-shell (,open locks)) > (run-shell (,open threads)) > .... > ) The easy way is to provide the package name on the command line: scsh -o sockets -o locks -o threads see also http://www.scsh.net/docu/html/man-Z-H-12.html#node_sec_11.1.5 Another way is to use the package MODULE-SYSTEM in the s48 section of sunterlib (http://savannah.nongnu.org/projects/sunterlib/). There is a README file that contains a short docu. The SUnet project uses this package in its SUrflet server. http://sf.net/projects/sunet, see there the function GET-SURFLET-RT-STRUCTURE in scheme/httpd/surflets/surflet-handler.scm Yours, Andreas. From scsh-users-request@scsh.net Fri Jan 13 22:19:58 2006 Return-Path: X-Original-To: scsh@informatik.uni-tuebingen.de Delivered-To: scsh@informatik.uni-tuebingen.de Received: from localhost (loopback [127.0.0.1]) by mx1.informatik.uni-tuebingen.de (Postfix) with ESMTP id E639210D; Fri, 13 Jan 2006 22:19:56 +0100 (NFT) Received: from mx1.informatik.uni-tuebingen.de ([127.0.0.1]) by localhost (mx1 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23846-03; Fri, 13 Jan 2006 22:19:50 +0100 (NFT) Received: from www.scsh.net (bernard.Informatik.Uni-Tuebingen.De [134.2.12.122]) by mx1.informatik.uni-tuebingen.de (Postfix) with ESMTP id 9C76B10B; Fri, 13 Jan 2006 22:19:48 +0100 (NFT) Received: by www.scsh.net (Postfix, from userid 3123) id 4DE5F5EC9; Fri, 13 Jan 2006 22:19:48 +0100 (MET) Old-Return-Path: X-Original-To: scsh-users@scsh.net Delivered-To: scsh-users@scsh.net Date: Fri, 13 Jan 2006 13:19:43 -0800 (PST) From: "Alfonso G. Urroz" X-X-Sender: urrozalf@earth To: scsh-users@scsh.net Subject: Using scsh on OS X 10.4 (Tiger) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Resent-Message-ID: Resent-From: scsh-users@scsh.net X-Mailing-List: archive/latest/244 X-Loop: scsh-users@scsh.net List-Post: List-Help: List-Subscribe: List-Unsubscribe: Precedence: list Resent-Sender: scsh-users-request@scsh.net List-Id: List-Archive: Resent-Date: Fri, 13 Jan 2006 22:19:48 +0100 (MET) Hello there!! I am new at this scsh stuff. I have downloaded and installed scsh on my Mac using OS X (10.4) Tiger. It downloaded fine, and expanded fine too. Now I want to use, but I just don't know how. Do I have to download and install Scheme 48? Suppose I have done that, what is the next step? Do I have to use it only on the terminal interface, or can I use it anywhere on the Mac? Thanks, for all your help. Alfonso G. Urroz From scsh-users-request@scsh.net Fri Jan 13 22:40:15 2006 Return-Path: X-Original-To: scsh@informatik.uni-tuebingen.de Delivered-To: scsh@informatik.uni-tuebingen.de Received: from localhost (loopback [127.0.0.1]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id BD3E912E4; Fri, 13 Jan 2006 22:40:12 +0100 (NFT) Received: from mx4.informatik.uni-tuebingen.de ([127.0.0.1]) by localhost (mx4 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31984-01; Fri, 13 Jan 2006 22:40:06 +0100 (NFT) Received: from www.scsh.net (bernard.Informatik.Uni-Tuebingen.De [134.2.12.122]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id 4C71C1255; Fri, 13 Jan 2006 22:40:04 +0100 (NFT) Received: by www.scsh.net (Postfix, from userid 3123) id DA9105ECE; Fri, 13 Jan 2006 22:40:03 +0100 (MET) Old-Return-Path: X-Original-To: scsh-users@scsh.net Delivered-To: scsh-users@scsh.net To: "Alfonso G. Urroz" Cc: scsh-users@scsh.net Subject: Re: Using scsh on OS X 10.4 (Tiger) References: From: Martin Gasbichler Date: Fri, 13 Jan 2006 22:39:59 +0100 In-Reply-To: (Alfonso G. Urroz's message of "Fri, 13 Jan 2006 13:19:43 -0800 (PST)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) XEmacs/21.4 (Jumbo Shrimp, berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Resent-Message-ID: Resent-From: scsh-users@scsh.net X-Mailing-List: archive/latest/245 X-Loop: scsh-users@scsh.net List-Post: List-Help: List-Subscribe: List-Unsubscribe: Precedence: list Resent-Sender: scsh-users-request@scsh.net List-Id: List-Archive: Resent-Date: Fri, 13 Jan 2006 22:40:03 +0100 (MET) "Alfonso G. Urroz" writes: > Hello there!! I am new at this scsh stuff. I have downloaded and installed > scsh on my Mac using OS X (10.4) Tiger. It downloaded fine, and expanded > fine too. Now I want to use, but I just don't know how. Do I have to > download and install Scheme 48? Suppose I have done that, what is the next > step? Do I have to use it only on the terminal interface, or can I use it > anywhere on the Mac? You need to use it on the terminal. Normally simply entering "scsh" should be enough to start it. Besides the manual, the page contains some information that should be useful for beginners. -- Martin From scsh-users-request@scsh.net Sat Jan 14 00:50:32 2006 Return-Path: X-Original-To: scsh@informatik.uni-tuebingen.de Delivered-To: scsh@informatik.uni-tuebingen.de Received: from localhost (loopback [127.0.0.1]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id 2C5501120; Sat, 14 Jan 2006 00:50:30 +0100 (NFT) Received: from mx4.informatik.uni-tuebingen.de ([127.0.0.1]) by localhost (mx4 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31804-05; Sat, 14 Jan 2006 00:50:21 +0100 (NFT) Received: from www.scsh.net (bernard.Informatik.Uni-Tuebingen.De [134.2.12.122]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id EAD351147; Sat, 14 Jan 2006 00:50:17 +0100 (NFT) Received: by www.scsh.net (Postfix, from userid 3123) id 91D2B5ECE; Sat, 14 Jan 2006 00:50:17 +0100 (MET) Old-Return-Path: X-Original-To: scsh-users@scsh.net Delivered-To: scsh-users@scsh.net Mime-Version: 1.0 (Apple Message framework v623) Content-Transfer-Encoding: 7bit Message-Id: <785de64083eed12e598aac271e58b572@web.de> Content-Type: text/plain; charset=US-ASCII; format=flowed To: Scsh Users From: RT Happe Subject: Fwd: Using scsh on OS X 10.4 (Tiger) Date: Sat, 14 Jan 2006 00:49:53 +0100 X-Mailer: Apple Mail (2.623) Sender: rthappe@web.de X-Sender: rthappe@web.de Resent-Message-ID: <3YBmPD.A.FFH.5yDyDB@bernard> Resent-From: scsh-users@scsh.net X-Mailing-List: archive/latest/246 X-Loop: scsh-users@scsh.net List-Post: List-Help: List-Subscribe: List-Unsubscribe: Precedence: list Resent-Sender: scsh-users-request@scsh.net List-Id: List-Archive: Resent-Date: Sat, 14 Jan 2006 00:50:17 +0100 (MET) [ The first time, I didn't send this from the right mail account (thanks to OS X Mail and my inadvertence) ] > Martin Gasbichler wrote: >> "Alfonso G. Urroz" writes: >>> step? Do I have to use it only on the terminal interface, or can I >>> use it >>> anywhere on the Mac? >> >> You need to use it on the terminal. Normally simply entering "scsh" >> should be enough to start it. >> >> Besides the manual, the page >> contains some information that should be useful for beginners. > > ... including information on running and programming scsh in Emacs > which is available in terminal and graphical versions for Mac OS X. > > Step-by-step instructions how you may get Carbon Emacs for OS X 10.4: > http://www.mindlube.com/products/emacs/ > > See also > http://www.emacswiki.org/cgi-bin/emacs-en/EmacsForMacOS > > > rthappe >