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

World: r3wp

[!REBOL3-OLD1]

Henrik
14-Oct-2009
[19017]
It looks to me like some GUI functions like 'handle-events and 'base-handler 
that belong inside View are also available in the main context and 
are also listed in the docs. I assume those functions will disappear, 
once the GUI goes into a module.
RobertS
14-Oct-2009
[19018]
I posted a note to the R3 blog article on a89 as I cannot get it 
to return a prompt on Win XP SP3  - I have tried getting r3-a89.exe 
to consume a script and tried not only under cmd shell but also under 
cygwin
Henrik
14-Oct-2009
[19019]
I don't have an issue with it.
Pekr
14-Oct-2009
[19020x2]
2.100.90 released ....
.... actually it will be released in something like hour. We have 
last hour to decide, if we eventually want to rename parse 'loop 
to 'while ....
Pekr
15-Oct-2009
[19022]
Modules in binary compressed format - http://www.rebol.net/r3blogs/0274.html
Henrik
15-Oct-2009
[19023]
A90 now also for Linux and OSX
RobertS
16-Oct-2009
[19024x2]
Both fine on my Untu and XP. Whatever.. BTW, was there ever a chat 
about assert {}   I am spending some time in Groovy and thinking 
about the errors in a Rebol book: the Manny Groovy book was generated 
so at least the code examples run ... groovy uses assert a a good 
deal ... which got me to thinking about REBOL  comment {}  which 
seems to suggest that we could have an assert {}  which is evaluated 
only when a REBOL option is set. and have it default to OFF
Oops - so funny - I went to look at rebol.org for any use of an assert 
but there it is  assert  in the R3  docs   missed it ...  but can 
it be flipped not to run?  Or would you just  set assrt: :assert 
 and wrap it?
Maxim
16-Oct-2009
[19026]
assert is used like any/all to quickly provide integrity tests.
RobertS
16-Oct-2009
[19027]
we had assert back in Smalltalk SUnit ... ;-)
Pekr
17-Oct-2009
[19028]
Let's comment on the compression format - http://www.rebol.net/r3blogs/0275.html
Steeve
17-Oct-2009
[19029]
To not to be able anymore to reduce this [( )] at this [ ], is really 
annoying.

I have to clean my reduced blocks from unset! values returned by 
called functions.

Really, I don't  understand such modified behavior in R3, what's 
the gain, what the purpose ?
Maxim
17-Oct-2009
[19030x2]
WHAT?  this is totally unusable.  ALL of my code depends on the  
"reduce this [( )] at this [ ]" philosophy at some point.
is the same with compose?
Steeve
17-Oct-2009
[19032x3]
No, it's ok with compose, but i can't change the reduced blocks to 
composed blocks, it would destroy the sake of my project
I just want Carl or someone explain to us what is the gain of such 
change.
It's just causing wrackings currently
I see absolutly no interest.
Maxim
17-Oct-2009
[19035x3]
this is really annoying and like you, I see absolutely no real-world 
usage ... it sounds more like an oversight on carl's behalf.
like... oops ... forgot to remove unset values in reduce native.

in the meantime, you can just make reduce a mezz , call the native 
inside of it and remove unset values... at least its going to be 
done automatically... although it will slow down your code a bit.
you should post on curecode for this.
Steeve
17-Oct-2009
[19038]
it's what i doing currently, a remove-each of the unset! values
Maxim
17-Oct-2009
[19039]
did you post this to curecode?  carl will definitely give aheads 
up on the issue quickly.
Steeve
17-Oct-2009
[19040x2]
(Arghh !!! Stupid busy Altme, it lost my note again)
Not a bug
Maxim
17-Oct-2009
[19042]
why is this not a bug?
Steeve
17-Oct-2009
[19043x2]
it's an willing change of the design from Carl, long time ago.
It's not recent.
but he never explained such change, IIRC
Maxim
17-Oct-2009
[19045]
posting it to curecode is a good way for him to see that a change 
isn't beneficial in real world use.  he will comment it there, and 
it will be usefull as a reference for further users... I did a search 
for reduce on curecode, found a few things... but since curecode 
serves as a reference, this would be a good place to put your grievance.
Steeve
17-Oct-2009
[19046]
IIRC, it's to optimize the dialect's parsers using the function DELECT
Maxim
17-Oct-2009
[19047x2]
all changes are well explained in curecode tickets when people complain 
about them.
some tickets have VERY in-depth explanations of R3 quirks wrt R2. 
 this would be a good addition... cause it surely will come up again.
Steeve
17-Oct-2009
[19049]
but i would rather prefer, a special reduce function for his dialects, 
instead of enforcing us with such drawback
Maxim
17-Oct-2009
[19050]
suggest your preference.  as I said... curecode tickets are all handled 
seriously.  I'll second your grievance if you put it up there.
Steeve
17-Oct-2009
[19051]
I must first calm down :)
Maxim
17-Oct-2009
[19052]
hahaha
Steeve
17-Oct-2009
[19053x2]
See, why i can't remplace reduce by compose.
I use such rule to parse draw blocks
>> box: [ 'box  origin destination]


when i use this rule, it's auto intialising the variables origin 
and destination.


The interesting thing is that, when i change the content of the variables 
somewhere else in my code,
i can revert back the content of the draw block, just doing a:
>> reduce ['box origin destination]


You see, i use the same block of defintion to parse and change-back 
a draw block.
i try to do bi-directional parser, if i can name it like that...
Maxim
17-Oct-2009
[19055]
ah nice idea  :-)
BrianH
17-Oct-2009
[19056]
It is beneficial for real-world use, because it makes the length 
of the block returned by REDUCE predictable. REDUCE [ three expressions 
] should return a block of length 3. A *lot* of code depends on this 
in R3. If you want unset to go away, use COMPOSE or REMOVE-EACH.
Gabriele
18-Oct-2009
[19057]
where do you see R2 removing unset! in reduce?
Steeve
18-Oct-2009
[19058x3]
Arghh, It appears that I was arguing about a very old feature
I am not yet adapted to this change
I want a reduce/clean refinement T_T
Chris
18-Oct-2009
[19061]
Will map! have a literal notation?
BrianH
18-Oct-2009
[19062x4]
You can use the serialized notation with map!, but it won't otherwise 
have literal syntax.
#[map! [a: 1]]
Afaik, we don't have any characters left that can be used for delimiters 
to surround some kind of literal value. [], (), <>, and {} are taken.
We don't want to go the Perl 6 route and start using Unicode symbols 
:(
Maxim
18-Oct-2009
[19066]
but a prefix can be used to identify the delimiters, its already 
done by rebol in a few case... there surely is a combination left.