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

World: r3wp

[!REBOL3-OLD1]

Steeve
16-Dec-2009
[20232x2]
Argh.... I felt vaguely, that there was an easier way

>> signed16: funco [n][32767 - n xor 32767]
>> signed16 to-integer #{FFFF}
== -1
32767 is found like this for signed 16bit integers:
2 ** 15 - 1
PeterWood
16-Dec-2009
[20234]
Ladislav: The behaviour of to-decimal appears to be different from 
the documentation for the decimal! datatype. That's why I think that 
to decimal! to binary! 10000.0 is a bug.
BrianH
16-Dec-2009
[20235x2]
What documentation? Link it so we can fix it.
A lot of the R3 manual is still R2.3 placeholder docs, not updated 
yet. We changed the behavior of TO throughout R3, so those docs are 
more likely to be wrong. We definitely need volunteers to help with 
the docs. For now, the most accurate documentation for a lot of topics 
is still CureCode.
Graham
17-Dec-2009
[20237x3]
Wow .. I see Amiga R3 build is pending !
Can we ask Carl for an ARM build?
not after the leg though ...
Pekr
17-Dec-2009
[20240x4]
I want WinMobile build :-)
I think that we should put empahsis on main OSes, and then on mobile 
ones - OS-X - dunno how to use anything like R3, unless the phone 
is jailbroken, WinMobile, Android, WebOS (Palm), Symbian(?), BlackBerry(?)
I think that mobile platforms are trend now. And it will be even 
more in upcoming years. New Google phone comes from HTC, it will 
be Snapdragon CPU (1GHz) based - lot's of power.
I think it is more important to support such platforms, than OSes 
like AmigaOS, MorphOS, Haiku ... otoh - those OSes are run by passionate 
hobbyists, who use phones too. So maybe if you make R3 available 
to those alternatives, they will be happy, and they will support 
us even on Phone platforms ...
Graham
17-Dec-2009
[20244]
I want embedded support :)
Henrik
17-Dec-2009
[20245x2]
I would like to see a 6502 build. Just for fun. :-)
http://www.cc65.org/
Pekr
17-Dec-2009
[20247]
As for Amiga related platforms, I would buy a NATAMI ... just for 
nostalgy reasons. It would be cool to have REBOL there :-)
Graham
17-Dec-2009
[20248x2]
I've still got a Plus/4 so it Henrik can get it going on 6502, and 
supply it on a 1541 360k floppy disk .. I'll try and run it
oops ... i think it might have been 170kb
PeterWood
17-Dec-2009
[20250x2]
BrianH: This page: http://www.rebol.com/r3/docs/datatypes/decimal.html
This one too - http://www.rebol.com/r3/docs/datatypes/binary.html
Claude
18-Dec-2009
[20252x3]
what can we expect from rebol version for christmass ?  rebol - core 
? rebol - core + gui ? rebol - core + gui + odbc ? rebol - core + 
gui + odbc +plugin ;-)
carl said => # The Core host environment will be released, with major 
updates each week until it is stable, acceptable, and documented 
for initial developers. I'll be "in the cave" until this is accomplished.

# Personally, I'd like to see the View host environment also released. 
This would enable development community progress to resume on graphics, 
the GUI, and also on ports to other systems, such as OS X. Maybe 
some Christmas candy, but no promises.
perhaps => rebol core + gui  for windows and linux ?????????
Pekr
18-Dec-2009
[20255]
Claude - your estimate is way too optimistic imo.
Claude
18-Dec-2009
[20256]
rebol core + gui only for windows then ???
Pekr
18-Dec-2009
[20257x6]
not at all. Christmass is in one week. I don't expect any other than 
internal development release of Host environment ...
Please read following document - you will see, there is still plenty 
of work to be done to achieve proper isolation ....

http://www.rebol.net/wiki/Host-Builds
There is some architecture change ahead - namely merging DELECT and 
command! interfaces. View will be moved out to this interface, so 
it will be kind of "external".

http://www.rebol.net/r3blogs/0299.html
... and then we still wait for much needed improvements to Extension 
interface. It needs to support Devices definitely. No easy way to 
do callbacks right now, etc.
As for my own guess - I think that at least whole January will be 
devoted to such development and testing ....
However - I would not be pessimistic. Quite opposite. Carl is right 
now working on very important aspects of R3. We have been waiting 
for it for 3-4 year and we are finally there ...
Claude
18-Dec-2009
[20263]
yes and i still belive in the christmass gift ;-)
Pekr
18-Dec-2009
[20264]
... so just push your callendar a little bit :-)
BrianH
18-Dec-2009
[20265x2]
PeterWood, I just checked the history on those pages and they haven't 
been modified since the initial import from the Core 2.3 manual. 
Thanks for flagging these for revision - I'll see about marking them 
as such.
Documentation writing and modification is the thing that we need 
the most help on, probably 50x the number of people we have working 
on the whole R3 project right now. For now, if there is some discrepancy 
between the manual and the behavior of R3, check CureCode. If it's 
not mentioned there then there is a good chance that the R3 behavior 
is intentional.
Maxim
18-Dec-2009
[20267]
Claude, Rebol needs to move ahead in a clear path... finishing rebol 
core, in the way it is headed will allow rebol view itself.


it will also make rebol core a very appealing platform to integrate 
other tools into.  we're almost there but a few little things are 
still needed.
PeterWood
18-Dec-2009
[20268]
I would be happy to try and help with the documentation but the problem 
I, and possibly, many others face, is knowing what is the correct 
behaviour to document. I could only assume that the behaviour as 
demonstrated by the current Alpha is the one to be documented. I 
fearl that is too big an assumption to make.
BrianH
18-Dec-2009
[20269]
Well, if you have any questions that aren't covered by CureCode, 
ask them here, in R3 chat, or post them in CureCode. Keep in mind 
that a ticket being dismissed in CureCode is nothing to be taken 
personally - we like those tickets because they serve as documentation 
of design decisions, especially in their comments.
Jerry
19-Dec-2009
[20270x2]
Prime Numbers Peroformance Test: REBOL(r3-a96) vs. Java(jdk1.5)

For getting primes < 5000, Java is 6 times slower than Java
For getting primes < 100000, Java is 30 times slower than Java
correction: REBOL is 6 ...  REBOL is 30 ...
Rebolek
19-Dec-2009
[20272]
What is your code for getting primes?
Jerry
19-Dec-2009
[20273]
REBOL []

get-primes: funct [ max-value [integer!] ] [
    case [
        max-value <= 0 [ 
            []
        ]
        max-value = 1 [
            [1]
        ] 
        true [
            primes: make block! 10000
            append primes 1
            for i 2 max-value 1 [
                is-prime: true
                foreach prime next primes [
                    if zero? i // prime [
                        is-prime: false
                        break
                    ]
                ]
                if is-prime [
                    append primes i
                ]
            ]
            primes
        ]
    ]
]


print dt [ print [ "there are" length? get-primes 100000 "primes" 
] ]
Rebolek
19-Dec-2009
[20274]
Thanks
shadwolf
19-Dec-2009
[20275]
i said some years ago when R3 was announced  that we wouldn't have 
it before 2010 ...  once again  I'm sad to be right...
Pekr
19-Dec-2009
[20276]
and?
shadwolf
19-Dec-2009
[20277]
and? no R3  before 2015 fear my predictions  :P
Pekr
19-Dec-2009
[20278]
and?
shadwolf
19-Dec-2009
[20279]
and pekr likes to say "and?"
Pekr
19-Dec-2009
[20280]
R3.0 is gonna be released in 2010, so what is your point with 2015?
BrianH
19-Dec-2009
[20281]
Jerry, the inner FOREACH loop bind/copies its code block with every 
iteration of FOR - this is a lot of overhead. Use FORALL instead.