Script Library: 1238 scripts
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 
Tweener
tweener.rv:0.7.5
29.6 KB
29 Jul 2018
Make transitions between two values. Many easing functions to animate faces.
author: Marco Antoniazzi
cookie-jar reader/writer
cookie-jar-lib.rv:0.0.1
2.4 KB
30 Mar 2005
Parses cookie-jar files and returns a block of records. Records are blocks of either strings or name-value pairs. if /keep-comments is used there will be two fields for each record: 'content and 'comment; comment may be none.
author: Gregg Irwin
File globbing module and dialect
file-list.r
 discussion
 documentation
v:0.0.2
30.2 KB
19 Oct 2006
Given a file spec, and optional criteria for date, size, and attributes, the FILE-LIST function returns a block of files that match the spec and criteria. It is also a test-bed for how to integrate dialects with one-another. There are sub-dialects for date, size, and attribute tests, and FILE-LIST encapsulates those, along [...]
author: Gregg Irwin
Insert - Most Recently Used list idiom
insert-mru.rv:0.0.1
1.2 KB
30 Apr 2007
Insert an item in a series, where the series is treated as an MRU list. That is, the newest item is at the head, there are no duplicates (inserting a value removes the previous instance of that value if it exists), and the series may be limited to a specific size. If a new item causes the series to grow beyond that size, the [...]
author: Gregg Irwin
Linked Layout Demo
linked-layouts.rv:0.0.1
2.0 KB
11 Oct 2003
Shows how to link layouts so when a main window moves, the others stay in the same relative position to it.
author: Gregg Irwin
VB Like Operator Module/pattern-matcher
like.r
 documentation
v:0.0.3
6.7 KB
15 Oct 2006
The LIKE? function is a first crack at something like VB's Like operator. i.e. a *very* simple RegEx engine as you would use in shells for file globbing. The real purpose was to help me get acquainted with parse.
author: Gregg Irwin
Priority Queue
priority-queue.rv:0.0.1
1.8 KB
30 Apr 2007
Provides functions, and an object def that uses them, to treat a series as a priority queue. When you insert items, you give them a priority (higher numbers mean a higher priority). In the actual series, the priority is stored along with the value, so you should always use the pq* functions to access them, to make things easier. [...]
author: Gregg Irwin
Rectangle Module
rect-lib.rv:0.0.1
6.8 KB
11 Oct 2003
Code from a REBOLForces article (http://www.rebolforces.com/articles/pairs/2/) that provides support for rectangle-related operations. It was also used to explore the concept of function spec templates. You could refactor that concept out though if you want.
author: Gregg Irwin
System Port - Drag Accept Demo
sys-port-drag-accept.rv:0.0.1
4.6 KB
25 Sep 2003
Demo using system port to catch WM_DROPFILE messages for drag-n-drop support.
author: Gregg Irwin
View-Hanoi
view-hanoi.r
 discussion
v:1.0.0
8.0 KB
13 Mar 2003
Towers of Hanoi with Visualization. A learning excercise for me. Hopefully it will improve over time.
author: Gregg Irwin
Hunt the Wumpus
wumpus.rv:1.0.1
9.7 KB
20 Jul 2003
A REBOL version of a retro text game. Just for fun.
author: Gregg Irwin