Q. Can you’re debugger just be a library?
A. Seemingly, yes.
Tag: Scheme
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
Essence: A LR parser generator for Scheme
Essence is a generator for LR(k) and SLR(k) parsers in Scheme.
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.
One programmer’s Scheme bookshelf
Here is one programmer’s Scheme bookshelf.
It provides a good overview of a lot of the best material out there, along with the authors opinions on all of it.
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)
Why are there multiple let statements in Scheme?
There are multiple members of the let family in Scheme to communicate your intention to the reader!
Here is a good post on the matter.
Playing Audio In PLT-Scheme Scheme – Using MCI
Ben explains how to perform non-trivial audio operations in Windows using PLT Scheme here.