rebol2 Questions
1
Solved
How to remove the default title bar on rebol?
2
Solved
Using the REBOL/View 2.7.8 Core, I would like to prepare a view layout beforehand by automatically assigning words to various layout items, as in the following example.
Instead of
prepared-view: ...
1
Solved
I am using Rebol 2.7.8.3.1. I am trying to escape an @ symbol in my url, but it is not working. I have also tried manually escaping it, but that does not work either.
I have tried the following:
...
2
Solved
I searched a lot on Google as well as Stackoverflow. I could not find How to get Cookies (or in general, The HTTP Headers)from a Webpage and then edit it and send it back?
[I know how to make POST...
2
Solved
Apparently un-catchable error while toying around with Rebol/Core (278-3-1) to make a kind-of web-server to serve a static text, containing a redirect link to a new service location.
The specific ...
1
Solved
Rebol 2 stopped working on Ubuntu after upgrading to 15.10.
I am getting error-
./rebol
./rebol: error while loading shared libraries: libXaw.so.7: cannot open shared object file: No such file or ...
3
I'm interested in searching on a lot of long strings, to try and hack out a sed-like utility in rebol as a learning exercise. As a baby step I decided to search for a character:
>> STR: "abc...
1
An annoying problem I'm having with the REBOL3 REPL is that it won't accept multi-line statements. For instance, I would like to type "some_obj: make obj! [" , hit enter, and then continue the stat...
3
Solved
In rebol I have written this very simple function:
make-password: func[Length] [
chars: "QWERTYUIOPASDFGHJKLZXCVBNM1234567890"
password: ""
loop Length [append password (pick chars random Lengt...
2
Solved
This works at the shell level:
>> a: "hello"
== "hello"
>> get to-lit-word "a"
== "hello"
But within a function like this:
f: func [ arg1 ] [
v1: get 'arg1
? v1
v2: get to-lit-w...
1
Solved
I want to run Rebol2 /View on an Ubuntu 14.04 server to be able to load a shared library (which apparently /Core cannot do).
I have managed to install all the required dependencies, but now I susp...
4
Solved
I usually program by functions in an "instinctive" manner, but my current problem can be easily solved by objects, so I go ahead with this method.
Doing so, I am trying to find a way to give an ob...
Cephalochordate asked 7/10, 2013 at 15:56
4
Solved
I am trying to save a few string values into a block so that I can save that block to a text file. I am getting these values from a form using VID.
One way to do this would be to simply save strin...
2
Solved
I know you can't use caret style escaping in strings for codepoints bigger than ^(FF) in Rebol 2, because it doesn't know anything about Unicode. So this doesn't generate anything good, it looks me...
Gsuit asked 25/2, 2013 at 22:44
1
Solved
1
I've been trying to access a site with REBOL using the site's API, but I'm having problems. The API call expects a custom header and a request in XML format. I've been trying with read/custom, but ...
Stenography asked 1/1, 2012 at 3:49
3
Solved
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
© 2022 - 2024 — McMap. All rights reserved.