World: r3wp
[!REBOL3]
older newer | first last |
Henrik 13-Jan-2011 [7068] | (Carl is asking) |
GrahamC 13-Jan-2011 [7069x2] | Sorry for cross posting this in different channels over the last year https://github.com/gchiu/Rebol3/tree/master/protocols |
:) | |
Oldes 13-Jan-2011 [7071] | So Carl is alive? Good to know:) |
Henrik 13-Jan-2011 [7072] | Deciding what to work on next |
Kaj 13-Jan-2011 [7073] | Is he afraid of cURL? ;-) |
Ladislav 13-Jan-2011 [7074] | Yes, sure, he is afraid of everything, that could distract him. |
Kaj 13-Jan-2011 [7075] | Don't worry, you can leave the distractions to me :-) |
Maxim 13-Jan-2011 [7076] | the only thing Carl fears is Megabytes ;-) |
Kaj 13-Jan-2011 [7077] | Give me some time and I'll get to that |
Oldes 13-Jan-2011 [7078x2] | Checking the CC would be a good start. |
Checking the CC would be a good start. | |
Kaj 13-Jan-2011 [7080] | How do you mean? |
Maxim 13-Jan-2011 [7081] | he hasn't gone over the CC tickets in long time. |
GrahamC 13-Jan-2011 [7082x2] | perhaps he wants a change ... ? |
work on something different | |
Maxim 13-Jan-2011 [7084] | but Carl usually optimises into different phases of work. design build fix we sort of know why Carl has been a bit silent lately (he's been working on 2.7.8) now I think he is in a design phase in his mind. |
GrahamC 13-Jan-2011 [7085] | Was there that much done on 2.7.8 ?? |
Maxim 13-Jan-2011 [7086] | Brian Posted a list in the R2 Releases group. I also hope he included 2 fixes which I got Cyphre to address in view which crash or mock-up the quality in AGG. |
Kaj 13-Jan-2011 [7087x2] | RAMBO shows about ten fixes |
Don't remember AGG related fixes | |
BrianH 13-Jan-2011 [7089] | Carl is not the only one to go over the tickets, the rest of us go over them too. But yes, there's new stuff there that needs his attention. |
Pekr 14-Jan-2011 [7090x2] | Elan Goldma registered to R3 Chat ... isn't it Elan, who wrote the first book on REBOL years and years ago? :-) |
Goldman | |
shadwolf 14-Jan-2011 [7092] | it's amazing to see that in 2011 it can take so much energy out of someone just to tweet a "I'm away for 6 month please don't let a message after the bip" |
Pekr 14-Jan-2011 [7093x2] | yes, Carl does not handle communication well. We should not start advocacy here though, but in advocacy channel ... |
there is some indication from some guys here, that Carl might be back to R3 now, just looking into the situation, and deciding upon what's next ... | |
shadwolf 14-Jan-2011 [7095x4] | Pekr I heard that too ... But that's like the rebol GC we don't know in fact :) |
but hey maybe carl will come with another super grate stuff ... But my point is rebol is already super great stuff that just need to be upto dated one every 6 month ... | |
sorry I got the last sentence wrong ... But my point is rebol is already full of super great stuffs (desktop, console, web plugins, etc...) that just need to be upto dated once every 6 month. Some of them maybe needs a redefinition. | |
for example I would prefere a webplugin rebol/view for only firefox but available on all OS... Maybe basing rebol VM on non hardware related langagues would allow to speed up things ... | |
Pekr 14-Jan-2011 [7099] | R3 can't read and write back source file, to correct platform terminators? I used such aproach in R3 - just read, and write back to the same file. In R3 I even tried read/string, but it does not help when I wrote file back .... |
shadwolf 14-Jan-2011 [7100] | terminators ? you mean the robots from the futur that are tracking down sarah conor and john conor ? |
Andreas 14-Jan-2011 [7101] | Pekr, just tried write %foo.r read/string %foo.r on Linux. Converted DOS (CRLF) line endings to LF-only for me. |
shadwolf 14-Jan-2011 [7102] | sorry ... |
Pekr 14-Jan-2011 [7103x2] | I tried RMA's source under Windows, and no luck ... |
R2 turned out being handy, though :-) | |
Andreas 14-Jan-2011 [7105] | Ah yes, WRITE does not do any conversion, but READ does. So you'll always end up with LF-only. |
Pekr 14-Jan-2011 [7106] | Well, shouldn't R3 under Windows turn line terminators (Johns and Sarahs :-) into Windows compatible ones? |
Andreas 14-Jan-2011 [7107x2] | Use ENLINE for that. |
The full sequence for line terminator recoding is: write %foo.r to-binary enline deline to-string read %foo.r - READ/string is a shortcut for "deline to-string read" - WRITE auto-converts string! to binary, so is a shortcut for "write to-binary" in this case. So it can be just: write %foo.r enline read/string %foo.r | |
Pekr 14-Jan-2011 [7109] | Thanks - that is a gem - should be docced :-) |
Gregg 14-Jan-2011 [7110] | Is there a home for R3 one-liners and idioms? reline: func [file] [write file to-binary enline deline to-string read file] |
BrianH 14-Jan-2011 [7111x3] | reline: func [file] [write file to-binary enline read/string file] |
reline: func [file] [write file enline read/string file] | |
(whoops, missed one) | |
Oldes 18-Jan-2011 [7114] | New bug: http://issue.cc/r3/1830 |
BrianH 18-Jan-2011 [7115x2] | Sorry, that one's intentional. |
It's all part of the plan to make SELECT treat blocks, objects and maps more alike. | |
Maxim 18-Jan-2011 [7117] | I've always felt that doing so was dumbing down select. now I can't use select with/within parse, cause the different types will not be identified. has switch suffered the same fate? |
older newer | first last |