A Reb-Site |
a-reb-site.r | v:0.1.1 70.8 KB 23 Mar 2008 | a-reb-site.r was written to:
- compare form and function of a reb-site with that of a conventional web-site.
(...an obliging web-site - www.rebol.com perhaps!) &
- to provide an example of a reb-site script, &
- as an illustration of the compact size of a reb-site relative
to the average web-site [...] author: R.v.d.Zee |
Library data services |
lds-local.r documentation | v:0.0.4 655 bytes 13 Aug 2004 | Provides the client end of the REBOL.org Library Data Services interface author: Sunanda |
Paint drops |
oneliner-paint-drops.r documentation | v:1.0.0 583 bytes 20 Jul 2003 | A surface is filled with colored drops. author: Vincent Ecuyer |
Posterize |
oneliner-posterize.r documentation | v:1.0.0 1.8 KB 31 Jan 2013 | A short function for 'posterization' effects on images author: Vincent Ecuyer |
Image to pgm converter |
oneliner-image-to-pgm.r documentation | v:1.0.0 1.6 KB 29 Jan 2013 | Creates a binary Portable Graymap (PGM - P5) from an image! source author: Vincent Ecuyer |
TCP port scanner |
oneliner-tcp-port-scanner.r documentation | v:1.0.0 850 bytes 20 Jul 2003 | This is a simple port scanner. Given a TCP address, it will tell you which of the
first 100 ports are accessible. The address can be a host name or number. For example, use
"localhost" to scan ports on your own machine. You can scan more ports by increasing the
number (from 100), or you can scan ranges by using a FOR loop rather than REPEAT. author: Anonymous |
Image to ppm converter |
oneliner-image-to-ppm.r documentation | v:1.0.0 1.0 KB 29 Jan 2013 | Creates a binary Portable Pixel Map (PPM - P6) from an image! source author: Vincent Ecuyer |
Simple gzip archiver |
oneliner-gzip.r3 documentation | v:1.0.0 1.1 KB 8 Jan 2013 | Creates gzip archives, 1-line r3 version. author: Vincent Ecuyer |
Image viewer |
oneliner-image-viewer.r documentation | v:1.0.0 622 bytes 20 Jul 2003 | Displays a picture in a window. Click on it to select another one. author: Vincent Ecuyer |
Tiny REBOL Server |
rebserver.r documentation | v:1.0.0 0.9 KB 13 Mar 2003 | The distributed REBOL server that builds the REBOL system. author: Anonymous |
Web HTML Tag Extractor |
websplit.r documentation | v:1.0.0 709 bytes 13 Mar 2003 | Separate the HTML tags from the body text of a document. author: Anonymous |
Web Page Emailer |
websend.r documentation | v:1.0.0 460 bytes 13 Mar 2003 | Fetch a web page and send it as email. author: Anonymous |
Web Page Link Displayer |
weblinks.r documentation | v:1.0.0 798 bytes 13 Mar 2003 | Display all of the web links found on a page. author: Anonymous |
Web Page Change Detector |
webcheck.r documentation | v:1.0.0 727 bytes 13 Mar 2003 | Determine if a web page has changed since it was last checked, and if it has, send the new page via email. author: Anonymous |
Change directory |
oneliner-cd.r discussion | v:1.0.0 591 bytes 20 Jul 2003 | Used alone, return the actual dir. Used with a dir name, changes the actual dir and
return the new dir. author: Romano Paolo Tenca |
Test if leap year |
oneliner-leapyear.r | v:1.0.0 681 bytes 20 Jul 2003 | 'Leapyear? returns 'true for date values that are leapyears. For example:
>> leapyear? 1/1/2001
== none
>> leapyear? 1/1/2000
== true author: Andrew Martin |
VID demo |
oneliner-bye.r | v:1.0.0 588 bytes 20 Jul 2003 | A red box with bye written on it disappears into the distance. author: Anton |
Calculate Pi |
oneliner-pi.r | v:1.0.0 654 bytes 20 Jul 2003 | Approximate PI with John Wallis formula.
Precision limited to 15 digits due to REBOL. Just press ESC when fed up ;-)
Formula from http:// www.chez.com/algor/math/pi.htm author: Jean-Nicolas Merville |
Write a log file |
oneliner-log.r | v:1.0.0 741 bytes 20 Jul 2003 | Logs Rebol values to a file named %Log.txt. I use 'Log to help debug CGI scripts.
Use 'Log like:
Log/clear now ; Start a new log file.
; What's the CGI query string contents?
Log Rebol/options/cgi/query-string author: Andrew Martin |
Check if subset |
oneliner-subset.r | v:1.0.0 738 bytes 19 Mar 2004 | Tells you if set1 is a subset of set2. Works for both series! and bitset! values. author: gregg irwin |