Tagged Questions

Rebol is a modern interpreted language where code is data. It isn't object oriented, but has objects. It isn't a functional language but behaves like one. There are virtually no syntax rules or immutable keywords, making it ideal for developing domain-specific "dialects".

learn more… | top users | synonyms

10
votes
14answers
1k views

Anyone used the Rebol programming language? What do you think of it?

If you are using it, what are you using it for? Do you use it purely as a personal toolset/language or are you using it in a broader sense (i.e. many others use it, or the result of it) ...
4
votes
4answers
292 views

What should I call a REBOL function that does list comprehensions?

REBOL has no built-in way to perform list comprehensions. However, REBOL has a powerful facility (known as parse) that can be used to create domain-specific languages (DSLs). I've used parse to create ...
2
votes
2answers
318 views

Is REBOL still alive?

I've really developed a fondness for the undeservedly obscure language REBOL, and in fact I'm trying to teach it to my programming languages class this semester. However, the web site of sample REBOL ...
2
votes
2answers
101 views

How to chain make object with method call?

Let's say I have WORLD: make object! [ people: make Object! [] cars: make Object! [] factories: make Object! [] create: func[][print "new world"] ] How can I chain with the ...
2
votes
2answers
101 views

How to mix together string parsing and block parsing in the same rule?

It's cool that Rebol's PARSE dialect is generalized enough that it can do pattern matching and extraction on symbolic structures as well as on strings. Like this: ; match a single "a" character, ...
2
votes
1answer
81 views

Rebol - HTTP response headers

Where does Rebol (R2) save the HTTP response headers after a call to the read function (which just seems to return the page content)?
2
votes
2answers
104 views

rebol parse problem

simple parse example: ab: charset "ab" parse "aaa" [some ab] ; == true if i wanted one-liner (define ab in place), how do i do it? parse "aaa" [some [charset "ab"]] ; ** Script Error: Invalid ...
2
votes
4answers
127 views

How value? function really works?

Isn't it weird that ask-params: funct[config-file [file!] default-class-name default-fields][ probe value? 'class-name input either (value? 'class-name) [ probe class-name ][ ] ] ...
2
votes
3answers
340 views

Reading large Binary files fails in Rebol

The following Rebol code fails due to an out of memory error: read/binary http://mirror.bytemark.co.uk/ubuntu-releases/lucid/ ubuntu-10.04-desktop-i386.iso How can I use Rebol to read ...
2
votes
1answer
58 views

Problem when using overrided function in Rebol

I have created this cloneset: :set set: func[word [word!] value][ if/else (type? get word) = list! [ print "list is immutable" ][ cloneset word value protect word ] ] protect 'cloneset ...
2
votes
1answer
51 views

How to protect Object Fields in Rebol?

O: [a: 1 b: 2] Protect 'O does only protect O symbol not O/a. How do I also protect O/a ? Thanks.
2
votes
1answer
100 views

Rebol parse: dealing with whitespace and copy var

I read chapter 15: http://www.rebol.com/docs/core23/rebolcore-15.html#section-8" spacer: charset reduce [tab newline #" "] spaces: [some spacer] rule: ["a" spaces "b" spaces "c"] parse/all "a b c" ...
2
votes
3answers
2k views

What is a good tutorial on the QuickTime API for MS Windows?

I'm working on a project that has to read and manipulate QuickTimes on Windows. Unfortunately, all the tutorials and sample code at the Apple site seem to be pretty much Mac specific. Is there a good ...
2
votes
3answers
215 views

Dynamically adding words to a context in REBOL

Imagine the following REBOL code: foo: context [bar: 3] I now have a context foo in which 'bar is defined. How can I dynamically inject a new word into this context? Is it possible? I've tried: ...
1
vote
1answer
45 views

How to probe rebol layout but just get original spec

Let's take: panel1: layout [ origin 8x8 h2 "Panel 1" field "Field 1" field "Field 2" button "The Answer" [alert "I know nothing."] ] If I probe panel1 I got a bunch of lines ...
1
vote
1answer
38 views

Why do I need to initialize var before redirecting shell with call/wait/output

If I try the following code: call/wait/output {webrequest http://google.com login password} content REBOL complains with an error. Instead, I have to use the following: content: "" ...
1
vote
2answers
32 views

How to access directories and files of an intranet in Windows using Rebol?

How can I access directories and files of an intranet in Windows using Rebol? How can I read a file such as this? : \\name\dir\sub-dir\file.ext I have tried: read %//name/dir/sub-dir/file.ext ...
1
vote
1answer
53 views

How do I get the radio button value in Rebol?

I tried this but colors is unknown (I searched all over internet amazingly not one single person has documented it !): V: view layout [ across label "Colours:" r: radio of 'colours l: ...
1
vote
1answer
58 views

Rebol library access

Isn't library access free in R2? I'm running 2.7.8.4.2 on Ubuntu and R2 complains when I try to load Dobeash's sqlite.r, I see this message: ** Script Error: Feature not available in this REBOL ** ...
1
vote
1answer
156 views

Can Rebol do this?

I'm attemtping to rewrite a C# application in Rebol to see first hand the levels of productity achievable. I was curious to know before I jump in head first whether: The parse function can do ...
1
vote
3answers
81 views

Using direct values in Rebol?

I'm a Rebol newb. I'm often finding situations where for some reason an expression needs to have a value as a variable instead of "direct use." I suspect that I'm just not using a switch or ...
1
vote
1answer
103 views

REBOL metaprogramming questions

I'm very new to REBOL (i.e. yesterday). I am using the term "metaprogramming" here, but I'm not sure if it is accurate. At any rate, I'm trying to understand how REBOL can execute words. To give an ...
1
vote
3answers
75 views

Is there a help system for REBOL/View?

As a REBOL newbie, I'm really finding the HELP command useful, and I've found a lot of great documentation online. That's really not so true for REBOL/View, though. The REBOL/View VID Developer's ...
1
vote
1answer
79 views

Changing the color of a Rebol button

I want to ask multiple choice questions in Rebol. Possible answers will be on buttons. I want to turn a button red when it is clicked and it is the wrong answer. When the correct button is pressed, I ...
1
vote
1answer
166 views

Huge problem to parse this “simple” html page

I'm trying to parse http://www.google.com/finance?q=INDEXDJX:.DJI and I can't achieve it I can't see why: symbol_list: ["GOOG" "AAPL" "MSFT" "INDEXDJX:.DJI"] foreach symbol symbol_list [ url0: ...
1
vote
3answers
197 views

Does Rebol really have an equivalent for javascript prototype property?

Gregogy has made a post about rebol and javascript here http://blog.revolucent.net/2009/05/javascript-rebol.html But as I'm going deeper into comparing javascript and rebol, I can't see what's the ...
1
vote
3answers
125 views

Is there finer granularity than LOAD/NEXT for reading structured data?

Imagine that I have a long file of Rebol-formatted data, with a million lines, that look something like REBOL [] [ [employee name: {Tony Romero} salary: $10,203.04] [employee name: {Marcus ...
1
vote
3answers
75 views

How do I refer to variable in func argument when same is used in foreach

How can I refer to date as argument in f within the foreach loop if date is also used as block element var ? Am I obliged to rename my date var ? f: func[data [block!] date [date!]][ foreach ...
1
vote
2answers
134 views

Why Rebol engage doesn't work?

I have added keyboard event but none is detected why ? plot: [ pen green line 5x404 5x440 pen gold fill-pen 0.255.0 box 3x424 7x418 line 10x396 10x422 pen gold fill-pen 0.255.0 box 8x418 12x402 ...
1
vote
1answer
63 views

How to control the space between boxes in rebol draw?

Question update: I'm almost there, just missing dotted line style for the grid. grid: [1100 600] step-grid: 5 max-n-points: grid/1 / step-grid x-axis-border: 20 Y-margin: 10 max-random: 1000 ...
1
vote
2answers
165 views

Can rebol parse function be able to create rules for parsing css2 / css3 fully?

Are there limitation to rebol parse function power ? Would it be capable of parsing the whole css2 / css 3 spec or will it encounter theorical impossibility to form some rules ? Update after ...
1
vote
1answer
70 views

Rebol anonymous function behavior is weird

My anonymous func test below is executed only once: repeat i 5 [ func[test][ print test ] rejoin ["test" i] ] I am obliged to name it to be able to execute it 5 times as expected: repeat i ...
1
vote
2answers
80 views

How can 2 variables pointing to the same Rebol list have different pointers?

First of all, is it correct to use the term pointer when talking about the internal index in a list? Consider the following Rebol code: a: [1 2 3 4 5 6 7 8 9] a: at a 4 b: a a and b both point to ...
1
vote
2answers
57 views

Why the difference in usage between 'clear' and 'unset' with Rebol lists?

Given a list: a: [1 2 3 4 5] Why is it clear a to clear the list and unset 'a to unset it? I would have expected both clear and unset to consistently take either a or 'a as their arguments.
1
vote
1answer
47 views

cannot set proxy password in restricted corporate environment even programmatically

When I change login/password through User settings, they don't persist. So I set it programmatically proxy: system/schemes/default/proxy set in proxy 'host xxx.yyy.www.zzz set in proxy 'port-id ...
1
vote
3answers
105 views

Why rebol fails with stackoverflow api?

If I type in a browser (see http://stackapps.com/questions/2/getting-started-with-the-api) : http://api.stackoverflow.com/1.0/stats it returns { "statistics": [ { ...
1
vote
1answer
1k views

How to configure CGI on IIS 7?

I did this as explained here but it was for IIS 6 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=39&archiveflag=new I also activated 32 bits for application pool as explained ...
1
vote
1answer
67 views

How to get header value when source is in memory

Let's consider this header: REBOL [ Title: "Rebodex" Date: 23-May-2010 Version: 2.1.1 File: %rebodex.r Author: "Carl Sassenrath" Modification: "Rebtut" Purpose: "A simple ...
1
vote
3answers
105 views

How to create newline in a rebol block?

let's say I have a config.txt which contains: "param11" "param12" "param21" "param22" I'll load it in memory with config: load %config.txt I can save it back with save %config.txt ...
1
vote
2answers
70 views

How to replace all pixels of some color in a bitmap in Rebol?

Let's say I have a picture, I want to create some variations by changing a color. How to do this ? I don't want to apply color filter to a picture, I want to change pixels color pixel by pixel by ...
1
vote
1answer
68 views

Is it possible to get anti-alias for Font in Rebol Graphics VID?

Anti-alias works for Draw but I can't see how to get anti-alias for font : is it possible anywhow (including hacking rebol vid ...) because font in the picture generated below is not nice: view ...
1
vote
2answers
59 views

change/part doesn't work as expected with parse

According to http://www.rebol.com/docs/core23/rebolcore-15.html You can use change/part to parse and replace but that doesn't work well with this where I just try to replace the block <mytag > ...
1
vote
1answer
84 views

Problem with recursivity in rebol

I have a block on which I want to iterate recursively folders: [ Chrome [ content [ preferences prefpages ] ] icons [ default ] ...
1
vote
0answers
31 views

Is there any library that ressembles a workflow engine in Rebol?

Have made a search on google http://www.google.com/search?q=workflow+engine+rebol Just saw some invocation but nothing concrete. So really nothing exists ? That's weird, Rebol would be good at that ...
1
vote
2answers
57 views

get in Object 'Func with Refinement in Rebol

Let's say I have o: context [ f: func[message /refine message2][ print [message] if refine [print message 2] ] ] I can call it like this do get in o 'f "hello" But how can I do ...
1
vote
1answer
31 views

Rebol: How do I know where the error comes from when executing multiple files (like libraries)

Rebol tells the error and the line but it doesn't say in what source file, is there a way to get this info from a system variable or else (not only the starting script) ?
1
vote
1answer
35 views

In Rebol is it possible to clean up some global words from memory?

I know that the global words is limited to something like 2500 words. What if I fear to reach the limit, I would like to create and destroy words on the fly with something like unset: would that solve ...
1
vote
1answer
64 views

Rebol switch and type?

Why do I have to cast typeof to string with switch to make it work ? This doesn't work: typeof: type? get 'optional switch typeof [ word! [ print "word" ] string! [ ...
1
vote
1answer
75 views

Rebol and unset (optional) parameter

I want to create a do-libs generic function to automatically load a bunch of libs listed in rebol header files. I want to make the parameter optional but in that later case it doesn't work why ? ...
1
vote
0answers
59 views

How do I calculate a REBOL 3 module checksum?

It's possible in REBOL 3 to calculate a SHA1 module checksum. When REBOL loads a module, it compares its checksum against the checksum of the loaded module, and if the two do not match, an error is ...

1 2 3 4 5