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

World: r3wp

[!REBOL3-OLD1]

Oldes
25-Oct-2007
[5201]
I really don't undersant why there is so many people crying... I 
have Uniserve runing for several months without problems, parsing 
about 50 pages two times per day to provide culture informations 
in the city I live, I use Rebol to build PHP sites, Flash apps, as 
a proxy server as, a clasic system console and for so many every 
day scripting and I really cannot imagine I would use something else 
than Rebol for such a job. And if you still think that you cannot 
do anything in R2 and have to wait for R3 to start, you can take 
a look for other technology. With computer languages it's same like 
with normal languages - the more languages you know, the better you 
are.
Pekr
25-Oct-2007
[5202x4]
Oldes - to whom are you replying to? :-)
I think that noone is waiting. We simply got to the stage of nearly 
extinction of entire REBOL humankind :-)
Our community was always passionate, but not big enough. Each nice 
and good project was mostly a one-man show. Then - those more skilled 
rebollers got rebol related jobs. That is very nice, but also has 
some side-effects. Those ppl nearly vanished from public radar. Where's 
Doc, Cyphre, Ladislav, Gabriele, Voker, Anton? Well, Gabriele could 
be probably excluded from the group, as he is active even on ml.
And yes, awaiting new release has always the same effect. Ppl are 
holding breath, as they think new thingy is about to be released 
next day :-) Once there is new release however, I believe ppl will 
come from their holes and we will hopefully see nice activity once 
again.
Henrik
25-Oct-2007
[5206]
If anything was to be communicated more than my suggestion to keep 
quiet, I would have liked to see very, very conservative schedules. 
Carl is always overly optimistic which is causing all this ruccus 
and damages the believability of RT.
james_nak
25-Oct-2007
[5207]
I just had a though this morning about just how different R3 is going 
to be syntactically from R1-R2. For those of you using it, is it 
grossly different? I think I should just continue to study the current 
Rebol since I still have plenty of jobs to do, however, I'm still 
curious what it looks like myself. Personally I doubt if it can be 
so new that what I've learned so far will not be useful but I'd like 
to hear it from those who have real-world experience.
Henrik
25-Oct-2007
[5208]
No the syntax is basically the same. There are no radical changes 
to syntax, but in the details, some things behave a little differently, 
some things are allowed and some are forbidden, but you only notice 
that after a while. If you use R2, you'll be able to use R3 immediately. 
The differences lies in the behavior of functions, dialects, etc.
james_nak
25-Oct-2007
[5209]
Excellent Henrik. That's what I needed to know. Most of my issues 
are not that R2 doesn't do something or another; they have to do 
with knowledge and experience. Thanks.
Henrik
25-Oct-2007
[5210x3]
Let me see if I can find an interesting mezzanine to post here...
move: func [
    "Move a value or span of values in a series."
    source [series!] "Source series"
    offset [integer!] "Offset to move by, or index to move to"
    /part "Move part of a series"
    length [integer!] "The length of the part to move"

    /skip "Treat the series as records of fixed size" ;; SKIP redefined
    size [integer!] "Size of each record"

    /to "Move to an index relative to the head of the series" ;; TO redefined
] [
    unless length [length: 1]
    if skip [
        offset: offset * size: max 1 size
        length: length * size
    ]
    part: take/part source length
    insert either to [at head source offset] [
        system/words/skip source offset
    ] part
]
not much difference, except for a new TAKE function. but there shouldn't 
be any trouble reading it for R2 users.
james_nak
25-Oct-2007
[5213]
That's what I'm talking about...

For me, the 'unless'  was new but I see that it was just what I was 
saying; I need to learn R2 better, because there it did in fact  
exist in R2. Interesting, thanks.
Henrik
25-Oct-2007
[5214]
just reading through the built in mezzanines in R2 can be very helpful.
james_nak
25-Oct-2007
[5215]
That one is not in the dictionary page. What's your best  method 
to view those?
Henrik
25-Oct-2007
[5216x2]
I usually use the word browser. It holds the newest and the most 
information.
but it did take a while for me to discover 'unless. There has also 
been debate whether it's needed. It makes code a very tiny bit faster. 
That's all.
james_nak
25-Oct-2007
[5218]
Ah, I forgot about that one. Thanks.
Henrik
25-Oct-2007
[5219x4]
I think this is also new:
>>>> head foreach [a b d: c] a [change d 'hello]
== [1 2 hello 4 5 hello]
damn... sorry
>> a: [1 2 3 4 5 6]
>> head foreach [a b d: c] a [change d 'hello]
== [1 2 hello 4 5 hello]
james_nak
25-Oct-2007
[5223]
Ohhh, but is that cool or what?
Henrik
25-Oct-2007
[5224]
posted a bit more about it on my blog.
Terry
25-Oct-2007
[5225x3]
What about the licensing?
Will users need  a pro type license to access libraries?
How does RT plan on generating revenue?
Henrik
25-Oct-2007
[5228]
I don't know much about licensing, but I don't think there will be 
any pro licenses anymore. It doesn't make sense when R3 can talk 
to any library to extend functionality, so it would be easy to get 
around that. Revenue? Ask Carl.
Terry
25-Oct-2007
[5229]
How about cost?
Henrik
25-Oct-2007
[5230]
free, I suppose
Terry
25-Oct-2007
[5231]
think and suppose make for lousy answers.
Henrik
25-Oct-2007
[5232]
thanks for the critique
james_nak
25-Oct-2007
[5233]
These are Rebol Inc questions.
Graham
25-Oct-2007
[5234]
Are we going to see an sctp implementation soon?
Henrik
25-Oct-2007
[5235]
well, I won't be making it. :-) I think these questions are better 
suited for later. I need to have a better look at devbase. I suspect 
(sorry, Terry) that it will be a 3rd party job.
Gabriele
26-Oct-2007
[5236]
actually those questions have been answered already, but some people 
like to pretend they didn't notice. R3 will not be sold. RT makes 
money in other ways. (eg AltMe 3)
Henrik
26-Oct-2007
[5237]
http://hmkdesign.dk/rebol/files/f5ab092787305f43a01d825826a9eb51-87.html
<--- small FAQ posted here.
Pekr
26-Oct-2007
[5238]
henrik, some bugs in your former blog, it might confuse ppl:


1) "Knowing FOREACH from R2, you can assign a word to each of those 
4 elements " .... while your block shows only [a b c]
2) >> a: [1 2 3 4 5 6 7 8 9]
== [1 2 3 4 5 6]

...is wrong too - you miss 7 8 in the ==[] block returned from console 
...
Henrik
26-Oct-2007
[5239]
fixed
james_nak
26-Oct-2007
[5240]
What a great faq Henrik. Thanks.
james_nak
29-Oct-2007
[5241]
Hey, I was just wondering. How big is Rebol3 now (in MB)? Not that 
it matters to me that much but I am curious.
Pekr
29-Oct-2007
[5242x2]
MB? :-)
rebhost.exe - 360KB, rebol.dll - 298KB
james_nak
29-Oct-2007
[5244]
Ohh, sorry : ) Wasn't thinking straight. (I am working on a PC, you 
know)
Henrik
29-Oct-2007
[5245]
some things are still outside of the R3 distribution, so it might 
balloon a few more kb.
james_nak
29-Oct-2007
[5246]
Still incredible, don't you think? So this thing might really work 
on a cellphone/pda?
Henrik
29-Oct-2007
[5247]
easily.
james_nak
29-Oct-2007
[5248]
Henrik, you know I am a big PS3 fan. How big of a deal would it be 
to port?
Henrik
29-Oct-2007
[5249]
I don't know yet much about the porting process, but so far it looks 
like a "fill in the blanks" process, where you need to provide functionality 
for events, timers, threads, etc. That and the documentation for 
whatever OS runs on the PS3. If Linux can run on it, R3 should work 
fine.
james_nak
29-Oct-2007
[5250]
It does so I hope that means my next "Amiga" will be a PS3.