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

/ TopicType / Cookbook.RecipeStub

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

Recipe Stubs

These are recipes waiting to be written, or that are partially complete. A great opportunity to give your typing fingers a workout! The recipes listed here are those with a TopicType of RecipeStub in their CookbookForm. The list is generated automatically.

Recipe: Submitted by -
Last Author:
Last Change - Version:
ListRecipeTraversing: STARTINCLUDE Traversing Lists Problem Solution The map procedure applies a procedure proc that takes n arguments and returns a single value, to n lists and returns ... StephenDeGabrielle -
MichaelBurschik
21 Nov 2008 - 11:07 - 1.4 - Diffs
IdiomStreams: STARTINCLUDE Streams Problem You want to handle state in a functional manner. Solution The concept you're looking for is called a "Stream". Discussion The canonical ... NoelWelsh -
StephenDeGabrielle
04 Feb 2008 - 13:01 - 1.4 - Diffs
ListRecipeConstructing: STARTINCLUDE Constructing Lists Problem You wish to create a list from nothingness. Solution Use cons , or cons-immutable to make lists or dotted pairs. cons-immutable ... NoelWelsh -
BrentAFulgham
21 Jan 2007 - 05:42 - 1.3 - Diffs
FileProcessWords: STARTINCLUDE Processing Every Word in a File Problem You need to do something to every word in a file, similar to the foreach function of csh. Solution INCLUDE{"Scm ... GordonWeakliem -
MichaelBurschik
22 Jun 2006 - 12:47 - 1.3 - Diffs
FileReadZip: STARTINCLUDE Reading Data from ZIP Files Problem You have an archive in ZIP format and you want to access the files in the archive. Solution begin scheme (require ... GordonWeakliem -
DaveHerman
22 Feb 2005 - 05:39 - 1.2 - Diffs
FileRandomAccessUpdate: STARTINCLUDE Updating a Random-Access File Problem You want to read a binary record from somewhere inside a large file of fixed-length records, change the values ... GordonWeakliem -
GordonWeakliem
13 Aug 2004 - 03:52 - 1.1 - Diffs
FileVersion: STARTINCLUDE Versioning Filenames Problem You want to make a backup copy of a file, with a protocol of using a 3 digit number to the name of the old file. (VAX, anyone ... GordonWeakliem -
GordonWeakliem
13 Aug 2004 - 03:49 - 1.1 - Diffs
FilePLTPath: STARTINCLUDE Finding a File on the PLT Scheme Search Path Problem You want to search PLT's module search path for a file. Solution Discussion STOPINCLUDE Comments ... GordonWeakliem -
GordonWeakliem
13 Aug 2004 - 03:46 - 1.1 - Diffs
FileSearchPath: STARTINCLUDE Finding a File Given an Arbitrary Search Path Problem Given a search path, you need to find the first file along that path with a specified name. Solution ... GordonWeakliem -
GordonWeakliem
13 Aug 2004 - 03:45 - 1.1 - Diffs
FileReadIni: STARTINCLUDE Reading Configuration Data from a File Problem You want to store configuration data for your program in a file. Solution Discussion STOPINCLUDE Comments ... GordonWeakliem -
GordonWeakliem
13 Aug 2004 - 03:37 - 1.1 - Diffs
ReadLineContinuation: STARTINCLUDE Reading Lines with Continuation Characters Problem You have a file that includes long logical lines split over two or more physical lines, with backslashes ... GordonWeakliem -
GordonWeakliem
13 Aug 2004 - 03:26 - 1.1 - Diffs
FileReadParagraph: STARTINCLUDE Reading a Text File by Paragraphs Problem You need to read a file paragraph by paragraph. A paragraph break is marked by an empty line. Solution Discussion ... GordonWeakliem -
GordonWeakliem
13 Aug 2004 - 03:25 - 1.1 - Diffs
FileSearchReplace: STARTINCLUDE Searching and Replacing Text in a File Problem You need to change one string into another throughout a file. Solution Discussion STOPINCLUDE Comments ... GordonWeakliem -
GordonWeakliem
13 Aug 2004 - 03:17 - 1.1 - Diffs
RegexGrabbag: STARTINCLUDE Regular Expression Grabbag Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:27 - 1.1 - Diffs
RegexTcgrep: STARTINCLUDE Program: tcgrep Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:27 - 1.1 - Diffs
RegexAbbreviations: STARTINCLUDE Matching Abbreviations Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:26 - 1.1 - Diffs
RegexUrlify: STARTINCLUDE Program: urlify Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:26 - 1.1 - Diffs
RegexpValidEmail: STARTINCLUDE Matching a Valid Email Address Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:25 - 1.1 - Diffs
RegexMultiByteCharacters: STARTINCLUDE Matching Multiple-Byte Characters Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:24 - 1.1 - Diffs
RegexAndOrAndNot: STARTINCLUDE Expressing AND, OR, and NOT in a Single Pattern Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun ... NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:23 - 1.1 - Diffs
RegexGreedyVsNonGreedy: STARTINCLUDE Greedy and Non-Greedy Matches Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:22 - 1.1 - Diffs
RegexpMatchingFromLastPattern: STARTINCLUDE Matching from Where the Last Pattern Left Off Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun ... NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:21 - 1.1 - Diffs
RegexApproximateMatching: STARTINCLUDE Approximate Matching Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:20 - 1.1 - Diffs
RegexHonoringLocale: STARTINCLUDE Honoring Locale Settings in Regular Expressions Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun ... NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:20 - 1.1 - Diffs
RegexTestingValidPattern: STARTINCLUDE Testing for a Valid Pattern Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:19 - 1.1 - Diffs
RegexShellGlobs: STARTINCLUDE Matching Shell Globs as Regular Expressions Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 ... NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:18 - 1.1 - Diffs
RegexSpeedUpInterpolation: STARTINCLUDE Speeding Up Interpolated Matches Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:18 - 1.1 - Diffs
RegexPatternSeparator: STARTINCLUDE Reading Records with a Pattern Separator Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 ... NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:17 - 1.1 - Diffs
RegexRangeOfLines: STARTINCLUDE Extracting a Range of Lines Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:17 - 1.1 - Diffs
RegexMatchMultipleLines: STARTINCLUDE Matching Multiple Lines Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:16 - 1.1 - Diffs
RegexFindNth: STARTINCLUDE Finding the Nth Occurrence of a Match Problem Solution Discussion STOPINCLUDE Comments about this recipe Contributors Main.NoelWelsh 25 Jun 2004 NoelWelsh -
NoelWelsh
25 Jun 2004 - 10:15 - 1.1 - Diffs
XMLRecipeValidating: STARTINCLUDE Validating XML Problem You want to ensure that the XML you're processing conforms to a DTD or XML Schema. STOPINCLUDE Main.HectorEGomezMorales 05 May ... HectorEGomezMorales -
NoelWelsh
11 Jun 2004 - 10:31 - 1.2 - Diffs
XMLRecipeXMLToDOM: STARTINCLUDE Parsing XML into a DOM Tree Problem You want to use the DOM (Document Object Model) to access and perhaps change the parse tree of an XML file. STOPINCLUDE ... HectorEGomezMorales -
NoelWelsh
11 Jun 2004 - 10:31 - 1.2 - Diffs
XMLRecipeXMLToSAX: STARTINCLUDE Parsing XML into SAX Events Problem You want to receive SAX (Simple API for XML) events from an XML parser because event-based parsing is faster and ... HectorEGomezMorales -
NoelWelsh
11 Jun 2004 - 10:31 - 1.2 - Diffs
XMLRecipeLowMem: STARTINCLUDE Processing Files Larger Than Available Memory Problem You want to work with a large XML file, but you can't read it into memory to form a DOM or other ... HectorEGomezMorales -
NoelWelsh
11 Jun 2004 - 10:30 - 1.2 - Diffs
XMLRecipeWriteXML: STARTINCLUDE Writing XML Problem You have a data structure that you'd like to convert to XML. STOPINCLUDE Main.HectorEGomezMorales 05 May 2004 HectorEGomezMorales -
NoelWelsh
11 Jun 2004 - 10:30 - 1.2 - Diffs
XMLRecipeXSLT: STARTINCLUDE Processing XML Stylesheet Transformations Problem You have an XML stylesheet that you want to use to convert XML into something else. For example, you ... HectorEGomezMorales -
NoelWelsh
11 Jun 2004 - 10:30 - 1.2 - Diffs
Number of topics: 37


-- AntonVanStraaten - 19 May 2004



CookbookForm
TopicType: Admin
ParentTopic:
Next Topic:

 
 
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