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

World: r3wp

[!REBOL3]

Graham
1-Jul-2010
[3550]
There's no unpaid activity
Henrik
1-Jul-2010
[3551]
People are waiting for the host kit.
BrianH
1-Jul-2010
[3552]
I'm busy again, and just chatted with Carl today about what I'm working 
on. For better or worse (mostly worse), that's unpaid.
Henrik
1-Jul-2010
[3553]
Robert is pulling a lot of strings (namely by getting hold of all 
the right people, while they are not busy) to focus R3 development 
and I'm impressed that he was able to get Carl in on it. It's what's 
needed now to move forward at greater speed, just like any other 
serious development effort. Robert's motivation is to deliver products 
as soon as possible and there is nothing strange about that.
BrianH
1-Jul-2010
[3554x2]
For the main things I was working on, I am now unblocked. Thanks, 
Robert!
ANd Pekr, who has also done a lot of behind-the-scenes work.
Graham
1-Jul-2010
[3556]
It's so sad that after 3-4 years there's so few people working on 
R3
Henrik
1-Jul-2010
[3557]
Graham, I just don't get your criticism. We are MOVING. That's key.
Graham
1-Jul-2010
[3558]
I'm not criticising .. just making an observation
Henrik
1-Jul-2010
[3559]
well, you can't see everything right now.
Graham
1-Jul-2010
[3560]
I can only observe what I see!
BrianH
1-Jul-2010
[3561]
OK. We will weigh your observations accordingly :)
Graham
1-Jul-2010
[3562]
Reminds me of Get Smart
BrianH
1-Jul-2010
[3563]
Loved that show :)
Pekr
1-Jul-2010
[3564]
BrianH: I did nothing :-) I am just rebol politician, lobbying here 
or there :-)
BrianH
1-Jul-2010
[3565]
Politicians are underrated. Though your role was more diplomat, messenger 
or matchmaker :)
Henrik
1-Jul-2010
[3566]
Please don't call Pekr a politician. That would require Pekr not 
to know what he's doing and generally not really care about REBOL. 
:-)
Pekr
1-Jul-2010
[3567]
:-) .... yes, but one aspect remains ... you work, I talk :-)
Henrik
1-Jul-2010
[3568x2]
>> a: [a 1 2 b 3 4 c 5 6 d 7 8]
== [a 1 2 b 3 4 c 5 6 d 7 8]

>> head move/to/skip find copy a 'd 1 3
== [a 1 d 7 8 2 b 3 4 c 5 6]


Looks like a bug to me. [d 7 8] should be at offset 1 rather than 
3. This is also present in R2 forward.
sorry, plain R2.7.7, not R2 forward.
BrianH
1-Jul-2010
[3570x3]
Nope, 2.7.7 has the R2/Forward code. I see the bug, though have a 
question: Should the index obey the skip?
When /to is not specified and /skip is, offsets are multiplied by 
the record length, so you are counting in records. This is intentional, 
to allow you to work with fixed records without messing them up. 
If we keep that behavior then the index will be the record index, 
not the series index. It's not a difficult trick, but it should be 
noted.
If you agree that this makes sense, I'll write up the CureCode entry 
and submit the fix to all three locations.
Robert
1-Jul-2010
[3573x3]
It's so sad that after 3-4 years there's so few people working on 
R3

 - I can take it if it would be "...working with R3". That's true. 
 People should use it and tell what's the most critical (that means, 
 what blocks you from making a product) thing that needs to be done 
 in R3.
It's not about x-mas and what we would like to see in R3. I have 
a very simple priority list: What do we need to get to scale R3 development 
and avoid Carl being a bottelneck? What do we need to do to use R3 
to do a commerical app?
And, yes, I'm very happy that things move on and the support from 
all helping to make it happen. The team size is good, the paces is 
good and the results are good.
Graham
1-Jul-2010
[3576x3]
What's blocking is that questions don't get answered because no one 
knows the answer
Maybe we should have our own stackoverflow for questions on R3 so 
that unanswered questions are obvious?
Or, just ask them on SO ...
BrianH
1-Jul-2010
[3579]
For now I'll assume that Henrik's answer to my question is yes.
Robert
1-Jul-2010
[3580]
Graham, can you give an example question?
Graham
1-Jul-2010
[3581]
Sure.  If the remote server closes a connection, can you re-use the 
sub-port to re-open the port?
Robert
1-Jul-2010
[3582]
Have you tried it?
Graham
1-Jul-2010
[3583]
Yes.  And no it didn't work.
Robert
1-Jul-2010
[3584]
Do you have a workaround?
Graham
1-Jul-2010
[3585x2]
Well, I guess I can just recreate the subport and try it that way, 
but I would like to know why ....
Are there flags or other things that need to be reset or what is 
the issue?
Robert
1-Jul-2010
[3587x2]
Ok, as the current focus on R3 is to get the infrastructure and basic 
things done first, these detailed questions (even if valueable) are 
not our focus. But this doesn't mean, that it's a showstopper for 
you to use R3.
How about adding a category in CureCode to collect these so it's 
not lost?
Graham
1-Jul-2010
[3589]
that's up to doc I guess ...
Robert
1-Jul-2010
[3590]
My goal is to get R3 out of alpha, beta to release. To get the GUI 
to a state that you can create apps with it.
BrianH
1-Jul-2010
[3591]
Like the Issue type?
Graham
1-Jul-2010
[3592]
Well, a GUI a nice, but the working out network details seems a little 
more basic :)
Henrik
1-Jul-2010
[3593]
BrianH, you are right, my response is "yes".
BrianH
1-Jul-2010
[3594]
Ticket submitted, R2/Forward being fixed now, the rest to follow.
Henrik
1-Jul-2010
[3595]
cool
Pekr
1-Jul-2010
[3596x2]
as for apps - GUI, networking, DB drivers ....
some things can be postponed (e.g. db drivers), if 'call would support 
/wait/output at least ...
BrianH
1-Jul-2010
[3598x2]
Fixed in R2/Forward 2.100.80.2, check it out.
Submitted R2 and R3 fixes, they should be in the next versions of 
each.