Rebol is a very powerful language full of programming goodness. The more
you use it, the more you start to depend on it. Sometimes I actually get annoyed now when using
other languages because they don't have near the flexibility that rebol does. For all of these
programs you will need
Rebol View.
Sticky Note - [10/27/05] - This script places a small sticky note that is moved with
hotkeys on your desktop to type in. Very handy for quick reminders. To move the note around
you use Ctrl+W, Ctrl+A, Ctrl+S, Ctrl+D, and Ctrl+B takes the focus off.
sticky.r
Quick Yahtzee Roller - [12/8/05] - This was a very quick script to make a small Yahtzee dice roller. It
doesn't do much, just lets you roll the dice 3 times and keep the ones you want. I rewrote it to be way cooler
and take advantage of some of rebol's neat qualities, but ended up being the same length, so choose whichever you
want. There is also a zipped file with the images of the dice that are needed to use it.
yahtzee_dice1.r
yahtzee_dice2.r
dice.zip
Yahtzee - [12/10/05] - After the dice roller I really wanted to just play yahtzee, and I figured it shouldn't
take but just a quick minute to make the whole game. So I did. And it really didn't take long. I tried to get it as
close to the
original sheet as possible. It automatically
adds in the bonus if you get it, and scores it for you whenever you want. Don't forget to get the dice!
Yahtzee.r
dice.zip
Thumbnail Maker - [12/21/05] - I was tired of resizing pictures and saving them as thumbnails, so I wrote this
to just resize as many images as I wanted to any particular size. It keeps the same aspect ratio so you only need to
specify either the new width or the new height. You can also choose to have thumbnails as either pngs or bmps. You
can see I chose two and it created the smaller version with the same file name + "_sm" tacked on to the end. It doesn't
do jpg because rebol doesn't support export to that format natively. But you can choose nearly any format to make
thumbnails for.
Thumbnail.r
Net Send Messenger - [8/9/06] - This is a very simple app that I made because I was tired of keeping a command line open
to send "net send" messages over the network. Most people don't really use it that much, but when the internet is down and you need
a quick message it's pretty good. It doesn't do much but allow you to add many servers to a list and send a message to one or many of
those machines. handy. It actually stores the list of servers in the file itself. fun.
im.r
im_tny.r - A stripped down version
Rebol Online System - [8/25/06] - This is not really a rebol program, but a wrapper for the rebol browser plugin. It allows you to
run programs like windows that you can dynamically create, move, and close. Unfortunately IE is not compliant with some dhtml standards so
you should use firefox to test it. Of course, you should be using firefox anyways.
Rebol Online System
Tiny asm Dialect - [4/27/07] - My first dialect. This allows you to write tiny code inline with your rebol code. You can also load and store data from and to rebol variables.(Integers) To learn more about it and how tiny works, and to get the file:
Tiny Dialect
Program Linker - [3/27/07] - This program was designed for
Gobolinux. It is used to create
personal program directories to better organize your programs. The program can actually be used to execute many different commands on the
files because the command line arguments are configurable. You can save all configuration and it will save in a file called prog.conf. Also, the type
column of the table doesn't always correctly return the type.-sometimes it still calls a directory a file.
The code and executable(for linux) are in a tar.gz file. Note: you will also need
rebgui if you
want to run it from the sourcecode.
ProgramLinker.tar.gz
Xanga to Wordpress exporter - [5/19/07] - This is a gui application that downloads all your xanga posts and comments and saves them into a wordpress xml format, so you can easily import into wordpress.