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.

Paul
27-Dec-2009
[3318]
Or I should say execution requirements of the script.
joannak
27-Dec-2009
[3319]
Id rather see it like

REBOL3[
	Normal headers here, as much as you feel the need
]
Paul
27-Dec-2009
[3320x3]
So  needs would be used with Stamp as this:

REBOL [
    Title: "My Coolest Program"
    version: 1.0
    Stamp: 'R3
    Needs: [2.0 ODBC]
]
I don't really have a problem with the REBOL3 way.  It seems this 
was discussed before and some valid concerns were raised but I don't 
recall what they were.
The problem I do see with using REBOL3 is that you then need to use 
REBOL3.1 etc... as new versions come out.
joannak
27-Dec-2009
[3323x3]
Thatīs true.  but I tend to belive it will be highly unlikely there 
will be as much important groundbraking changes on moving from 3.0 
to 3.1 as is from 2.6 to 3.0.
My point behind this forward/backward compatibility chat is primarly, 
that I'd like to see a way to stop average user on accidently loading 
old scripts on R3.  I'm sure the top-100 gurus of Rebol can dance 
their way around differences at will, but at the moment R3 (and R3/view) 
is released there will (hopefully) be considerable number of new 
users for Rebol.


Secondary would be giving an idea of a toolkit ( lint like script 
for Rebol  or perhaps some debug-mode at runtime? )  that would allow 
developer to see which parts of the code needs to checked/rewritten 
for R3 compatibility.
I do admit I have not searched trough old posts (blogs, vikis, archives. 
whtever is available) to see if this is obviously an old issue (and 
not necessary to talk again?).
shadwolf
27-Dec-2009
[3326x2]
other problem is the retro portablity 
....
all the scrpts made accross the 10 last years usng REbl 2 wll then 
not be usable with R3 ... Ans this have been discussed lke 2  years 
ago when carl proposed to do a major verson upgrade that was wth 
the discuton arund the "Because no one knows it  do i change rebol's 
name ?". It was sad to say that rebol after 10  yeas was stll in 
the underground limbus....
Sunanda
27-Dec-2009
[3328]
Many non View scripts will be portable with no, or little, change. 
This article discusses my earlier conversion experiences:
   http://www.rebol.org/art-display-article.r?article=j26z
Graham
27-Dec-2009
[3329]
Is this based on a small sample of your own scripts?  Any largish 
scripts tested yet?
Steeve
27-Dec-2009
[3330x2]
Well my motto is a little different.
structural complexity allows  functional simplicity

Wich means, more you make your code compact and fast , more your 
code is reused.
(sorry, wrong thread)
Graham
27-Dec-2009
[3332]
Seems to contradict the idea of using the least powerful language 
...
Steeve
27-Dec-2009
[3333]
i was discussing about "writing easy to understand mezzanine" again 
 "compact and fast but maybe hard to understand mezzanines"
Graham
27-Dec-2009
[3334x2]
if your code is slow, can always speed it up by running a faster 
cpu :)
machine cycles are cheap .. brain cycles expensive
Steeve
27-Dec-2009
[3336]
but at some point, if your code is too slow and too huge, it will 
not be reused, so that you'll lost your investment
Graham
27-Dec-2009
[3337x2]
if your code is not maintainable it will not be re-used either.
Or, you'll have a job for life!
Steeve
27-Dec-2009
[3339]
the scalability is also linked to the compacness.
joannak
27-Dec-2009
[3340]
Suanda, it was partially your article (alongside CS Rebol3 blog) 
that got me wondering loud about potential need of tools/flag/tag 
related to R2/R3 differences. I'll move some thougths about this 
to Advocacy.
Ladislav
28-Dec-2009
[3341]
Peter: "All 824 pass under 2.5.6." - then I would say, that the tests 
are biased in favour of R2 2.5.6, since I have lots of tests failing 
in 2.5.6
PeterWood
28-Dec-2009
[3342]
The 824 tests are unit tests of the production Rebol.org system which 
still runs in 2.5.6. So in that sense they are biased in favour of 
 2.5.6. My point was that many of them still work unchanged under 
R3.


The two main reasons that I started to build the Rebol.org unit tests 
was that they would help stop bugs being introduced when the code 
is enhanced and also help when it comes time to upgrade the version 
of Rebol that Rebol.org uses.


Sadly, I haven't written anywhere near the number of tests yet to 
reach my objectives.


(By the way, I wrote most of the tests before R3 was announced; I've 
recently converted them to a test framewoirk that also runs under 
R3.)
Ladislav
28-Dec-2009
[3343x2]
Joanna: "My point behind this forward/backward compatibility chat 
is primarly, that I'd like to see a way to stop average user on accidently 
loading old scripts on R3." - this issue already exists even in R2 
- there already are scripts, that work in older versions of R2, but 
not in the newest one (ask Peter, how many of his tests have problems 
in the latest R2), and, vice versa, some scripts written for the 
newest R2 don't work in older versions
Shadwolf: "all the scrpts made accross the 10 last years usng REbl 
2 wll then not be usable with R3" - if that is a statement, than 
it is demonstrably false
joannak
28-Dec-2009
[3345]
It's refreshingly humiliating starting to get some clue  how little 
I know about Rebol and related stuff (AltMe for example) ..  :-)
Gregg
29-Dec-2009
[3346]
I occasionally forget how refreshing REBOL is. As soon as I have 
to work with somehting else, I remember. :-)
joannak
3-Jan-2010
[3347]
Good example of short simple goodie that will twist oneīs mind if 
one has not used to things like lisp, sheme and forth.. It took me 
a moment to realize what's the point in this one. but I think I got 
it..
 
 a: func [x] [print x] 
 b: func [] [a: 42]
 a b


As found from http://www.rebol.com/docs/changes.htmlat section 3.8
Reichart
3-Jan-2010
[3348]
This is a great example of where these docs NEED to be a WIKI!


Then we can come along and break this down, give more than one example, 
and put notes and dicussion (chat) with it.
BrianH
3-Jan-2010
[3349]
Yeah, that's why we've started doing so. Two, one official one for 
the manuals, one community one.
Reichart
3-Jan-2010
[3350]
How about start by taking this current entire HTML doc from Carl, 
and simply turn it into a WIKI.
If he give his permission, then it is that easy.
BrianH
3-Jan-2010
[3351x3]
Joanna, the reason for that is that REBOL has 3 different types of 
argument
Sorry, hit the wrong key
Reichart, we did that for R3 already, and it is one of the plans 
for the next month for R2. Thanks for pointing out that the changes 
doc needs to be in the R2 manual wiki as well.
Reichart
3-Jan-2010
[3354]
Cool, can you post a link to that?
BrianH
3-Jan-2010
[3355x2]
The plan or the finished product?
For R3 the wiki is at http://rebol.com/r3/docs/- for R2 it will 
likely be at http://rebol.com/r2/docs/when it's done this month.
Reichart
3-Jan-2010
[3357]
Yes, the first one was exactly what I was looking for.

So can anyone update this wiki?
BrianH
3-Jan-2010
[3358x2]
There is also a community-run MediaWiki site at http://www.rebol.net/wiki/Main_Page
Anyone with an R3 chat account with enough rank can update the official 
manual. You get rank by knowing what you're talking about and not 
being a jerk who wants to mess things up. Not difficult criteria 
to achieve, so far.
Reichart
3-Jan-2010
[3360x2]
Shame... to much of a barrier to entry.

Rather, everyone should be allowed to post anything.

A moderator should be able to push stuff to some "sideline" (not 
delete though).  This will simply keep the s/n high.
When REBOL is no longer a clique, more people will will feel like 
they are "welcome" to join in.
BrianH
3-Jan-2010
[3362]
That is what the community-run site is for.
Graham
3-Jan-2010
[3363]
It's spam protection
Reichart
3-Jan-2010
[3364]
(for the European's here http://en.wikipedia.org/wiki/Clique)
BrianH
3-Jan-2010
[3365]
That's why we have two wikis, so the manual can become more official, 
like a book. We only want answers in the manual. We have other places 
for questions: The community wiki, chat, CureCode.
Steeve
3-Jan-2010
[3366]
clique is a french word Reichart ;-)
BrianH
3-Jan-2010
[3367]
REBOL is big in France :)