[5133] in linux-announce channel archive

home help back first fref pref prev next nref lref last post

Linux-Announce Digest #426

daemon@ATHENA.MIT.EDU (Digestifier)
Mon Jun 19 12:13:14 2006

From: Digestifier <Linux-Announce-Request@senator-bedfellow.mit.edu>
To: Linux-Announce@senator-bedfellow.mit.edu
Reply-To: Linux-Announce@senator-bedfellow.mit.edu
Date:     Mon, 19 Jun 2006 12:13:09 EDT

Linux-Announce Digest #426, Volume #5          Mon, 19 Jun 2006 12:13:09 EDT

Contents:
  [SLUG] Suncoast LUG Meetings (Paul M Foster)
  PLT Scheme v350 (Eli Barzilay)

----------------------------------------------------------------------------

Date: Sun, 18 Jun 2006 17:35:49 -0500
Subject: [SLUG] Suncoast LUG Meetings
From: paulf@quillandmouse.com (Paul M Foster)

                     *************************************
                     * Suncoast Linux Users Group (SLUG) *
                     *        Meeting Schedule           *
                     *************************************

SARASOTA/BRADENTON ***************************************

     20 June 18:00-21:00 Sarasota
     (third Tuesday of each month)

     New College
     Math Reading Room, HNS 106
     5700 N. Tamiami Trail
     Sarasota, FL 34243

     See http://www.ncf.edu/about/directions.html and
     http://www.ncf.edu/about/pdf/map.pdf for maps

DUNEDIN **************************************************
  
     24 June 10:00-12:00 Dunedin
     (usually fourth Saturday of each month)

     Dunedin Public Library
     Community Room A or B (see notice on site)
     Dunedin, FL

     See http://www.suncoastlug.org/meetings.html#dunedin for directions.

ST PETERSBURG ********************************************

     26 June 19:00-21:00 St Petersburg
     (usually last Monday of each month)

     J. J. Rohrer
     Sterling Square
     600 First Ave North
     St Petersburg, FL 33701

     See http://maps.google.com/maps?q=600+First+Ave+N,+Saint+Petersburg,+FL&spn=0.017456,0.027210&hl=en
     for map.

NEW PORT RICHEY ******************************************

     1 July 13:00-15:00 New Port Richey
     (first Saturday of each month)
     
     New Port Richey Public Library
     (second level meeting rooms)
     5939 Main St.
     New Port Richey, FL

     See http://www.suncoastlug.org/meetings.html#npr for directions.

BRANDON **************************************************

     6 July 20:00-22:00 Brandon
     (first Thursday of each month)

     Brandon Barnes & Noble
     Brandon Town Center
     Brandon, FL

     See http://www.suncoastlug.org/meetings.html#Brandon for directions.

TAMPA ****************************************************

     11 July 19:00-21:00 Tampa
     (second TUESDAY of each month)

     Hillsborough Community College
     Dale Mabry Campus
     Technology Bldg, Rm 426
     4001 Tampa Bay Blvd
     Tampa, FL

     See http://www.hccfl.edu/pollock/Docs/DM-Map.htm for directions.

***********************************************************

ACTIVITIES:

     Meetings include:

     1) Presentation: As indicated.

     2) Question & Answer Session.

     3) Raffle and free stuff!

     Bring your boxes, questions, problems, and plenty of good cheer!
     (And don't forget to start your installs early!)

##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION.  #
# This group is archived at http://stump.algebra.com/~cola/              #
##########################################################################


------------------------------

From: Eli Barzilay <eli@barzilay.org>
Subject: PLT Scheme v350
Date: Mon, 19 Jun 2006 00:38:11 -0500


PLT Scheme version 350 is now available from

    http://download.plt-scheme.org/

Compared to version 301 (the previous stable release), much has
changed in the underlying infrastructure of PLT Scheme, but relatively
little has changed in the supported languages and libraries.

Changes:

 * New installation process and filesystem layout: the Mac OS X
   installation is drag-and-drop, the Unix installation matches FHS
   conventions (if you want), and the Windows installation does not
   write to the system folder (except to update the registry).  In
   particular, it's now possible to create a fully functional PLT
   Scheme installation on a CD-ROM or a USB memory stick.

   Along with this change, tools to create executables -- including
   DrScheme's "Create Executables..." menu item -- can produce
   self-contained packages (i.e., with all needed DLLs, frameworks,
   and shared libraries).

 * ProfessorJ now supports a unit testing mechanism. It extends Java
   with a "check ... expect" expression for writing test cases, and it
   automatically evaluates Example classes and test methods,
   summarizing the results in a window.

   ProfessorJ also includes a new wizard for generating class and
   union declarations.

   The draw library has changed to accommodate multiple worlds (see
   docs), and a new idraw library supports imperative drawing and
   animation.

 * MzScheme includes a just-in-time (JIT) compiler from byte code to
   native code on x86, x86_64, and PowerPC platforms.  The JIT is
   enabled by default.

   Performance improvements due to the JIT vary; the following timings
   on a 2GHz MacBook provide some idea of the spectrum:

     Shootout benchmarks (http://shootout.alioth.debian.org/):
                           No JIT          JIT       No-JIT/JIT
       nsieve-bits 7         7.5 sec      0.8 sec       9.4
       fannkuch 9            8.6          2.0           4.3
       fasta 500000          8.5          3.1           2.7
       regex-dna 5000000    10.5         10.3           1.0

     tex2page on the mzscheme manual:
                           No JIT          JIT       No-JIT/JIT
                            37.6 sec     10.2 sec       3.7

     mzc -c tex2page-aux.ss:
                           No JIT          JIT       No-JIT/JIT
                            19.4 sec     13.7 sec       1.4

 * MzScheme's default exception handler now shows stack-trace
   information.  This stack-trace information is less precise than
   from the "errortrace" tool, but it's often good enough, and it's
   always available.

 * DrScheme now treats open square-bracket `[' keyboard input
   specially.  In most contexts, an open parenthesis `(' is inserted,
   instead -- but `[' is left alone in certain contexts, such as the
   start of a `let' binding or a `cond' clause.

   The intent is that you can type unshifted `[' and `]' characters
   and get code that looks as if you had typed `(' and `)' with less
   wear and tear on your hands.  Use Ctl-[ in any context to get `[',
   or change the preference to disable special treatment of `['.


For more details, follow the "Release" and then "Release Notes" links
in Help Desk, or see
    http://pre.plt-scheme.org/plt/doc/release-notes/
A complete history of changes is at:
    http://download.plt-scheme.org/chronology/

-- 
          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:
                  http://www.barzilay.org/                 Maze is Life!

##########################################################################
# Send submissions for comp.os.linux.announce to: cola@stump.algebra.com #
# PLEASE remember a short description of the software and the LOCATION.  #
# This group is archived at http://stump.algebra.com/~cola/              #
##########################################################################


------------------------------


** FOR YOUR REFERENCE **

The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:

    Internet: Linux-Announce-Request@NEWS-DIGESTS.MIT.EDU

You can submit announcements to be moderated via:

    Internet: linux-announce@NEWS.ORNL.GOV

Linux may be obtained via one of these FTP sites:
    ftp.funet.fi				pub/Linux
    tsx-11.mit.edu				pub/linux
    sunsite.unc.edu				pub/Linux

End of Linux-Announce Digest
******************************

home help back first fref pref prev next nref lref last post