World: r3wp
[!REBOL3-OLD1]
older newer | first last |
Geomol 12-Feb-2008 [5765] | A buddhist would then argue, that when you own nothing, you're not afraid of loosing anything, but that might be a tad too extreme. :-) |
BrianH 12-Feb-2008 [5766x2] | Try owning nothing and living through a Chicago winter :) |
(I know, you can rent, but that costs money too) | |
Henrik 12-Feb-2008 [5768x2] | Geomol, remember the L'easy campaign a few years ago about owning nothing and renting everything? |
I like that philosophy sort of, but it sucks for products I like and want to keep forever. | |
Geomol 12-Feb-2008 [5770] | hehe, yeah. I don't like to owe someone, so L'easy is not for me. |
Henrik 12-Feb-2008 [5771x2] | that's true |
but I hate losing things, it's a dilemma. :-) | |
Kaj 14-Feb-2008 [5773] | I suppose we're assuming material ownership here. I've converted my material goods into goodwill in the past years and feel pretty good now that it can't be taken away from me :-) |
Henrik 14-Feb-2008 [5774] | that's a good move, Kaj |
Ingo 15-Feb-2008 [5775] | Will R3 Richtext support "hot links"? I mean links which are able to open files / links in other applications, or run a Rebol function when clicked? Something like: view [ text [ "More info on " link http://www.rebol.org". Clickable " action "text." [print "You clicked me!"] ] |
Henrik 15-Feb-2008 [5776] | yes |
Ingo 15-Feb-2008 [5777] | Now that's a clear answer, Thanks ;-) |
Henrik 15-Feb-2008 [5778] | not sure if it's going to be exactly like that though, but there will be hot areas for text, where you can do some kind of action. |
Ingo 15-Feb-2008 [5779] | This looks like the easiest way for me, but if there are better ones, I won't complain. |
Ingo 20-Feb-2008 [5780] | What do you think about the following addition to trace? trace/log %file which would write trace output to a file, so it can be reviewed later, sent by email, ... |
Gabriele 20-Feb-2008 [5781] | echo %file ? |
[unknown: 5] 25-Feb-2008 [5782] | anyone know if alias will be updated in REBOL3 to support paths? I would like to do something such as: alias 'find/any "myfind" Currently, the alpha that I have gives an error that says: ** Script error: alias does not allow path! for its word argument |
BrianH 27-Feb-2008 [5783] | No, nor should it. ALIAS is just for aliasing words to other words, primarily for internationalization. What you want is function wrappers, made easier with the APPLY native function in REBOL 3. |
[unknown: 5] 27-Feb-2008 [5784] | Yeah I do that now with stuff such as: >> myfind: func [s v][find/any s v] >> myfind "God is Great" "G?e" == "Great" I'll look into 'apply as I have been wanting to dig deeper into what REBOL3 is offering. |
Henrik 6-Mar-2008 [5785] | http://www.hmkdesign.dk/rebol/files/4b1cf5b6f8dbd87dfc957a59e16dcf4e-107.html so now we can do a little bit of skinning :-) |
james_nak 6-Mar-2008 [5786] | Henrik, that is sick (meaning very good). |
Henrik 7-Mar-2008 [5787] | now things are moving. yesterday: select new skin after closing and opening window. today: switch between multiple skins on the fly in the same window. tomorrow: .... multiple skins simultaneously in the same window. :-) |
Louis 7-Mar-2008 [5788] | Are rebol2 core programs going to work on r3? Is another alpha of r3 about ready to be released? |
Henrik 7-Mar-2008 [5789x3] | the next R3 release will be unicode based. It will not be very compatible with R2 programs. A few scripts and one-liners will run. |
Louis, you may have read about it, but at one point there was even a discussion that R3 could not be called REBOL anymore, due to the numerous changes in the language caused by Unicode. It was decided not to change it. | |
so yes, there will be many compatibility issues, but it will definitely be for the better. | |
Louis 7-Mar-2008 [5792x2] | I remember that. I wrote r3 because it's easier. :>) Perhaps it should just be called 3. That is even easier to write. |
Will we have another alpha soon? | |
Henrik 7-Mar-2008 [5794x2] | as soon as the Unicode internal alphas are debugged, yes |
I don't know if the next VID3 will make it in there. View does not yet support unicode, AFAIK. | |
Louis 7-Mar-2008 [5796] | Unicode in core is what I'm wanting to play with for now. Thanks for responding. |
Henrik 7-Mar-2008 [5797] | you're welcome |
Jerry 15-Mar-2008 [5798] | REBOL 3 Datatypes and Typesets http://rebollovesjerry.blogspot.com/2008/03/blog-post_15.html |
[unknown: 5] 15-Mar-2008 [5799] | Nice! You put together that blog nicely. Your illustrations are excellent. |
Jerry 15-Mar-2008 [5800] | Thanks Paul, I am doing my best. |
[unknown: 5] 15-Mar-2008 [5801] | :) |
yeksoon 17-Mar-2008 [5802] | Jerry, I'm actually reading your blog to improve my Chinese. I guess it's a 'side-effects' . |
Jerry 17-Mar-2008 [5803x2] | And I am actually reading Carl's blog to improve my English. It is a side effect for sure. |
>> probe first jerry-rebol-blog/readers == [self yeksoon] | |
JohanAR 21-Mar-2008 [5805] | I wrote a lengthy post, hoping to start a constructive discussion on how we could increase Rebol's popularity and enbiggen (I know it's not a real word, but I didn't want to use "increase" twice in one sentense :P) it's userbase. I hope this is something more people are thinking about now that Rebol 3 is imminent. Please have a look at http://www.reboltalk.com/forum/index.php/topic,1513.0.html (I'm not trying to draw people away from Altme, but I think there's a need for a good Rebol forum too! :)) |
RobertS 23-Mar-2008 [5806] | ; a wee difference people probably noticed otr is documented ; R2 >> form first datatypes =="end" ;R3 >> form first datatypes == "end!" ; there is also a difference with get ; R3 >> t: 42 >> get 't >> get :t >> get t ; in R2 only the first is not an error |
BrianH 23-Mar-2008 [5807x3] | ; In R3 >> get 42 == 42 |
Interesting. I wonder if that is intentional. | |
; In R3 >> a: context [b: 42] == object! >> get 'a/b == 42 ; In R2 >> a: context [b: 42] >> get 'a/b ** Script Error: get expected word argument of type: any-word object none ** Where: halt-view ** Near: get 'a/b | |
btiffin 26-Mar-2008 [5810x3] | from !Altme Anyone that wants to take part in the testing that is required for REBOL3, drop a note here and we can synchronize what words are in need of a test case file. Don't worry, there are many. All we need to avoid is redundancy (well not really as more tests are infinitely better than no tests.) If you are keen to start, of the word dictionary; I'm in the A's. :) So if you start at D or E of F we probably won't collide. |
Carl's preferred method are small focused tests. and: [ [equal? 1 and 1 1] [error? try [1.0 and 1.0]] ; and is not expected to handle decimal! ] etc... for the gament of 56 types by 68 actions that REBOL needs to handle for us. The test case files usually focus on few actions with lots of various types. Note; A lot of the tests can be based on R2. The basic operators need to function at or beyond R2, so an R2 test that fails R3 is important. I'll find out if the basic-test-engine.r script these case files are based on is for public consumption for those that want ot help out. It really is a fair grunt of typing and thinking about edge cases (after all the baby step core cases) | |
Note; with the recent blog post; this basic-test-engine.r may wel become part of the build-basic-test-engine-scripts.r reflective test generator. As Carl points out; these are not better than human written. They may cover more bases but still require a lot of attention to detail. My interest in all this is mainly to keep Carl and RT away from the potato peeling work, freeing them for building new things. :) | |
Graham 27-Mar-2008 [5813x2] | Are we going to see a 'currentpoint type of word for 'draw in R3? something that will tell us where we are on the drawing surface? |
This is for using draw to do a print preview. | |
older newer | first last |