[3971] in linux-announce channel archive

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

Linux-Announce Digest #263

daemon@ATHENA.MIT.EDU (Digestifier)
Thu Dec 19 14:13:08 2002

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:     Thu, 19 Dec 2002 14:13:04 EST

Linux-Announce Digest #263, Volume #4          Thu, 19 Dec 2002 14:13:04 EST

Contents:
  Yet another Linux FAQ 2.11 ("TekMate")
  New release of Quikscript (Graham Freeman)
  Announce: Pico Lisp System (Alexander Burger)
  "Running Linux, Fourth Edition" Released by O'Reilly (fwd) (Frederick Noronha)
  Shareware: pdfcrypt 2.1 ("Sanface Software")
  [PRC] Open Source CRM Project  (Frederick Noronha)

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

From: "TekMate" <tekmate@hotmail.com>
Subject: Yet another Linux FAQ 2.11
Date: Wed, 18 Dec 2002 19:07:34 CST

http://www.cafecomputer.com/faqindex.htm

About: Yet another Linux FAQ is a comprehensive FAQ about the Linux
Operating System. It is a great document for Linux beginners to read. This
FAQ tries to help those new to Linux help themselves. It covers topics such
as kernel recompilation and X Window System configuration.

Changes: An updated site design, and a VI cheat sheet that can be accessed
from the articles page.


##########################################################################
# 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: Graham Freeman <gfreeman@cs.adfa.edu.au>
Subject: New release of Quikscript
Date: Wed, 18 Dec 2002 19:07:42 CST

This posting announces the release of a new version of Quikscript
and an editor for preparing Quikscript documents.
Quikscript is a text formatting and typesetting program written in
PostScript.  It enables documents to be prepared on any type of
hardware, using visible layout marks to control the appearance of
the output, and produce output on a PostScript printer by
despatching Qs and the document file to the device.  No processing
is performed by the host hardware;  all processing is done within
the printer.  Non-Postscript printers can be handled using a
PostScript previewer like ghostscript.

The advantage that Quikscript provides, other than portability,
is precision of control over output.  Because it is written in
PostScript, it is interpreted at run-time within the printer.
It is possible to create documents that modify the Quikscript
program during execution.  It is very easy to include other
PostScript programs or fragments with Quikscript.  It is possible
to use special PostScript fonts, such as hand-generated ones.
Graphics generated from a variety of sources can be easily included,
as can text output from computer programs.  It is possible to embed
Quikscript within an EPS document, such as an advertisement.  It
is particularly useful for formating the output of database queries
for printed reports.

Quikscript documents can be prepared using any text editor.  Alternatively,
an editor is provided with Quikscript, Qse, which some people find useful.
Qse is written in Java, so it should be portable to most platforms, 
provided
that a Java virtual machine is installed.  Qse simplifies document preview
and printing, and has documentation built in through a help system.

The new version of Quikscript may be obtained by anonymous ftp from
   ftp://ftp.adfa.edu.au/pub/postscript/Quikscript.tar.gz
and the separate files are available in
   ftp://ftp.adfa.edu.au/pub/postscript/qsdir/.

Qse can be obtained in several forms:
   ftp://ftp.adfa.edu.au/pub/postscript/Qse-install.sh
   ftp://ftp.adfa.edu.au/pub/postscript/Qse-smallinstall.sh
   ftp://ftp.adfa.edu.au/pub/postscript/Qse.exe
   ftp://ftp.adfa.edu.au/pub/postscript/smallQse.exe

See the website
   http://www.cs.adfa.edu.au/~gfreeman
for more details.  (Note that our FTP server will check your site first 
to verify that we are not a target for a denial-of-service attack.  If 
your ISP does not have the reverse DNS tables set up correctly, the FTP 
request will fail.  Contact me or your ISP if you have problems.)

                                Graham Freeman
                                g-freeman AT adfa.edu.au
                                17 December 2002

-- 
=========================================================================
Graham Freeman                  g-freeman AT adfa.edu.au
Department of Computer Science, Australian Defence Force Academy
Phone +61-2-6268 8186           Fax +61-2-6268 8581

##########################################################################
# 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: Alexander Burger <abu@software-lab.de>
Subject: Announce: Pico Lisp System
Date: Wed, 18 Dec 2002 19:07:45 CST

Hello world,

the Pico Lisp system is being released under the GPL. Though it is in existence
and use since almost 15 years now, it was never distributed in a formal way
(just given freely to anyone interested).

The newest versions will always be available at

   http://www.software-lab.de/down.html

Pico Lisp compiles and runs only under Linux :-)


About Pico Lisp:

Pico Lisp can be viewed from two different aspects: As a general purpose
programming language, and a dedicated application server framework.


(1) As a programming language, Pico Lisp provides a 1-to-1 mapping of a clean
and powerful Lisp derivate, to a simple and efficient virtual machine. It
supports persistent objects as a first class data type, resulting in a database
system of Entity/Relation classes and a Prolog-like query language tightly
integrated into the system.

The virtual machine was designed to be
   Simple
      The internal data structure should be as simple as possible. Only one
      single data structure is used to build all higher level constructs.
   Unlimited
      There are no limits imposed upon the language due to limitations of the
      virtual machine architecture. That is, there is no upper bound in symbol
      name length, number digit counts, or data structure and buffer sizes,
      except for the total memory size of the host machine.
   Dynamic
      Behavior should be as dynamic as possible ("run"-time vs. "compile"-time).
      All decisions are delayed till runtime where possible. This involves
      matters like memory management, dynamic symbol binding, and late method
      binding.
   Practical
      Pico is not just a toy of theoretical value. Pico is used since 1988 in
      actual application development, research and production.

The language inherits the major advantages of classical Lisp systems like
   - Dynamic data types and structures
   - Formal equivalence of code and data
   - Functional programming style
   - An interactive environment

Pico Lisp is very different from any other Lisp dialect. This is partly due to
the above design principles, and partly due to its long development history
since 1984.


(2) As an application server framework, Pico Lisp provides for 
   Database Management
      Index trees
      Nested transactions
      Object local indexes
      Entity/Relation classes
      Pilog (Pico Prolog) queries
      Multi-user synchronization
      DB Garbage collection
   User Interface
      Browser GUI
      HTML/WML generation
      Applet I/O
   Application Server
      Process management
      Process family communication
      XML I/O
      Import/export
      User administration
      Internationalization
      Security
      Object linkage
      Java reflection
      Postscript/Printing

Pico Lisp is not an IDE. Program development is done at the console, using bash,
vim and the Lisp interpreter.

The only type of GUI supported for applications is through a browser via HTML.
This makes the client side completely platform idependent. Applets are created
dynamically. They connect back to the Pico server and establish an interactive
user interface frontend, while all application logic runs on the server. Each
key press or mouse click is propagated to the server and can cause immediate
actions like in a local desktop application.

The GUI is deeply integrated with - and generated dynamically from - the
application's data model. Because the application logic runs on the server,
multiple users can view and modify the same database object without conflicts,
everyone seeing changes done by other users on her screen immediately due to the
internal process and database synchronization.

- Alex <abu@software-lab.de>
http://www.software-lab.de

##########################################################################
# 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/              #
##########################################################################


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

Date: Wed, 18 Dec 2002 23:22:54 CST
From: Frederick Noronha <fred@bytesforall.org>
Subject: "Running Linux, Fourth Edition" Released by O'Reilly (fwd)



========== Forwarded message ==========

For Immediate Release
December 18, 2002
For more information, a review copy, cover art, or an interview with
the authors, contact:
Kathryn Barrett (707) 827-7094 or kathrynb@oreilly.com


The Essential Guide to Linux
O'Reilly Releases "Running Linux, Fourth Edition"


Sebastopol, CA--The reasons for switching to Linux are as varied as
Linux users themselves. Whatever spirit of rebellion drives them to
begin a Linux installation--whether they're fed up with commercial
operating systems, or looking for something stable that will run on a
clunker PC, or they just like living on the edge of the latest
technological trends--Linux offers many options, for free, that will
satisfy them. Moreover, these rebel Linux users soon find that they
have a degree of control over their computer systems that they may not
have previously experienced. Without much trouble, they can learn how
Linux works, how to troubleshoot problems, and how to dig even more
deeply into their systems. Whatever they hope to accomplish, "Running
Linux" (Welsh, Dalheimer, Dawson, and Kaufman, O'Reilly, US $44.95), a
classic now in its fourth edition, is the book they'll want to reach
for.

"Running Linux" explains everything readers need to know to understand,
install, and start using Linux. "More than ever, Linux is being adopted
by new users with no previous Unix experience, and most users do not
buy a Linux distribution with customer support," says coauthor Lar
Kaufman. "Although the Linux Documentation Project provides ample
resources in many areas, 'Running Linux' provides that needed master
source that pulls information together." Recognized by the Linux
community as the getting-started book that solves users' actual needs,
this book answers the questions and tackles configuration issues that
frequently plague users, but are seldom addressed in other books.

Whether readers are installing Linux for the first time, or need to
know more about a specific task, such as adding a network printer or
configuring for ADSL, they will benefit from the authors' clear,
well-organized instructions. The book doesn't draw the line at the
kernel, or the shell, or the GUI, or even at the point of essential
applications. Rather, the authors, experienced Linux enthusiasts, have
anticipated problem areas, selected stable and popular solutions, and
provided clear discussions and instructions to ensure that readers will
have a satisfying experience running Linux. The discussion is direct
and complete enough to guide novice users while still providing the
additional information experienced users will need to progress in their
mastery of Linux.

The fourth edition of "Running Linux" delves deeper into installation,
system administration, configuring desktops, and networking than
earlier editions did. New topics include:

-The popular LAMP configuration that combines Linux with Apache, MySQL,
and PHP
-Applications ready for prime time
-The GNOME desktop
-Basic security and firewalling
-Package management on Debian
-The Postfix mail transfer agent
-Sound configuration

A solid foundation text for any Linux user, the book also includes
additional resources for dealing with special requirements imposed by
hardware, advanced applications, and emerging technologies. Whether
readers are using Linux on a home workstation or maintaining a network
server, they'll find that "Running Linux" provides expert advice just
when they need it.

What the critics said about the previous edition of this book:

"'Running Linux,' by Matt Welsh and Lar Kaufman, is a gentle welcome to
Linux that shows you around, points out some places where you may want
to spend some time, and tells you where to find good detailed guides.
Over time, 'Running Linux' has become my first choice for broad
questions. ('Linux in a Nutshell' is my choice for details like utility
program options.)"--Jeff Taylor, Dr. Dobbs Electronic Review of
Computer Books, April 2001

"Amazon Best of 2000: Computer Networking"

"For beginners the best choice is the classic 'Running Linux.' There
are other good starting guides, but this one does the best job of
capturing the spirit of Linux while providing essential
guidance."--Gene Wilburn, Computer Paper, December 2000

"Widely accepted as the book on Linux for the new generation, it has
achieved international acclaim and survived the battering of the flame
wars, which is saying something! It's an easy book to read that takes
you through just about everything you need to know to get a broad
overview of what Linux is and how it works."
--Rob Fenwick, PC Answers, December 2000

"First Place, Linux Magazine's Editor's Choice Awards, 2000"

"If you're a user that's fairly new to Linux, this book will help you
get up to speed quickly. If you're a die-hard Linux fanatic, you'll
love this book as a reference for those long nights when you can't
quite remember the syntax to a command you last used five years ago.
Buy it, read it, but be careful about loaning it out! My copy
disappeared for a month." --Linux Magazine, December 2000

"A good core for configuring and running a Linux system."
--Dr. John Joyce, Scientific Computing, October 2000


Additional Resources

Chapter 7, "Upgrading the Software and the Kernel," and Chapter 15,
"TCP/IP and PPP," are available free online at:
http://www.oreilly.com/catalog/runux4/chapter/index.html

For more information about the book, including Table of Contents,
index, author bios and samples, see:
http://www.oreilly.com/catalog/runux4/

For a cover graphic in JPEG format, go to:
ftp://ftp.ora.com/pub/graphics/book_covers/hi-res/0596002726.jpg


Running Linux, Fourth Edition
Matt Welsh, Matthias Kalle Dalheimer, Terry Dawson, and Lar Kaufman
ISBN 1-596-00272-6, 672 pages, $44.95 (US), $69.95 (CAN), 31.95 (UK)
order@oreilly.com
1-800-998-9938
1-707-827-7000
http://www.oreilly.com

About O'Reilly
O'Reilly & Associates is the premier information source for
leading-edge computer technologies. The company's books, conferences,
and web sites bring to light the knowledge of technology innovators.
O'Reilly books, known for the animals on their covers, occupy a
treasured place on the shelves of the developers building the next
generation of software. O'Reilly conferences and summits bring alpha
geeks and forward-thinking business leaders together to shape the
revolutionary ideas that spark new industries. From the Internet to
XML, open source, .NET, Java, and web services, O'Reilly puts
technologies on the map. For more information: http://www.oreilly.com

# # #

O'Reilly is a registered trademark of O'Reilly & Associates, Inc. All
other trademarks are property of their respective owners.

##########################################################################
# 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/              #
##########################################################################


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

Date: Thu, 19 Dec 2002 05:10:36 CST
From: "Sanface Software" <sanface@sanface.com>
Subject: Shareware: pdfcrypt 2.1

What is pdfcrypt?  
pdfcrypt is a very flexible and powerful program.
pdfcrypt allows you to encrypt a PDF (40 bits and 128 bits), set
permissions, add user and owner password.
For example you can encrypt a pdf without to allow to print it. The
button to print the file will be disabled in Acrobat Reader application.
For example you can encrypt a pdf allowing the user to read it only if
he knows the correct password
It's simple to use it like a batch application to set permissions to
every PDF in your archive.
It's simple to use it like a pipe application.
It's simple to use it inside your cgis.
We distribute only executable versions (Windows, Solaris, HP-UX, AIX,
Linux, Mac OS X). If you need ask us the original PERL code, we'll
evaluate your request.
Convert your TeX -> PDF archive to a secure PDF archive with one
command.

What's new in this version
Mac OS X executable version
Windows installer and uninstaller

Download it and test it!
http://www.sanface.com/pdfcrypt.html


-- 
Posted via Mailgate.ORG Server - http://www.Mailgate.ORG

##########################################################################
# 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/              #
##########################################################################


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

Date: Thu, 19 Dec 2002 12:42:26 CST
From: Frederick Noronha <fred@bytesforall.org>
Subject: [PRC] Open Source CRM Project 

>From the PRC (Project Resource Centre) mailing list in India. The PRC list
aims to bring young students seeking Free Software projects in touch with
'gurus' and mentors who could help them. If you could play the role of a
mentor, please do join in this list. Details at the end of this
message. Thank you. Frederick Noronha, Journalist, India. 

========== Forwarded message ==========

December 19, 2002

The methodology for developing applications that works for AOSS
is as follows:

1)Develop the System Requirements Specification (SRS)
2)Develop the use cases
3)Develop the GUI/API designs
4)Develop the test plan
5)Develop designs using ArgoUML
6)Design the MySQl/PostgreSQL database pieces
7)Develop the [ bash | python | C | C++ | Java ] code
8)Update the test plan

The best approach is to take a small piece of the problem
and iterate over steps 2 through 7 until the whole application is 
completed.

Each item above has as a rigorous peer review procedure to mark 
completion.

AOSS is starting a open source project to develop a CRM application.
We will have one person do each of the above task.

If you would like to work on this project please fill
in your name and email address and reply to verbus@sonicisp.net

Position                           Name                          Email
0)Project Manager

1)Analyst 1

2)Analyst 2

3)Software Developer 1

4)Software Developer 2

5)Software Developer 3

6)Software Developer 4

7)Software Developer 5


There will be an iteration for each use case.


-- 
Regards,
Verbus Counts, Director R & D
Advanced Open Source Solutions, Inc.
5098 Foothills Blvd.
Suite 3176
Roseville, CA 95747
email: verbus@sonicisp.net
916-765-1624


Knowlege is power... share it equitably!

_______________________________________________
prc mailing list
prc@mail.sarai.net
http://mail.sarai.net/mailman/listinfo/prc

##########################################################################
# 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