• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

AltME groups: search

Help · search scripts · search articles · search mailing list

results summary

worldhits
r4wp0
r3wp9
total:9

results window for this page: [start: 1 end: 9]

world-name: r3wp

Group: All ... except covered in other channels [web-public]
Pekr:
2-Aug-2011
That's nice :-) I do remember names like Jeff Kreis, Andrew Martin, 
Frank Sievertsen, Romano Paolo Tenca, and I also most probably forgot 
some other nice rebollers :-)
Group: Core ... Discuss core issues [web-public]
MikeL:
10-Jun-2005
You could use Andrew Martin's map function to achieve this

do http://www.rebol.org/library/scripts-download/arguments.r; 
Needs

do http://www.rebol.org/library/scripts-download/map.r; Instantiate
map func [a][2 * a] [1 2 3 4 5 6] ; supply the function to map
>>[2 4 6 8 10 12]
Louis:
29-Jul-2006
Graham, I don't know if that is what you had in mind or not.   I 
think I got the printer function from Andrew Martin.
Pekr:
1-Apr-2009
We had several good guys vanishing. Andrew Grosman, Adnrew Martin, 
Frank Sievertsen, Volker Nitsch, Romano Paulo Tenca - all skilled 
rebollers.
Group: Web ... Everything web development related [web-public]
Sunanda:
13-Feb-2007
Not quite an email address validator, but the REBOL.org uses an email 
address spotter [contributed by Andrew Martin] to find and obsfucate 
email addresses in ML messages, etc.

You could use the same basic parse patterns to identify / validate 
email addresses. 

I haven't checked RFC 822 in detail, so it is likely that Andrew's 
code is more liberal than the actual spec, but it could be a starter.
Would you like a copy of the function?
Group: !REBOL3-OLD1 ... [web-public]
Anton:
31-Aug-2006
How about taking a page from Andrew Martin's book: rename REJOIN 
-> JOINS ? ie.  JOIN joins two arguments, JOINS joins any number 
of arguments.
Or it could also be ENJOIN (N-JOIN).
Pekr:
25-Aug-2009
Hehe, trying to google something about catching errors, I found Elan, 
Andrew Martin discussing the topic with you, Anton :-) Almost forgot 
those guys we once had ....

http://www.mail-archive.com/[rebol-list-:-rebol-:-com]/msg02468.html
Group: Postscript ... Emitting Postscript from REBOL [web-public]
Graham:
24-Jun-2008
from Andrew Martin

Printer: func [Text [string!] /Page] [
    secure [
        %//prn [allow write]
    ]
    write %//prn Text
    ; Append Carriage Return (CR) and Page Feed.
    if Page [write/binary %//prn "^(0D)^(page)"]
    Text
]
Group: Core ... Discuss core issues [web-public]
Sunanda:
19-Nov-2010
Andrew Martin chose ASSOCIATE for that sort of thing:
   http://www.rebol.org/view-script.r?script=associate.r