Guitar Chord Diagram Maker |
guitar-chord-diagram-maker.r | 2.8 KB 29 Jun 2008 | A demo program that creates, saves, and prints collections of guitar chord fretboard diagrams.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Guitar Chords |
guitar-chords.r | 22.2 KB 9 Dec 2009 | Create and print instant guitar chord diagram charts for songs.
Taken from the tutorial at http://re-bol.com author: nick |
Hangman, with word generator |
hangman.r | 1.3 KB 2 Jan 2017 | A little hangman game, from http://re-bol.com/short_rebol_examples.r author: nick |
Herd The Sheep Game |
herd-the-sheep.r | 3.7 KB 10 Feb 2013 | Inspired by the LiveCode Sheep Herder game (advertised because it
was conceived and completed within 3 hours, 18 minutes). This quick
implementation took 17 minutes to create, using REBOL :) Also available
at:
http://re-bol.com/examples.txt author: Nick Antonaccio |
HTML Form Generator and Server |
html-form-generator-and-server.r | 7.9 KB 2 Jan 2017 | Creates an HTML form, with any fields, areas, check boxes,
and drop-down selectors you specify, then runs a server to
collect any data entered into the form by users. A cgi version
is also provided, which can be run on most shared host providers.
A little GUI app is also provided to demonstrate how search and
browse collected [...] author: nick |
HTML Link |
html-link.r | 699 bytes 17 Apr 2010 | Takes input string containing any number of URLs and outputs a
a string with all the web URLs appropriately wrapped as HTML links.
Taken from the tutorial at http://re-bol.com author: nick |
Image Effector |
image-effector.r | 1.8 KB 29 Jun 2008 | A simple GUI demo application.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Peer to Peer Instant Messenger |
instant-messenger.r | 3.8 KB 29 Jun 2008 | Exchange text messages directly via TCP/IP network port.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Insult Generator |
insult.r | 4.3 KB 31 Aug 2012 | Teaching some young children to program. They loved this one.
Be sure to see the tutorial at http://re-bol.com author: nick |
Intercom (Voice Communicator) |
intercom.r | 3.0 KB 12 Nov 2009 | A walkie-talkie push-to-talk type of VOIP application. Extremely simple -
just records sound from mic to .wav file, then transfers the wave file to
another IP (where the same program is running), for playback. Sender
and receiver open in separate processes, and both run in forever loops
to enable continuous communication back and forth. [...] author: nick |
Invaders (GUI version) |
invaders-gui.r | 1.4 KB 14 Jan 2017 | The draw dialect is not used in this example, only VID GUI,
so it's short and full featured for a tiny example. A video
explaining the code is at https://youtu.be/NbbHRaG3K8c
Taken from http://re-bol.com/short_rebol_examples.r
; KEYS: a=left s=right space=fire
; VARS: b boxes m missile s invaders l player e end-func p speed [...] author: nick |
Jeopardy |
jeopardy.r | 19.5 KB 7 Oct 2009 | A GUI game reminiscent of the popular TV show. Click on the header image
to create and save config files which contain questions and answers to
separate games. Change the sizer variable to resize the entire layout to
fit different screens.
Taken from the tutorial at http://musiclessonz.com/rebol.html author: [unknown] |
Jigsaw Puzzle - press SPACE bar to view original image |
jigsaw-puzzle.r | 1.9 KB 20 Aug 2010 | Chop a selected image into a selected number of pieces, and then
drag/drop the pieces to reassemble the original image. author: nick |
Jukebox - Wav/Mp3 Player |
jukebox.r | 3.0 KB 20 Aug 2009 | Play .wav and .mp3 files from a selection list.
Taken from the tutorial at http://musiclessonz.com/rebol.html author: nick |
Kindle Email CGI Script |
kindle-email.cgi | 6.1 KB 6 Nov 2011 | This is a super simple email program which you can run on your web server
to provide email access (read, send, delete, etc.) to multiple accounts, using
the simplest of browsers. This was written to be used on a Kindle with 3G
access, and was actually written and implemented entirely on that Kindle,
using nothing more than my console.cgi [...] author: nick |
List Widget Example |
list-widget-example.r | 5.0 KB 10 Jul 2010 | This examples demonstrates how to use REBOL's native GUI list
widget to manage a grid of data values. Columns can be sorted
by clicking the headers. Individual values at any column/row
position can be edited by the user (just click the current value).
Entire rows can be added, removed, or moved to/from user-selected
positions. [...] author: nick |
Listview Demo |
listview-demo.r | 1.2 KB 25 Nov 2010 | A demo of the listview control by Henrik Mikael Kristensen.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Little Email Client |
little-email-client.r | 793 bytes 1 Sep 2009 | A very small graphical email client that can be used to send and receive messages.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Looping through data GUI |
looping-gui.r | 1.4 KB 29 Jun 2008 | An example demonstrating how to accomplish goals similar to the
'Looping through data' demo, using GUI techniques.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Looping though data |
looping-through-data.r | 2.0 KB 29 Jun 2008 | An example application that demonstrates how loop structures
can be used to step through lists of data.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Memory Match Game |
match-game.r | 1.8 KB 14 Oct 2015 | A configurable 'concentration' type matching game.
Enter the number of rows and columns which you want to play.
The total number of boxes must be even (to allow pair matching),
max 11x10. Graphic size is automatically adjusted to fit the screen.
To play, click on any pair of boxes. Remember the characters
revealed, and match [...] author: nick |
Play AVI Video with MCI |
mci-play-avi-.r | 1.1 KB 9 Nov 2009 | Demonstrates how to play AVI video files using Windows API mciExecute.
(Video codec in demo video is MS-CRAM (Microsoft Video 1), audio is PCM).
For more information about mciExecute commands, Google multimedia
command strings and see:
http://msdn.microsoft.com/en-us/library/dd743572(VS.85).aspx
Taken from the tutorial at http://musiclessonz.com/rebol.html [...] author: [unknown] |
mp3-player-demo-using-libwmp3.dll |
mp3-player-libwmp.r | 8.4 KB 8 Aug 2009 | Demo of how to play mp3 files in REBOL using libwmp3.dll
( http://www.inet.hr/~zcindori/libwmp3/index.html )
Taken from the tutorial at http://musiclessonz.com/rebol.html author: nick |
Multiple Column Data Grids |
multi-column-data-grids | 7.9 KB 23 Sep 2009 | A demonstration of how to create your own home made listview
types of multiple column data grids. Easier to use than the 'list
style, and built entirely using native VID, so completely adjustable
to your needs. Many useful features are demonstrated, such as
user editing of data in the grid, saving and loading of data to/from [...] author: nick |
Multiple Column Data Grids |
multi-column-data-grids.r | 7.9 KB 30 Nov 2009 | A demonstration of how to create your own home made listview
types of multiple column data grids. Easier to use than the 'list
style, and built entirely using native VID, so completely adjustable
to your needs. Many useful features are demonstrated, such as
user editing of data in the grid, saving and loading of data to/from [...] author: nick |