World: r3wp
[!REBOL3]
older newer | first last |
shadwolf 22-Jul-2010 [3996] | BrianH but tideing the faith of rebol with the faith of moonlight is it good ? |
BrianH 22-Jul-2010 [3997] | Silverlight and Moonlight are good. If you want to make a REBOL browser plugin, they are the thing to beat. Flash is not as good, and not really competition if it weren't for the installed base. |
shadwolf 22-Jul-2010 [3998x2] | yeah but most of people use flash ... mostly because of the tools and what you can do with the tools rather than of what the result perf will be and what the language structure is |
BrianH don't forget that mostly flash is used by people who don't know what an algorithms is and which i call the "click nation" | |
BrianH 22-Jul-2010 [4000x2] | Yeah, so we can't compete based on quantity, we have to compete based on quality. |
R3 is best as its own thing. But it can be used to supplement applications in other languages, like Lua. Or it can be used to generate applications for other platforms, as a development tool. | |
shadwolf 22-Jul-2010 [4002] | could then moonlight and mono be interfaced with other side libraries like opengl can i make a part of my interface as an opengl display etc?? |
BrianH 22-Jul-2010 [4003x2] | Or we can use R3 to solve problems that need solving, where having a solution is more important than how. REBOL is great at solving problems quickly. |
With Silverlight/Moonlight, you don't need a side interface, it has a GUI. That GUI will be accellerated by OpenGL or whatever is available. With Mono, you can integrate anything. | |
shadwolf 22-Jul-2010 [4005] | brianh right ... to the problem can rebol display formated dynamic text using Draw/agg dialect it only took me a steeve and 3 yeart to apport the solution ... and lot of discutions ... |
BrianH 22-Jul-2010 [4006] | You really haven't been paying attention to what has been going on for the last few weeks, have you? With the host kit? |
shadwolf 22-Jul-2010 [4007x4] | and when you look at the solution that's so evident that you are amazed no one thought about that before ... mainly area-tc and viva-rebol are splitted in 3 you have the color text engine based on color-code.r carl script but instead of generating html it generates draw code in a block then it's rendered to a vid face using it's draw block for the ihm the feel block is used on the same vid face ... |
BRianH indeed R3 lost me like 10 month ago ... | |
and when i see carl saying i pause R3 and patch R2 i'm like stunned ... anyway ... | |
and having a proper resume of what is done is hard ... | |
BrianH 22-Jul-2010 [4011x3] | Oh, then this conversation is more off-topic in this group than I thought. Well, here's what you missed: - The R3 GUI is being actively developed by commercial developers, and it is much faster than the approach you just mentioned. - We have had a couple releases in the last week, with more to come. In other words, we're not stuck. - The GUI code has been moved to the host, and is thus open source. - Everyone involved is hard at work, communicating, and busy. This includes Carl. - All of your criticisms of the project are outdated. |
Check the other !REBOL3 groups before you make any suggestions to throw out a code base that is already being used for commercial development. | |
By more than one company, mind you. | |
shadwolf 22-Jul-2010 [4014x4] | BrianH great if that's the case ... |
but looking things changing perspective someitmes open new ways ... and i saw last carl's blog about having problems R2.7 with unbunt 10 for example and that's the kind of thing that I don't want R3 and that can be avoided if you don't have to port 10 times the code ... | |
i know i'm going of topic most of the time because i do'nt discuss what is in R3 but what could be in R3 or how R3 or futur rebol could be done what would be the gains etc... | |
and i clearly foresee the actual i port 10 times the code of rebol isn't a suitable way for futur... | |
BrianH 22-Jul-2010 [4018] | Keep such arguments to Advocacy then, or Other Languages if you want to find out about them. We're building something here. |
shadwolf 22-Jul-2010 [4019] | i will try so :) |
Maxim 22-Jul-2010 [4020] | does R3 have a mezz called 'LAST? similar to 'TAIL? I find it usefull... it returns if we are AT last item in a series. while [not last? series] [.... series: next series] |
BrianH 22-Jul-2010 [4021] | SINGLE? performs that function. |
Maxim 22-Jul-2010 [4022] | ahh yes. do you think that last? might be a viable official alternate notation? just as empty? is an alternate for tail? |
BrianH 22-Jul-2010 [4023x2] | Maybe - make a wish in Curecode :) |
Once the module system is revamped we can start working on making many of the mezzanines optionally included. We plan to clean up the namespace :) | |
Maxim 22-Jul-2010 [4025x2] | I just think that 'SINGLE? will hardly ever be used, as it doesn't fit well with the naming of all other series handlers. if LAST? where there, I think we'd use it naturally. since it fits it with TAIL? LAST FIRST, etc. |
I'll CC it. | |
BrianH 22-Jul-2010 [4027x2] | Suggest both alternatives: Renaming it, or making an alias. |
Carl suggested SINGLE? - he uses it (presumably). | |
Maxim 22-Jul-2010 [4029] | but he might not have tought of LAST? sometimes these little things escape us, since we implement this or that within a current "frame of mind" ;-) |
BrianH 22-Jul-2010 [4030] | The change would need to be backported to 2.7.8, so we need a ticket. |
Maxim 22-Jul-2010 [4031] | CC ticket added, #1636 |
Henrik 22-Jul-2010 [4032] | In fact, I suggested SINGLE? (see R3 chat #4330) and Carl took it up immediately. I use SINGLE? a lot. |
Maxim 22-Jul-2010 [4033] | not saying single be removed... its just like empty? and tail? they have different semantic meanings, but in rebol are equal in implementation. |
BrianH 22-Jul-2010 [4034x2] | ...more or less :) |
Good suggestion, Henrik :) | |
Maxim 22-Jul-2010 [4036x2] | as I stated in the ticket, 'LAST? should be none tolerant, whereas 'SINGLE? could stay strict as it is. |
hum... I thought ordinal functions had become none safe in R3? >> first none ** Script error: cannot use pick on none! value ** Where: first ** Near: first none (this is in A96) | |
BrianH 22-Jul-2010 [4038] | No, they are bounds safe. We want FIRST none to trigger an error. |
Ladislav 26-Jul-2010 [4039] | Originally I thought, that the FUNCT function was quite adventurous doing a deep search for set-words. But, after using it a couple of times, it really looks like it does what is useful most of the time. |
Graham 26-Jul-2010 [4040] | saves time .. |
Henrik 26-Jul-2010 [4041] | FUNCT is very nice. I love it. |
Graham 26-Jul-2010 [4042] | I wonder if we can do the same for use ... uset |
Henrik 26-Jul-2010 [4043] | CONTEXT would be close. |
Endo 26-Jul-2010 [4044] | @Graham: context [...] is not enough? |
Graham 26-Jul-2010 [4045] | Hmm.. could work :) |
older newer | first last |