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

World: r3wp

[I'm new] Ask any question, and a helpful person will try to answer.

BrianH
3-Jan-2010
[3386]
Yeah, the only barrier to entry into REBOL development will be the 
need to have a running version of REBOL :)
Graham
3-Jan-2010
[3387]
Brian has volunteered Stevee
Steeve
3-Jan-2010
[3388]
ahah, i could give it a try, a studied a lot the source in the past
BrianH
3-Jan-2010
[3389]
I plan to write an R2 chat client this month (with as much help as 
is made available). At first it will be a clone of R3 chat, but there 
is nothing in the DevBase server API that requires the clients to 
be in text mode.
joannak
3-Jan-2010
[3390]
Hmm I really shoudl try to use R3 , at least to see that chat..
Steeve
3-Jan-2010
[3391x3]
but i may
... need of a draft about all the api to exchange with the server
some functionalities are still missing to my mind
Graham
3-Jan-2010
[3394]
Awesome Stevee ... it will free up Brian to do other stuff
BrianH
3-Jan-2010
[3395]
If you can help, Steeve, or even get started on it yourself, go for 
it. I don't think there is an API doc yet - the API changes too much.
Steeve
3-Jan-2010
[3396]
currently we can't download a single message knowing his Id. We only 
can download all the base, and the remaining messages each time the 
client sync. Not a good system to my mind
joannak
3-Jan-2010
[3397]
Hmm.. I think I need to sart a new group here ... "I'm getting old 
and crumpy " :)
Reichart
3-Jan-2010
[3398x2]
Reichart, CHAT shouldn't be a barrier to entry. We are trying to 
make it more accessible.


The key to me here is once Carl "ok"s this one thing, then the rest 
of us can "help".
Joannak, LOL, agreed...
BrianH
3-Jan-2010
[3400]
It's kind of graduated to more of an inner circle thing nowadays, 
Reichart, but good point.
Reichart
3-Jan-2010
[3401]
Yup, I'm all for facism (truly, I think it has its place, and works), 
but only for moderators to control s/n, not to supress voices.
BrianH
3-Jan-2010
[3402x2]
The new development platforms of REBOL are all moderated.
We try to not suppress voices (except the wiki spammers on the rebol.net).
Reichart
3-Jan-2010
[3404x2]
we
 arleady do by the very nature of the input system...
I'm the co-founder of BIL (www.BILConference.com) , an open conference, 
the rule is "OPEN".  That simple.  Even from teh get go, my co-founders 
started trying to be "open" but controlling others.
It was really interesting... 



But, I STOOD STRONG on, let everyone do anything...  and... it worked, 
REALLY WELL.


That is not to say that as a group (mob) we did not "direct" people 
to help improve the s/n.
BrianH
3-Jan-2010
[3406x2]
(delay, phone call) I agree about the input system, definitely, which 
is one of the reasons I encourage people to write their own chat 
clients. I'm not too good at writing REBOL GUIs, and don't have a 
web server to host a client. DevBase could work very well with a 
web client interface, afaict, if someone wants to write one of those. 
Heck, it's scriptable enough to integrate with Qtask, in theory.
The current chat client interface works well enough for me, but that's 
likely an outlier thing.
Reichart
3-Jan-2010
[3408]
I guess what I'm really asking is, why is this not just like MediaWiki 
(which is behind Wikiepedia)?  That simple.
BrianH
3-Jan-2010
[3409]
The community wiki is running on MediaWiki.
Reichart
3-Jan-2010
[3410]
Are the docs (examples) for all words in REBOL (2, or 3) in that?
BrianH
3-Jan-2010
[3411]
Examples and docs, but it's not comprehensive in either the manual 
or DocBase yet. Needs work.
Reichart
3-Jan-2010
[3412]
Well, I'm not trying to be a pain here..... so I will leave it at 
this....


When...anyone, can walk up to any REBOL word, learn about it, add 
to it, talk about it, for all others to share in and learn from, 
then... I'm happy.
BrianH
3-Jan-2010
[3413]
Wikis need work too. Making them open doesn't magically get people 
to contribute their time. The wiki has been open for more than a 
year and only a few people contribute to it.
Reichart
3-Jan-2010
[3414]
Ok, point me to the word PARSE, on a wiki, where I can edit the page 
about it, or add my two cents, it is very possible I'm just blind 
here...
BrianH
3-Jan-2010
[3415]
Btw, thanks Fork for being one of the most prolific of those people 
these days.
joannak
3-Jan-2010
[3416]
Hmm.. To get back into noob level questions: Is it so that Rebol 
don't support recursion?  Or will some variant of Function allow 
it to call itself without hassle?
Graham
3-Jan-2010
[3417]
Rebol supports recursion from day 1 .. 10+ years ago
BrianH
3-Jan-2010
[3418]
http://www.rebol.net/wiki/Table_Of_Contents
http://www.rebol.net/wiki/Parse_Project

Someone was reorganizing the wiki recently with no understanding 
of the REBOL language, so a lot of pages were lost in the shuffle. 
I don't know where things are now. The price of being open, I guess. 
The new PARSE documentation hasn't yet been converted from an improvement 
project to documentation. Have at it :)
joannak
3-Jan-2010
[3419]
Ok.. This is one of those moments I shoudl have tried it ..
Steeve
3-Jan-2010
[3420]
ahah
Graham
3-Jan-2010
[3421]
>> countdown: func [ n ][ print n  if not zero? n [ countdown -1 
+ n ]]
>> countdown 10
10
9
8
7
6
5
4
3
2
1
0
Steeve
3-Jan-2010
[3422]
>> how: func [s][unless tail? s [prin to-char s/1 how next s]]
>> how [82 84 70 77]
RTFM== none
BrianH
3-Jan-2010
[3423]
Most of the other PARSE docs are strewn amongst the conversations 
where we just redid the whole thing lately. It was quite a project. 
Those discussions are in the blog comments, CureCode and that parse 
project wiki, very little in chat.
Graham
3-Jan-2010
[3424]
Steeve is not very tolerant :)
Steeve
3-Jan-2010
[3425]
Next discussion:  The Multi-dimenssional parsing proposal.
(to allow the parsing of 2 series at once with parallelism)
Graham
3-Jan-2010
[3426]
this topic does say "Ask any question ... "
Steeve
3-Jan-2010
[3427]
well, just a joke Graham
Graham
3-Jan-2010
[3428x2]
there's also the wiki book http://en.wikibooks.org/wiki/REBOL_Programming/Language_Features/Recursion
even one on http://en.wikibooks.org/wiki/REBOL_Programming/Parse
for those who feel the need ...
Gregg
4-Jan-2010
[3430]
Some things you don't notice from the inside, until you're on the 
outside again. In support of making things open: I've recently read 
up on a few technologies and, while their blog entries and such are 
very nice, there were a number of typos. I wanted to just correct 
these little things, but I can't. I can't help in a very small, controlled 
way without talking to someone first, setting up an account, getting 
permission of some kind, etc. And that's just too much trouble to 
do for more than a small number of sites. 


It will get better, and it shouldn't be too hard to have even simple 
rules to control anonymous edits, but right now things are often 
all-or-nothing.
Reichart
4-Jan-2010
[3431]
 To get back into noob level questions:
 


What is more noob than "is there documentation that explains things?"


Gregg, right, so in simple terms, REBOL is so small, and so much 
a clique... what do we have to lose by not just opening everything 
up? (Docs I mean).
BrianH
4-Jan-2010
[3432x3]
Accuracy.
Assming you meant "what do we have to lose by just opening everything 
up?"
If you meant what you said, then what we have to lose is appearances. 
We don't gain any help, just reputation.
Reichart
4-Jan-2010
[3435]
How is accuracy lost, I'm not suggesting unmoderated wikis, just 
ease of access?