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

World: r3wp

[!REBOL3]

GrahamC
8-Apr-2011
[7728]
What's untrusted code?  Stuff I wrote ? :)
BrianH
8-Apr-2011
[7729]
Stuff written by random people you don't know, like user extension 
scripts; R3 can't sandbox yet. For that matter, SECURE has been turned 
off since a109.
GrahamC
8-Apr-2011
[7730x2]
Can we compile R3 with our own schemes yet?
And if R3 stops now ... is there any advantage to R3 over R2 ?
BrianH
8-Apr-2011
[7732]
Sure, either mezzanine or host-embedded extensions. And loadable 
extensions too, while SECURE isn't working.
GrahamC
8-Apr-2011
[7733]
And this is the main advantage over r2?
BrianH
8-Apr-2011
[7734x2]
As for advantages, YMMV. For me, the improved PARSE, binary conversions 
that make sense, the map! type, the module system, the faster and 
more powerful loops, better error handling, and the increased consistency 
make R3 much easier to use. The extension model makes it more powerful 
- I always hated R2's library access model. But I don't do much GUI 
work in REBOL. R2 has database access that I use pretty often, and 
HTTPS support which I use rarely but it's important when I do. I've 
backported the most important missing functions from R3 to R2 in 
mezzanine form, though there is still some stuff I miss.
The improvements in 2.7.8 were pretty significant, so R2 is getting 
a lot more useful. I would love to have some kind of proper dialected 
binary conversion facility in R3 that could be ported back to R2, 
preferably compiled (generating conversion functions) - that would 
make it possible to have code like Red's compiler a lot more portable 
between R2 and R3, no explicit struct! use needed.
GrahamC
8-Apr-2011
[7736x2]
So, where to from here?
I can't invest any time in R3 without a fully working GUI and https
BrianH
8-Apr-2011
[7738]
That is the case for a lot of people.
Kaj
8-Apr-2011
[7739]
Between a rock and a hard place
Gregg
8-Apr-2011
[7740]
With a rope dangling just out of reach.
Kaj
8-Apr-2011
[7741]
That's good, then we can't hang ourselves ;-)
Gregg
8-Apr-2011
[7742]
:-)
GrahamC
8-Apr-2011
[7743]
we wait 6 months or however it takes for Carl to get back to work?
Kaj
8-Apr-2011
[7744]
Gallow's humour, we call that in Dutch
Gregg
8-Apr-2011
[7745]
Same here Kaj.
Kaj
8-Apr-2011
[7746]
Ah, didn't know that's also an English expression
Gregg
8-Apr-2011
[7747]
0MQ is a wedge for me, between the rock and hard place. If I can 
use that for messaging, pieces can be (re)written in any language.
Kaj
8-Apr-2011
[7748]
Yes
Geomol
8-Apr-2011
[7749]
And also a danish: galge humor
where galge = gallows
GrahamC
8-Apr-2011
[7750]
Enough of the me toos!
BrianH
8-Apr-2011
[7751]
I've already finished the major projects I was working on in R3 itself, 
like the module system; I can't start more without the protection 
bugs being fixed. My next stuff is all docs (modules and PARSE) and 
addons (that dialected binary conversion, plus maybe some schemes). 
What I really want to work on is Android, but I can start that work 
using Red for now.
GrahamC
8-Apr-2011
[7752x2]
I guess cURL solves the https
So, it's really waiting for the GUI team
Gregg
8-Apr-2011
[7754]
It sort of solves it for me. We're spoiled with everything built 
into R2.
BrianH
8-Apr-2011
[7755]
Has anyone tried making an R3 host that doesn't follow the standard 
program model? For instance, an application plugin?
GrahamC
8-Apr-2011
[7756x5]
Ok, to make it more usable .. we need to get the schemes finished
Any other show stoppers for the majority of users?
Was someone going to tackle the opendbx drivers?
We already have odbc, and a possible sqlite ...
I presume Linux users will want a native mysql driver
BrianH
8-Apr-2011
[7761]
Is the ODBC stuff in port scheme form, or a collection of functions?
GrahamC
8-Apr-2011
[7762x2]
It's a scheme
but presumably not usable from linux
Andreas
8-Apr-2011
[7764]
maybe w/unixodbc
GrahamC
8-Apr-2011
[7765]
Not as far as I know ...
Andreas
8-Apr-2011
[7766]
as for show stoppers, resolve has a serious crash bug on all platforms, 
not only osx
GrahamC
8-Apr-2011
[7767]
Maybe we need to get Carl to fix the real show stoppers
Andreas
8-Apr-2011
[7768]
that would be a big help
Kaj
8-Apr-2011
[7769]
Yes
GrahamC
8-Apr-2011
[7770]
Can we get a list together ?
Kaj
8-Apr-2011
[7771]
And the ODBC scheme is indeed using the Windows interface
GrahamC
8-Apr-2011
[7772x3]
I volunteer Andreas to draw up a list :)
I meant nominate :)
A prioritized list
Gregg
8-Apr-2011
[7775]
CALL is important to me. Not sure where that stands.
Andreas
8-Apr-2011
[7776x2]
CALL we can mostly do on our own, as extension.
(And get that merged back into the native later on.)