Q. Can you’re debugger just be a library?
A. Seemingly, yes.
Tag: PLT
The essence of form abstraction
Abstraction is the cornerstone of high-level programming; HTML forms are the principal medium of web interaction. However, most web programming environments do not support abstraction of form com- ponents, leading to a lack of compositionality. Using a semantics based on idioms, we show how to support compositional form construction and give a convenient syntax.
Formlets are now also part of the PLT Web Server.
(via PLT)
Packed Binary Routines for PLT Scheme
Per Doug’s post:
I have implemented an equivalent of the Python pack/unpack functions in PLT Scheme. I needed it primarily to be able to (more easily) read binary data from other applications for analysis in PLT Scheme.
Here is what it does:
This module performs conversions between PLT Scheme values and C structs represented as PLT Scheme byte strings. It uses format strings (explained below) as compact descriptions of the layout of the C structs and the intended conversion to/from PLT Scheme values. This can be used in handling binary data stored in files or from network connections, among other sources.
PLT search plugin
Sake: a build tool
The prolific Schematics guys have released a Scheme build tool called Sake out on PLaneT.
Sake tasks are currently sparse, contributions are welcome.
Component Deployment with PLaneT
Here is a paper about how PLT Scheme’s package repository, PLanetT was designed. PLanetT is a the PLT Scheme equivalent of CPAN.
For the past two years we have been developing PLaneT, a package manager built in to PLT Schemes module system that simplifies program development by doing away with the distinction between installed and uninstalled packages. In this paper we explain how PLaneT works and the rationales behind our major design choices, focusing particularly on our decision to integrate PLaneT into PLT Scheme and the consequences that decision had for PLaneTs design. We also report our experience as PLaneT users and developers and describe what have emerged as PLaneTs biggest advantages an drawbacks.
(mentioned in this post PLT)
Playing Audio In PLT-Scheme Scheme – Using MCI
Ben explains how to perform non-trivial audio operations in Windows using PLT Scheme here.
PLT Scheme version 4.1 is now available
PLT Scheme version 4.1 is now available from http://plt-scheme.org/.
(via PLT Blog)
PLT Release Chronology
PLT has been around for a long time. Check out their Release Chronology.
S-expression comments in PLT
In PLT Scheme, you can comment out s-expressions, using this prefix:
#;
If you’ve ever seen Lisp code, you will know why this is particularly convenient!
Here is the reference in the documentation.
This functionality is described in SRFI-62.
(via PLT Discuss)