To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

Scsh
Original author(s)Olin Shivers
Developer(s)Brian Carlstrom
Martin Gasbichler
Mike Sperber
Initial release31 October 1994; 29 years ago (1994-10-31)
Stable release
0.6.7 / 16 May 2006; 17 years ago (2006-05-16)
Repositorygithub.com/scheme/scsh
Written inScheme 48
Operating systemUnix-like
PlatformIA-32
Size4.2 MB
Available inEnglish
TypeUnix shell
LicenseBSD-3-Clause
Websitewww.scsh.net

Scsh (a Scheme shell) is computer software, a type of shell for an operating system. It is a Portable Operating System Interface (POSIX) application programming interface (API) layered on the programming language Scheme, in a manner to make the most of Scheme's ability for scripting. Scsh is limited to 32-bit platforms but there is a development version against the latest Scheme 48 that works in 64-bit mode.[1] It is free and open-source software released under the BSD-3-Clause license.

Features

Scsh includes these notable features:

Example

#!/usr/local/bin/scsh -s
!#

(define (executables dir)
  (with-cwd dir
    (filter file-executable? (directory-files dir #t))))
(define (writeln x) (display x) (newline))

(for-each writeln
  (append-map executables ((infix-splitter ":") (getenv "PATH"))))

"Acknowledgments"

The reference manual for Scsh includes a spoof Acknowledgments section[2] written by Olin Shivers. It starts:

Who should I thank? My so-called "colleagues", who laugh at me behind my back, all the while becoming famous on my work? My worthless graduate students, whose computer skills appear to be limited to downloading bitmaps off of netnews? My parents, who are still waiting for me to quit "fooling around with computers," go to med school, and become a radiologist? My department chairman, a manager who gives one new insight into and sympathy for disgruntled postal workers?

and concludes with:

Oh, yes, the acknowledgements. I think not. I did it. I did it all, by myself.

See also

References

  1. ^ "scheme/scsh: A Unix shell embedded in scheme". GitHub. Retrieved 2024-01-12.
  2. ^ "Acknowledgements (reprinted in Philip Greenspun's book, Database-backed Web Sites)". Philip Greenspun. Retrieved 2018-12-04.

External links

This page was last edited on 12 January 2024, at 23:54
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.