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

World: r3wp

[#Boron] Open Source REBOL Clone

Graham
8-Feb-2006
[41]
its crashed twice today with recycle bug for me.
Carl
8-Feb-2006
[42]
Yep, that's the good old one.
Ammon
8-Feb-2006
[43]
AltMe does crash once in a while but it actually crashes less frequently 
than any other IM I use and it provides a whole lot more in functionality.
Carl
8-Feb-2006
[44x8]
I only see it once a month or so.
Yes, everyone seems to ignore all the bugs in other programs, like 
Win32 itself. But,... not to get onto that track.
Back to the idea of voting or influencing.
There are three "kinds" of projects for us: R, D, and B.
R is research. Rebcode is an example. We do those to push a bit, 
because we know they require a lot of thought, plus user testing 
and feedback.
D is development. The normal day-to-day working on REBOL.
B is bug fixing. That's a special mode.
Anyway, we should shift groups. This is the wrong one. But, I am 
very interested in some kind of voting method.
[unknown: 9]
8-Feb-2006
[52x2]
is there any way that the community can 
vote" on what priorities it considers important ?"

..................yup.
Altme is buggy.

  Graham...........on that I have to call BS!  AltME has less bugs 
  in it that almost any multifunctional application I know of.  It 
  should get a bloody award.
JaimeVargas
8-Feb-2006
[54]
One thing worries me. AltME hasn't change much in the last two years. 
I haven't add anything beyond its basic functionality, however two 
major bugs have persited during this time:
- Recycle bug
- Losing postings
Ashley
8-Feb-2006
[55]
!AltME group?
JaimeVargas
8-Feb-2006
[56x3]
So, it is not perfect and this is not a contest about who has less 
bugs, but how can the supporting technology response quickly to address 
the problems that an end-user application has.
In two years those issues were not removed. Not new features were 
added. In the eyes of some developers that raises eyebrows.
(cloacking back to hack in orca)
Graham
8-Feb-2006
[59]
Reichart, this was in response to Carl saying effectively that Altme 
was bug free .. saying that some developers were able to work past 
perceived bugs.  This was not a criticism of Altme per se.. but to 
refute that assertion.
[unknown: 9]
8-Feb-2006
[60]
I'll answer t this in AltME.
JaimeVargas
8-Feb-2006
[61x3]
Orca can be found at trac.geekisp.com/orca
http://trac.geekisp.com/orcaclick on timeline to track progress

svn://svn.geekisp.com/orca if you want to download the develpment 
code
Back to my question does anybody care on Ops working on tuple decimal 
combinations?
Kaj
8-Feb-2006
[64]
I guess it would be nice but I wouldn't consider it high priority
JaimeVargas
9-Feb-2006
[65]
Any one wishing to monitor the advancement of orca on a daily basis 
can suscribe to this RSS feed.

http://trac.geekisp.com/orca/timeline?milestone=on&ticket=on&changeset=on&wiki=on&max=50&daysback=90&format=rss
Graham
9-Feb-2006
[66x2]
Firefox locked up on me when I tried that.
oh well, I reported the problem to microsoft.
JaimeVargas
9-Feb-2006
[68]
Strange it works here with my RSS reader (not a browser based one). 
You can find a direct link at the bottom of this page http://trac.geekisp.com/orca/timeline
Graham
9-Feb-2006
[69]
nice to see some mezzaines to check for different types of tuples 
eg. reserved local addresses, and multicast addresses while you're 
blazing in this area.
JaimeVargas
9-Feb-2006
[70x2]
I posted mezzanines for this sometime ago. I don't know in which 
version of rebol world. Any how, I will package them again and post 
them to rebol library.
I don't think I will be working on mezz for a while there is a lot 
to do in Orca.
Anton
9-Feb-2006
[72]
Jaime, what do you think the result of 1.2.3 + 0.5 should be ?  1.7.3, 
or 2.3.4  (rounding to nearest integer) ?
JaimeVargas
9-Feb-2006
[73]
Well. I implemented in orca the same behaviour found in rebol. Do 
you think that it should be changed?
Anton
9-Feb-2006
[74x2]
I hadn't even noticed that worked !
I would say - try to keep compatibility, while you are considering 
it now.
JaimeVargas
9-Feb-2006
[76x2]
BTW, Everybody is invited to contribute to Orca's development effort. 
Initially if you have a patch email it to me, and we will reviewed. 
Once the core team are comfortable with the quality of the contributions 
the author will be given repository access.
Finished support of tuples for all operator actions.

XOR OR and AND have slightly different behavior than REBOL when arguments 
are a tuple and a number. ie:

O> 1.2.1 xor 2015.345 ;== 222.221.222
R> 1.2.1 xor 2015.345 ;== 255.255.255


Which behaviour the community prefers? I believe orca's implementation 
is more correct, but we can change it.

Does anyone use such feature bitwise ops between tuples and numbers?
Joe
9-Feb-2006
[78]
It's great to find out about this project. It would help a lot if 
any of you know the developers of the two previous related projects 
(sievertsen.de - freebell.sf.net) and (softinnov.org - dockimbel 
- r#) and get them to contribute to Orca. It looks like orca is very 
close to getting some momentum !
Terry
9-Feb-2006
[79x2]
Carl has a point though.  Orca needs to be BETTER than Rebol, or 
at least as good.
I didn't pay RT $1200+ to help develop Rebol.  Forget that noize.
Sunanda
9-Feb-2006
[81]
Jaime thanks for asking...But there's not a simple answer.

The point I am about to make applies to any proposed variant in ORCA 
vs REBOL.


The problem with changing fundamental behaviour is that it makes 
it hard to port applications: think a few years ahead when ORCA is 
a fully operational REBOL clone, and (as an example) (unlike REBOL) 
runs on PDAs. I'd like to use ORCA so I can run an application in 
a PDA; but I want to use REBOL for all my other platforms. And I 
don't want to have to pick through code and/or support two source 
versions because of avoidable differences in behaviour.


On the other hand, an ORCA-only application might benefit from the 
"more correct" implementations of basic operations.


One possible way to square that circle is to have a set compatibility 
flag:
    system/orca/xor: false  ;; gets me REBOL XOR behaviour

I just have to wrap that in an 'attempt and I can keep a common source 
that will run under either.


[I appreciate that there may be performance issues doing it that 
way -- may be better to have compatibly options specified in an orca.r 
file that is only processed at start-up....I'll leave the details 
to the people doing the design]
[unknown: 9]
9-Feb-2006
[82x2]
I vote 1.7.3
But as Sunanda said, compatibility should win, and may I suggest 
deviations should be "extra parameters"
JaimeVargas
9-Feb-2006
[84x5]
Sunanda. I fully agree, and the reason for my asking. I will wait 
for a bit more input before deciding which route. An solution is 
to create rebol-compat mezz. That way you get the best of both worlds.
With only a penalty in performace for backward compatibility, specially 
when it is about correctness.
Terry, Out aim is to make Orca better than rebol, but first we must 
catch on ;-)
Joe, Both Dockimbel and Frank know about hte orca project and may 
decide to contribute, the project is open to anyone willing. I believe 
they are tied up with other commitments and may have their own plans 
for their clone efforts. I am interesting in collaboration and pragmatics, 
more that discussions. So Orca is open to anyone willing to collaborate 
;-)
I hope to see more skilled C programmers jumping at any point. But 
need more than programmers and designers. We need people documenting, 
testing, creating regresion tests, optimzing, etc.
Carl
9-Feb-2006
[89]
Maybe some of these folks can help out on the open modules that are 
part of REBOL 3.0 too. And, we could always use more tests, etc.
JaimeVargas
9-Feb-2006
[90]
I hope there is a lot of cross-pollination.