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

World: r3wp

[!REBOL3-OLD1]

kib2
4-Feb-2009
[10581]
That's why I really like Rebol/Factor philisophy.
BrianH
4-Feb-2009
[10582]
bbl
kib2
4-Feb-2009
[10583]
BrianH: I'm interested in studying Rebol with the parse dialect. 
Do you know good tutorials about it ?
Janko
4-Feb-2009
[10584]
There are 3 links to good websites in Parse channell , from Saturday
kib2
4-Feb-2009
[10585]
Janko: thanks, I have to check them!
Henrik
4-Feb-2009
[10586]
So... now Carl has compiled R3 for OSX.
PeterWood
4-Feb-2009
[10587]
That's great. When will it be available?
Henrik
4-Feb-2009
[10588x2]
I haven't asked. He posted less than 30 mins ago. Probably same time 
as the Linux version.
and now it's also running on his Linux router :-)
Graham
4-Feb-2009
[10590]
What distro?
yeksoon
4-Feb-2009
[10591]
R3 for OSX is for Intel only ...:(
Pekr
5-Feb-2009
[10592]
yeksoon - what? I expected R3 running on Linux or OS-X not sooner 
than maybe in one year, and you are unhappy, that PPC ancient architecture 
is not supported yet? :-)
Henrik
5-Feb-2009
[10593x2]
The OSX version won't let me log in to chat. I keep getting "invalid 
command or arguments".
never mind, I forgot to type the user name. :-) it's been a long 
time since I last had to log in.
Will
5-Feb-2009
[10595]
can't belive it.. R3 for os x so cool 8)
Kaj
5-Feb-2009
[10596]
Basically the same as a year ago, but it includes RebDev now
BrianH
5-Feb-2009
[10597]
Lots of core changes, many new mezzanines, some new bugs, some old 
(don't know which the DIR? bug is).
btiffin
5-Feb-2009
[10598]
Janko;  It you are diving into Cheyenne RSP, make sure you give QuarterMaster 
a look see.  http://www.ross-gill.com/QM/

Chris, like Nenad, is counted among the unsung heroes of the world, 
in my humble opinion.
Janko
5-Feb-2009
[10599]
btiffin: thanks for letting me know, I was checking out QM a little 
and Chris has helped me few times here already... but about the frameworks.. 
I don't like to use (mvc) frameworks , in any language
[unknown: 5]
5-Feb-2009
[10600]
I agree Brian, Chris is definately one of the REBOLers I most respect 
as well.  He has done great stuff with REBOL.
Pavel
6-Feb-2009
[10601]
load %dev.jpg returns error load-jpeg has no value, must be defined 
by hand somevhere?
Henrik
6-Feb-2009
[10602]
Pavel, jpeg loading is not supported yet. this will be available 
through media types, which are not yet done.
Pavel
6-Feb-2009
[10603]
This means it is not possible to run old demos any way?
Henrik
6-Feb-2009
[10604]
I better let BrianH respond to that one. I'm not sure how LOAD has 
changed since early R3 versions.
Pavel
6-Feb-2009
[10605]
In early public Alpha the GOB demo has been running nicely
BrianH
6-Feb-2009
[10606x2]
LOAD has gotten more compatible, but I left the reference to LOAD-JPEG 
alone. If there is no more LOAD-JPEG function that is good to know, 
since the whole reeason for that function was to give us something 
until the media loaders were done.
You're right, it's gone. The new GUI uses Draw for its elements, 
so the loss might not have been noticed. I'll check.
Henrik
6-Feb-2009
[10608]
It's not entirely bliss yet, as there are problems with MAKE IMAGE!. 
Hence the strange blueish checkerboards in my screenshots of color 
sliders.
BrianH
6-Feb-2009
[10609]
Are you using REBOL to make the screen shots?
Henrik
6-Feb-2009
[10610x3]
No, this is internal to REBOL. RGB values are incorrect in the image 
data that is produced from MAKE IMAGE!.
it should be in curecode somewhere.
#504
BrianH
6-Feb-2009
[10613]
Please check. I need help testing graphics bugs - I'm not that good 
at recreating them. I'm much better with core bugs.
Henrik
6-Feb-2009
[10614]
it doesn't really need any graphics as you can study the problem 
in console :-)
BrianH
6-Feb-2009
[10615]
Yup, the problem still exists in current builds. Reviewed.
Henrik
6-Feb-2009
[10616x2]
also #505 and #503 should be reviewed
(also possible from console)
BrianH
6-Feb-2009
[10618x2]
Just did, and they look related. I think MAKE IMAGE! is hosed - it's 
probably a good thing we don't have LOAD-JPEG at this point.
As an alternative to DIR-EXISTS? and FILE-EXISTS? we could change 
EXISTS? so it returns more information.

; R3 version:
exists?: func [

    "If a file or URL exists returns 'file or 'dir, otherwise none."
    target [file! url!]
][
    select attempt [query target] 'type
]

; R2 version:
exists?: func [

    "If a file or URL exists returns 'file or 'dir, otherwise none."
    target [file! url!]
][
    unless error? try [
        target: make port! target
        query target
    ] [

        either 'directory = target/status ['dir] [target/status] ; To work 
        around a current incompatibility
    ]
]


EXISTS? could still be used in conditional code, with the exception 
of AND and OR, but would have more info if you need it.
Anton
6-Feb-2009
[10620]
(And AND and OR could still be done with ALL and ANY, probably what 
I would use in preference anyway.)
BrianH
6-Feb-2009
[10621]
I've almost never seen EXISTS? used with AND or OR, though I rarely 
see AND or OR anyways. You can always use FOUND? or TRUE? if you 
want to turn it into a logic value :)
Gregg
7-Feb-2009
[10622]
There are a couple *? funcs that don't return logic!, but the trailing 
? nearly always indicates a simple predicate. I can see how this 
might be useful, but also how it could trip you up. I can't complain 
too much though, since I've written my own *? mezzanines that don't 
return logic!.
Gabriele
7-Feb-2009
[10623x3]
my logic for xxx? is that it either means is-xxx? or get-xxx
eg. length? instead of get-length
(you are "asking" the object in both cases. "are you xxx?" or "what 
is your xxx?")
Geomol
7-Feb-2009
[10626x2]
I've always found AND and OR not very rebolish, maybe because they 
can be infix (operators), where ALL and ANY are prefix (like functions). 
And you often need parenthesis, when used infix:

>> or 1 = 2 2 * 2 = 4
== true
>> 1 = 2 or 2 * 2 = 4
** Script Error: Expected one of: logic! - not: integer!
** Where: halt-view
** Near: 1 = 2 or 2
>> 1 = 2 or (2 * 2 = 4)
== true
Somehow I feel better about ANY:

>> any [1 = 2 2 * 2 = 4]
== true
Oldes
7-Feb-2009
[10628]
and ANY is faster!
BrianH
7-Feb-2009
[10629]
Well, we really need the information returned by the EXISTS? function 
above, and my last attempt to get that information out in a R2-R3 
compatible way (the above *-EXISTS? functions) got a lot of complaints 
(mostly from Gregg, as I recall). This is hopefully a less annoying 
change, and is compatible now even without the 'dir tweak if you 
check against 'file instead.


My opinion of the *? functions that are meant to be predicates is 
that they should be usable as predicates, but don't necessarily need 
to be simple predicates. As long as you can use them in IF statements, 
they're fine. We have methods to convert from REBOL truth values 
to logic! if we need to.
[unknown: 5]
7-Feb-2009
[10630]
I don't understand the problem with the functions we have regarding 
this in 2.7.6.  Can someone summarize the issue?