Musical Chord Spellings |
musical-chord-spellings.r | 1.3 KB 12 Dec 2013 | Prints out the notes that comprise many common types of chords, with all 12 root note variations.
Sharps are used to label all accidental notes (no flat notes). author: nick |
MySql Example |
mysql-example.r | 1.4 KB 29 Jun 2008 | A simple example demonstrating how to use mysql-protocol from
http://softinnov.org/rebol/mysql.shtml.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
No 'REBOL -' in title bar |
no-rebol-in-title-bar.r | 1.2 KB 11 Mar 2010 | Remove the deault REBOL - text from _all_ GUI title bars, including alerts
and requestors. author: nick |
Number Verbalizer |
number-verbalizer.r | 3.1 KB 13 Mar 2010 | Converts number values to their spoken English equivalent.
(i.e., 23482194 = Twenty Three million, Four Hundred Eighty
Two thousand, One Hundred Ninety Four ). This code was
created for a check writing application, but is perhaps
useful elsewhere. The algorithm was partially derived from
the article at http://www.blackwasp.co.uk/NumberToWords.aspx [...] author: nick |
Obfuscation |
obfuscation.r | 1.1 KB 1 Sep 2009 | [no purpose header found] author: nick |
Object Namespaces |
object-namespaces.r | 1.5 KB 29 Jun 2008 | A short example to demonstrate how name spaces can be managed in Rebol, using objects.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Object Game |
objects-example.r | 1.9 KB 29 Jun 2008 | A little game to demonstrate Rebol objects.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Paypal Reports |
paypal-reports.r | 2.6 KB 22 Jan 2013 | This is a beginner's example taken from the tutorial at:
http://re-bol.com/business_programming.html
It creates reports on columns and rows of data in a .csv table.
The script demonstrates typical CSV file operations using parse, foreach,
and simple series functions. The code performs sums upon columns, and
selective calculations [...] author: nick |
PDF Bar Code Generator |
pdf-barcode.r | 2.7 KB 14 Mar 2010 | Takes a given string and XxY coordinate (in millimeters), and outputs
a PDF file containing a printable bar code at the given position. The bar
code algorithm is derived directly from Bohdan Lechnowsky's code39.r ,
and the PDF is generated using Gabriele Santilli's pdf-maker.r . This
script was created because images output by the [...] author: nick |
Pig Latin |
piglatin.r | 675 bytes 6 Dec 2013 | Enter text, it displays the Pig Latin translation. author: nick |
Playing Card Example |
playing-card-example.r | 39.1 KB 29 Jun 2008 | An example demonstrating how to work with graphical playing cards.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Generic Playing Card Game Framework |
playing-card-framework.r | 2.9 KB 13 Jan 2010 | A simple demonstration of how to use the images in %playing-cards.r
to create card games. In this example, the cards are arranged in a way
that can be used to play the game of Freecell. The rules of that particular
game are not enforced in this example, to keep the code simple and under-
standable (you can play a full game of Freecell [...] author: nick |
Playing Card Images |
playing-cards.r | 40.5 KB 13 Jan 2010 | A data block of playing card images. Use the following code to view:
do %playing-cards.r
gui: [size 670x510 backdrop 0.150.0 across ]
foreach [card label num color pos] cards [
append gui compose [
at (pos) image load to-binary decompress (card)
]
view layout gui
Taken from the tutorial at http://re-bol.com [...] author: nick |
POINT OF SALE SYSTEM |
pos.r | 12.6 KB 14 Mar 2010 | This is a point of sale system (sales checkout, receipt printer, and data
storage system) written using RebGUI. It may help provide some basic
insight into the workings of RebGUI. Actually, the majority of this code
manages user workflow - saving/retrieving receipts. The RebGUI parts are
simple and short.
Note that the username [...] author: nick |
Postal Barcode |
postal-barcode.r | 771 bytes 9 Feb 2011 | Demonstrates how to use the Intelligent Mail encoder dll from
the US postal service.
This script can also be found in the tutorial at http://re-bol.com author: nick |
Quick Color Guide |
quick-color-guide.r | 765 bytes 23 Sep 2009 | Provides a quick visual reference for all of REBOL's built in colors.
Click the color to see it's tuple value.
Taken from the tutorial at http://musiclessonz.com/rebol.html author: [unknown] |
Quick Manual |
quick-manual.r | 1.6 KB 15 Sep 2009 | A quick and dirty way to print out help for all built in functions.
Also includes a complete list of VID styles ("view layout" GUI
widgets), VID layout words, and VID facets (standard properties
available for all the VID styles). Give it a minute to run...
Taken from the tutorial at http://musiclessonz.com/rebol.html author: nick |
Quick Script Compressor |
quick-script-compressor.r | 1.2 KB 5 Jul 2011 | I like to distribute certain scripts in compressed format. They're smaller
when compressed, and the compressed syntax keeps casual peeping Toms
from messing with the code. Maintaining scripts with compressed code can
be a pain, though - decompress the compressed code with REBOL, copy,
paste and edit, then recompress, copy, paste, and [...] author: nick |
RebGUI Card File |
rebgui-card-file.r | 2.0 KB 10 Apr 2010 | This is an implementation of the Card File program at
http://www.rebol.org/view-script.r?script=card-file.r
using RebGUI instead of VID. Notice that the GUI is resizable,
the text fields have undo/redo and spellcheck capabilities,
requestors are modal, and all the other features of RebGUI
are available.
Taken from [...] author: nick |
RebGUI Editor |
rebgui-editor.r | 2.5 KB 18 Apr 2010 | A minimal text editor program, written to demonstrate menus and a few
other basic features of RebGUI.
Taken from the tutorial at http://re-bol.com author: nick |
RebGUI Spreadsheet Example |
rebgui-spreadsheet.r | 882 bytes 17 Apr 2010 | A tiny demo of RebGUI's sheet widget, with save, load, print
and data view features.
Taken from the tutorial at http://re-bol.com author: nick |
RebGUI User List Demo |
rebgui-users.r | 2.3 KB 24 Apr 2010 | A simple RebGUI demo. Inspired by the tutorial at http://snappmx.com
Taken from the tutorial at http://re-bol.com author: nick |
Rebol Help |
rebol-help.r | 1.7 KB 5 Feb 2017 | Provides help for all functions, various elements of VID (GUI system),
key codes, colors, built in images, etc. which are the source of
common questions by Rebol users. author: nick |
CGI Remote Console |
remote-console.r | 2.5 KB 26 Sep 2009 | Allows you to type REBOL code into an HTML text area, and have
that code execute directly on your web server. The results of the
code are then displayed in your browser. This essentially functions
as a remote console for the REBOL interpreter on your server. You
can use it to run REBOL code, or to call shell programs directly on [...] author: [unknown] |
Remove Comments |
remove-comments.r | 463 bytes 29 Jun 2008 | A parse example that removes comments from Rebol code.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |