r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!REBOL3]

BrianH
5-Feb-2011
[7460]
I like Gabriele's solution, especially with FIND being an action.
Henrik
5-Feb-2011
[7461]
that's ok
Robert
5-Feb-2011
[7462]
Isn't this inconsistent?

>> to-word "d"
== d

>> to-word #"d"
** Script error: expected word! not char!
** Where: to to-word
** Near: to word! :value
BrianH
5-Feb-2011
[7463]
Yup. TO doesn't support all conversions, but from chars makes sense 
to support.
Robert
5-Feb-2011
[7464]
Ok, what to do? Create a CC ticket?
BrianH
5-Feb-2011
[7465]
Yup. Make it a Wish, for TO conversions from char! to word!.
Robert
5-Feb-2011
[7466x2]
I need a login...
Submited
GrahamC
8-Feb-2011
[7468]
Seems the Color Nook can run Android 2.2 ( aka Honeycomb ).  And 
R3 is now running on Arm.  What's to do to get it running on Android?
Andreas
8-Feb-2011
[7469]
2.2 is froyo, honeycomb will be 3.0
GrahamC
8-Feb-2011
[7470x2]
ok, still there are going to be a lot of cheap Android tablets out 
there...
pity we can't have Rebol OS running on this cheap hardware
Robert
8-Feb-2011
[7472]
Port the host-kit.
BrianH
8-Feb-2011
[7473]
See the Android group here for details.
Pekr
8-Feb-2011
[7474]
Unless it is official, it should be regarded being not official. 
Carl still needs to start regular communication at least on blogs, 
or R3 Chat, to his devs. Putting it other way around - where can 
one download r3.dll for Android?
BrianH
8-Feb-2011
[7475]
A Linux shared lib would do. But no download has been announced, 
even privately.
Henrik
12-Feb-2011
[7476]
Has anyone considered doing an extension for LibHaru? This could 
be useful.

http://libharu.sourceforge.net/
GrahamC
12-Feb-2011
[7477x2]
there's already a rebol library for this
rebol2
Henrik
12-Feb-2011
[7479x2]
Found it... but it would be nice with an R3 version.
RebHaru looks fair, but it could use a dialect
GrahamC
12-Feb-2011
[7481]
See PDF group on RebHaru
Henrik
12-Feb-2011
[7482]
Carl just made an internal test release of A111.
RobertS
12-Feb-2011
[7483]
Carl has a post to his rebol.net  "R3 FrontLine"  blog about looking 
for GitHub code submissions ... says only sees those of Oldes ... 
no comments to that post ...
Andreas
12-Feb-2011
[7484]
-> blog chat
Rebolek
15-Feb-2011
[7485]
It seems that copy/deep doesn't work on map! Is it known problem?
BrianH
17-Feb-2011
[7486x4]
I'm experimenting to determine the exact syntax of words in R3, and 
see whether there are any undiscovered bugs. Just sticking to ASCII 
for now - due to http://issue.cc/r3/1230- but things look promising 
so far. I'll convert the results to PARSE rules.
Found two bugs so far and one undocumented issue (or possible bug).
And an expansion of another bug (http://issue.cc/r3/1478).
Put the parse rules in a comment here: http://issue.cc/r3/1302
Kaj
17-Feb-2011
[7490]
Nice work
BrianH
17-Feb-2011
[7491]
I'm hoping to get a grammar for the whole language. We would then 
be able to convert it to various syntax highlighting engines, analysis 
tools, whatever. Figuring out the R2 syntax will take some different 
tricks though, as it doesn't have TRANSCODE and proper binary handling. 
I eventually hope to be able to write a TRANSCODE for R3 and R2 in 
REBOL source form, for documentation and analysis purposes.
Oldes
17-Feb-2011
[7492]
There is a bug in R3, which will be very difficult to find... I was 
parsing very large XML files and have got invalid chars in the result. 
I cannot reproduce it unfortunatelly.
PeterWood
17-Feb-2011
[7493x2]
That sounds both very worrying and a challenge - how big were the 
XML files? Were they utf-8 encoded? Did you verify the utf-8 encoding 
in the XML or could it have contained invalid utf-8 sequences?
If you can give a few hints, I'll see if I can reproduce the bug.
BrianH
17-Feb-2011
[7495]
For that matter, were you parsing them as string or binary data? 
If binary, were you using string constants?
Oldes
17-Feb-2011
[7496]
It will not be easy as I do other operations as well.. like image 
resizing using extensions etc.. but it's strange... parsing as string.
BrianH
17-Feb-2011
[7497]
Might be memory corruption then.
Oldes
17-Feb-2011
[7498x4]
hm.. I can reproduce it... and it must be GC related, because when 
I set recycle/off, the result is correct
But it's possible, that it's my extension which is the reason.. I 
guess. How much safe is creation binaries from C level and passing 
them to REBOL?
Hm... now I 've got System Error #1301: invalid datatype 176
with recycle/off it's fine... it must be related to my extensions.
Andreas
17-Feb-2011
[7502]
sounds like a memory corruption problem
Kaj
17-Feb-2011
[7503x4]
Creating and returning binaries is supposed to be safe if you do 
it in one go
Is there any place in your extension where you create more than one 
series in one command?
Is there any place in your extension where series are passed between 
commands and are supposed to survive between calls?
The act of processing large data may very well trigger such a vulnerability, 
because otherwise no garbage collection would happen to be done
Robert
20-Feb-2011
[7507x2]
Is this a known bug?

>> 2**3
** Syntax error: invalid "integer" -- "2**3"
** Near: (line 1) 2**3
Is this a known bug?

>> 2**3
** Syntax error: invalid "integer" -- "2**3"
** Near: (line 1) 2**3
Pekr
20-Feb-2011
[7509]
Robert - spaces?