s c h e m a t i c s : c o o k b o o k

/ Cookbook.WebRss

This Web


WebHome 
WebChanges 
TOC (with recipes)
NewRecipe 
WebTopicList 
WebStatistics 

Other Webs


Chicken
Cookbook
Erlang
Know
Main
Plugins
Sandbox
Scm
TWiki  

Schematics


Schematics Home
Sourceforge Page
SchemeWiki.org
Original Cookbook
RSS

Scheme Links


Schemers.org
Scheme FAQ
R5RS
SRFIs
Scheme Cross Reference
PLT Scheme SISC
Scheme48 SCM
MIT Scheme scsh
JScheme Kawa
Chicken Guile
Bigloo Tiny
Gambit LispMe
GaucheChez

Lambda the Ultimate
TWiki.org
Schematics Scheme Cookbook http://schemecookbook.org/view/Cookbook Cookbook of practical applications of the Scheme programming language en-us Copyright 2008, by the contributing authors. Schematics [http://schematics.sourceforge.net/] The Schematics Editors TWiki TWiki.Cookbook TWiki.Cookbook http://schemecookbook.org/view/Cookbook http://schemecookbook.org/twiki/pub/TWiki/TWikiLogos/twikilogo88x31.gif PltManuals http://schemecookbook.org/view/Cookbook/PltManuals PLT Manuals PltScheme PLT Scheme is well-documented, with a plethora of manuals in HTML format. Many of the most frequently asked questions about PLT Scheme can be ... 2008-09-16T18:46:00Z MarekKubica 1.4 updated major http://schemecookbook.org/rdiff/Cookbook/PltManuals http://schemecookbook.org/rdiff/Cookbook/PltManuals WebHome http://schemecookbook.org/view/Cookbook/WebHome Welcome to the Schematics Scheme Cookbook. The Schematics Scheme Cookbook is a BecomingAnAuthor collaborative effort to produce documentation and recipes for using ... 2008-09-14T07:38:00Z AntonVanStraaten 1.36 updated major http://schemecookbook.org/rdiff/Cookbook/WebHome http://schemecookbook.org/rdiff/Cookbook/WebHome StringSplit http://schemecookbook.org/view/Cookbook/StringSplit STARTINCLUDE string-split: splitting a string into substrings Problem Split a string into words separated by whitespace or other delimiters. See the function split ... 2008-09-13T16:17:00Z MarekKubica 1.9 updated major http://schemecookbook.org/rdiff/Cookbook/StringSplit http://schemecookbook.org/rdiff/Cookbook/StringSplit HowToMakeASnip http://schemecookbook.org/view/Cookbook/HowToMakeASnip STARTINCLUDE How to make a snip see http://docs.plt-scheme.org/gui/snip .html Problem You want to make a new type of snip for use on an editor-canvas (PLT Scheme ... 2008-08-04T19:30:00Z StephenDeGabrielle 1.1 updated major http://schemecookbook.org/rdiff/Cookbook/HowToMakeASnip http://schemecookbook.org/rdiff/Cookbook/HowToMakeASnip GUIChapterComments http://schemecookbook.org/view/Cookbook/GUIChapterComments TMPL:P{"chaptercommenttip"} STARTINCLUDE Comments See also Corey Sweeney's http://students.depaul.edu/~csweeney/Guibuilder.Tutorial.html GUI-builder Howto . Main ... 2008-08-04T18:21:00Z StephenDeGabrielle 1.5 updated major http://schemecookbook.org/rdiff/Cookbook/GUIChapterComments http://schemecookbook.org/rdiff/Cookbook/GUIChapterComments GUIHelloWorld http://schemecookbook.org/view/Cookbook/GUIHelloWorld STARTINCLUDE Creating a window containing text Problem You want to create a GUI window containing some text. Solution PltScheme provides a cross-platform GUI toolkit ... 2008-08-04T14:23:00Z StephenDeGabrielle 1.4 updated major http://schemecookbook.org/rdiff/Cookbook/GUIHelloWorld http://schemecookbook.org/rdiff/Cookbook/GUIHelloWorld ListRecipeTraversing http://schemecookbook.org/view/Cookbook/ListRecipeTraversing STARTINCLUDE Traversing Lists Problem Solution Discussion map, for-each, fold etc. STOPINCLUDE Comments about this recipe here's an example of using map this one ... 2008-08-01T10:39:00Z StephenDeGabrielle 1.3 updated major http://schemecookbook.org/rdiff/Cookbook/ListRecipeTraversing http://schemecookbook.org/rdiff/Cookbook/ListRecipeTraversing CoRoutines http://schemecookbook.org/view/Cookbook/CoRoutines STARTINCLUDE Coroutines Problem In some cases it is desirable to transform a procedure that returns a table (a list, vector or list of lists and so on) into a procedure ... 2008-07-27T14:21:00Z JosKoot 1.29 updated major http://schemecookbook.org/rdiff/Cookbook/CoRoutines http://schemecookbook.org/rdiff/Cookbook/CoRoutines GUIWidgetAggregation http://schemecookbook.org/view/Cookbook/GUIWidgetAggregation STARTINCLUDE Aggregating Widgets in a Single Widget Problem You would like to deal with many widgets as though they were a single widget. Solution begin scheme #lang ... 2008-07-17T08:59:00Z StephenDeGabrielle 1.9 updated major http://schemecookbook.org/rdiff/Cookbook/GUIWidgetAggregation http://schemecookbook.org/rdiff/Cookbook/GUIWidgetAggregation SaveBinaryDataInSQL http://schemecookbook.org/view/Cookbook/SaveBinaryDataInSQL STARTINCLUDE Save Binary Data in SQL Problem Postgres has a binary datatype. However, if your using hans's sqlid database driver with postgres, and try to save a ... 2008-07-04T04:38:00Z HiSeeComments 1.1 updated major http://schemecookbook.org/rdiff/Cookbook/SaveBinaryDataInSQL http://schemecookbook.org/rdiff/Cookbook/SaveBinaryDataInSQL DatabaseChapterComments http://schemecookbook.org/view/Cookbook/DatabaseChapterComments TMPL:P{"chaptercommenttip"} STARTINCLUDE Comments WriteSqlInSchemeLikeSyntax: belongs here, but I did something wrong Main.HiSeeComments Fixed the parent topic ... 2008-07-01T05:36:00Z AntonVanStraaten 1.3 updated major http://schemecookbook.org/rdiff/Cookbook/DatabaseChapterComments http://schemecookbook.org/rdiff/Cookbook/DatabaseChapterComments WriteSqlInSchemeLikeSyntax http://schemecookbook.org/view/Cookbook/WriteSqlInSchemeLikeSyntax STARTINCLUDE Write SQL In Scheme Like Syntax Problem Writing SQL queries, by writing strings using "string-append" can be a pain. a sexp would make life easier. Solution ... 2008-07-01T05:32:00Z AntonVanStraaten 1.2 updated major http://schemecookbook.org/rdiff/Cookbook/WriteSqlInSchemeLikeSyntax http://schemecookbook.org/rdiff/Cookbook/WriteSqlInSchemeLikeSyntax WebFileUpload http://schemecookbook.org/view/Cookbook/WebFileUpload File Upload Problem You already know how to write complex, and useful CGIs in scheme, however you need to upload a file (any kind of file) from the user computer ... 2008-07-01T04:26:00Z HiSeeComments 1.3 updated major http://schemecookbook.org/rdiff/Cookbook/WebFileUpload http://schemecookbook.org/rdiff/Cookbook/WebFileUpload WebStatistics http://schemecookbook.org/view/Cookbook/WebStatistics Statistics for Cookbook Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save and uploads: Jun 2008 20219 0 ... 2008-06-10T14:08:00Z guest 1.261 updated major http://schemecookbook.org/rdiff/Cookbook/WebStatistics http://schemecookbook.org/rdiff/Cookbook/WebStatistics LayoutMultiplePanelsInAFrame http://schemecookbook.org/view/Cookbook/LayoutMultiplePanelsInAFrame STARTINCLUDE Laying out panels in a window Problem You want to make a specific layout of your panels Solution Laying out panels in DrScheme is simple, Inside your ... 2008-04-17T06:28:00Z NoelWelsh 1.2 updated major http://schemecookbook.org/rdiff/Cookbook/LayoutMultiplePanelsInAFrame http://schemecookbook.org/rdiff/Cookbook/LayoutMultiplePanelsInAFrame IdiomObjectOrientedProgramming http://schemecookbook.org/view/Cookbook/IdiomObjectOrientedProgramming Object Oriented Programming http://www.cs.dartmouth.edu/~cs18/W2004/handouts/objects/objects.html Object Oriented Programming using (a modified) Swindle http://www ... 2008-04-02T22:36:00Z StephenDeGabrielle 1.12 updated major http://schemecookbook.org/rdiff/Cookbook/IdiomObjectOrientedProgramming http://schemecookbook.org/rdiff/Cookbook/IdiomObjectOrientedProgramming

 
 
Copyright © 2004 by the contributing authors. All material on the Schematics Cookbook web site is the property of the contributing authors.
The copyright for certain compilations of material taken from this website is held by the SchematicsEditorsGroup - see ContributorAgreement & LGPL.
Other than such compilations, this material can be redistributed and/or modified under the terms of the GNU Lesser General Public License (LGPL), version 2.1, as published by the Free Software Foundation.
Ideas, requests, problems regarding Schematics Cookbook? Send feedback.
/ You are Main.guest