World: r3wp
[!REBOL3]
older newer | first last |
Paul 2-Apr-2010 [2011] | Can't think of anything actual Gregg that I'm working on but when stuff like that exists people tend to come up with scenarios after awhile. |
Graham 4-Apr-2010 [2012] | When is the next R3 alpha being rolled out ? |
Carl 5-Apr-2010 [2013] | Graham, it's been a long journey. |
Maxim 5-Apr-2010 [2014] | Carl, how is the next host/extension (with view as a plugin) comming along? |
Pekr 5-Apr-2010 [2015] | we need status update blog ;-) |
Henrik 5-Apr-2010 [2016] | and a lot of spam cleared from the blog |
Pekr 5-Apr-2010 [2017] | just another non-action by RT ... I already reported spam. IIRC, Graham also said, he did so ... but it was never removed,hence it means Carl is ignoring those emails ... |
Pekr 6-Apr-2010 [2018] | ... so the only info we have got after a month or more of total lack of any info, is, that "it's been a long journey"? Great. This really starts to look rudiculous .... |
PeterWood 6-Apr-2010 [2019] | This has been the pattern with Rebol development in the few years that I have been Rebolling. Whether it looks ridicuous or not is a matter of personal opinion, but surely it is to be expected? |
Graham 6-Apr-2010 [2020] | If we don't lobby for change, nothing will change ... |
Carl 9-Apr-2010 [2021] | Spam cleared from blog. The abuse mechanism works again. Thanks for reporting it, and sorry about the build-up of spams. I must admit that the blog.r code has become more complicated over the years due to issues like spam, but it's not going to be revised again until it gets moved into R3. |
Graham 9-Apr-2010 [2022] | Delegate |
Carl 9-Apr-2010 [2023] | Let me know if you figure out how. |
Graham 9-Apr-2010 [2024x2] | Submited 16 more spam postings |
User with high enough rating logs in and sees additional option to remove postings .... | |
Carl 9-Apr-2010 [2026x4] | Ah, ok... good answer. |
I'm not seeing your new report. Did it indicate an error? | |
R3 blog swept now too. | |
BTW, there were various xratio comments marked as abuse, but did not look like abuse. Why? (Contact me privately if necessary.) | |
Graham 9-Apr-2010 [2030] | His anti-muslim rantings |
Carl 9-Apr-2010 [2031] | Those were removed and the disclaimer at the bottom of the page was updated. |
Graham 9-Apr-2010 [2032] | No, no errors on submission. |
Carl 9-Apr-2010 [2033] | Which blog? |
Graham 9-Apr-2010 [2034] | R3 but looks like you're now removed them |
Carl 9-Apr-2010 [2035] | Yes, ok, both blogs now. |
Graham 9-Apr-2010 [2036x2] | OT, what about a 64 bit R2? |
So we can install on Windows 2008 64 bit .... | |
Carl 9-Apr-2010 [2038] | WG (wrong group) |
Graham 10-Apr-2010 [2039x2] | Now that the iPad is out .. this must surely drive Android based slates as well. |
So, no hostkit for Android yet? | |
BrianH 10-Apr-2010 [2041x3] | No hostkit or R3 for ARM yet. |
Android (more recently) has a way for you to write native code plugins, to supplement the Java code that apps are written in. It seems to me that this would be a good way to get R3 integrated. | |
Don't know if you can run native-only apps on Android - haven't heard of anyone doing that. | |
Graham 13-Apr-2010 [2044x2] | Using my R3 fax script, I was able to login to a hylafax server in Washington from here in NZ, and send a fax across town! |
The hylafax server is using Fax over IP ( comcast ) so I suspect that's why I was not able to fax back to me in NZ | |
Pekr 13-Apr-2010 [2046x2] | Nice achievement in regards to R3 :-) Btw - it seems Carl is working on turning View into Extension - http://www.rebol.com/r3/docs/view/graphics-ext.html |
Delayed Extensions - http://www.rebol.com/r3/notes/delayed-mods.html | |
Maxim 13-Apr-2010 [2048] | that is cool... something Carl has been musing about for a long time. |
BrianH 14-Apr-2010 [2049] | It will be more than just extensions that will be able to be delayed, any modules will be delayable. I'll be discussing things in the !REBOL3 Modules group here tomorrow if anyone has questions or suggestions about this stuff. |
btiffin 14-Apr-2010 [2050x2] | I could google and poke around, but I'd rather Ask a Friendly Human. Where are we at with GUI and GNU/Linux? I get a crash; ** Script error: size-text has no value ** Where: font-char-size? make make-text-style parse fontize do do either load-gui ** Near: font-char-size? self Is if worth digging in for? Fonts? etc. Or, is it a don't bother yet? |
from >> load-gui that is | |
Pekr 14-Apr-2010 [2052] | we are not far ... yet ... R3 GUI should be pushed forward by Robert's team, but guys are mostly waiting for Carl to turn View into regular Extension, and releasing its sources, so that low-level View enhancements can be done. As for VID itself, we are still in kind of wait mode imo ... |
btiffin 14-Apr-2010 [2053] | Thanks Pekr; I'm at 1:30am, and just knowing will make for an easier sleep; no frets about missing the memo ;) |
Cyphre 16-Apr-2010 [2054x2] | Does anyone know if these are bugs in R3 or am I missing some new feature? >> append #{} [#{01} #{02} #{03}] ** Script error: invalid argument: [#{01} #{02} #{03}] ** Where: append ** Near: append #{} [#{01} #{02} #{03}] >> rejoin [#{01} #{02} #{03}] ** Script error: invalid argument: [#{02} #{03}] ** Where: append rejoin ** Near: append either series? first block [copy first block] [ f... >> join #{} [#{01} #{02} #{03}] ** Script error: invalid argument: [#{01} #{02} #{03}] ** Where: applier apply repend join ** Near: series reduce :value part length only dup count Tested under 2.100.97.3.1 version. |
sorry,nevermind....just found that here http://curecode.org/rebol3/ticket.rsp?id=1452&cursor=1 | |
Graham 17-Apr-2010 [2056] | http://www.rebol.net/r3blogs/0311.html Asking for R3 critical fixes |
amacleod 17-Apr-2010 [2057] | sounds good...back on track |
Geomol 18-Apr-2010 [2058x2] | Are TO and MAKE considered the same in R3? (same? doesn't return true, but the two functions seem to work the same, or maybe there is a differenct?) |
They are different: >> to string! 42 == "42" >> make string! 42 == "" With MAKE, it's the length of the created string. | |
BrianH 18-Apr-2010 [2060] | TO and MAKE are considered different in R3, but for some types they do the same thing; not string though. |
older newer | first last |