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

World: r3wp

[!REBOL3-OLD1]

Graham
6-Sep-2008
[6922x3]
there's more to it
Windows Speech Recognition must look at the context to see if the 
region with focus is a text field.
and it's not recognizing VID fields
Dockimbel
7-Sep-2008
[6925]
There's no way Windows can figure out what's in View windows. If 
WSR needs really just a native text field, a solution could be to 
make a true, but not visible, native text field (CreateWindow( ) 
API), give it the focus each time a VID field has the focus, then 
get the input data on events received from the system:// port.
Kaj
7-Sep-2008
[6926x3]
Hope this isn't prophetic:
http://books.google.com/books?id=ioN368DebtcC&pg=PR5&lpg=PR5&dq=rebol&source=web&ots=oz0DV1kpiC&sig=yCHQGTC5eFW2emCdYd-xH4lqMnI&hl=en&sa=X&oi=book_result&resnum=8&ct=result
;-)
Graham
7-Sep-2008
[6929]
hasn't buried the competition yet.
james_nak
13-Sep-2008
[6930]
Henrik, you mention the rebol3 browser quite a bit. Just what is 
it? Perhaps you have written about it previously.
BrianH
13-Sep-2008
[6931x4]
Carl's new VID work.
He has stated that he wants REBOL's GUI to be more declarative, with 
structural and presentation cleanly seperated, and network access 
and services fully integrated. Sort of like HTML/CSS/HTTP done right: 
A REBOL browser. That is what he has been working on these last few 
months, what we have all been waiting for.
It sounds cool to me, but I have been really looking forward to the 
core changes that are coming with it :)
This is why Carl's work lately has been worth waiting for. I mean, 
if it was just a GUI framework that would be silly, right? :)
Henrik
13-Sep-2008
[6935]
The idea of the REBOL browser is to replace the Viewtop paradigm 
with a webbrowser paradigm, because people will relate to that much 
more. You have a standard browser-like window. You enter a URL and 
get a "page" or a script run from that location displayed in the 
window. I mentioned earlier that I felt Carl was trying to restart 
webbrowsing. Carl's situation right now is probably right where Tim 
Berners-Lee was back in the early 90's as he was finishing Mosaic 
1.0. Carl will just be starting in 2008 with 2012-type web technologies, 
rather than 1994.
Pekr
13-Sep-2008
[6936]
I fear our expectations are maybe too high. Not sure we could create 
anything revolutionary here?
Henrik
13-Sep-2008
[6937]
starting from scratch is pretty revolutionary in itself, but I haven't 
seen the browser yet, so I can't say for sure that it will be exactly 
like I imagined.
BrianH
13-Sep-2008
[6938]
Our expectations for what we will get out of this are probably not 
too high. Our hopes for getting this adopted by others, that may 
be another matter. It's one thing to build it, another to get people 
to use it.
Henrik
13-Sep-2008
[6939x2]
if it will be like I imagined, it's going to be one heck of a tech 
demo.
But we can already do one: Just 'do a complex VID script in the R2 
console, such as Devbase and see how fast it loads. Now do the same 
thing in AJAX.
BrianH
13-Sep-2008
[6941]
Not that wide adoption and vindication wouldn't be nice... :)
Henrik
13-Sep-2008
[6942x2]
I think for wide adoption the browser window needs to fit inside 
an ordinary browser window as well. If it works somewhat the same 
way as the native rebol browser (lacking certain rebol browser features), 
you have a pretty good demo of what it would be.
for wide adoption the browser window
 => "for wide adoption the REBOL browser window"
BrianH
13-Sep-2008
[6944x2]
needs to fit -> needs to be able to fit when necessary
Take that with a grain of salt though - I use REBOL for server-side 
stuff most of the time.
Henrik
13-Sep-2008
[6946]
well, sure, but I imagine there would be a degree of control of how 
you want it to layout, either in a GUI oriented fashion or a document 
oriented fashion.
BrianH
13-Sep-2008
[6947]
AltME, DevBase and non-graphical batch scripts being the exceptions 
to server-side use, of course.
Brock
13-Sep-2008
[6948]
If the Rebol browser window does not fit in the browser window then 
adoption will be slow.  But there is some hope if we can do what 
the web does today (or better) in one language... that's golden and 
should increase the adoption rate.  I hope I will be able to get 
it in my work-place, that would make my decade.
BrianH
13-Sep-2008
[6949]
Have you looked at Chrome? Even browser apps are trying to get out 
of the browser window :)
Pekr
13-Sep-2008
[6950]
yes, they are trying, but first they become famous because of browser 
....
BrianH
13-Sep-2008
[6951]
Yup. There is a lot to learn there, and the number one lesson is 
this: they did it with what was there already, no plugins. If we 
want REBOL in web browsers, we are going to have to look somewhere 
other than Google for inspiration. Still, some of their recent behavior 
has some clues. Look at Gears - they are clearly recognizing that 
networks aren't reliable or fast enough to count on consistency. 
That's why they are promoting local storage.
Graham
13-Sep-2008
[6952x2]
Perhaps it's the language
How do languages like Erlang cope with unreliable networks?
BrianH
13-Sep-2008
[6954x2]
How so?
(sorry, question delayed by AltME)
Graham
13-Sep-2008
[6956]
Isn't Erlang designed with network failures assumed?
BrianH
13-Sep-2008
[6957x3]
In general, languages like Erlang handle unreliable networks with 
redundancy, and it can do that because it is a functional language 
with no assignment. The state needed to answer a question is passed 
with the question. That way you can ask the same question multiple 
times and get the same answer every time.
Still, Erlang's advantages are more from the OTP system than the 
Erlang language, though the no-assignment language with lightweight 
process concurrency and message passing makes it easier to implement 
something like OTP.
REBOL's statefulness and heavyweight processes make this kind of 
redundancy more difficult, but it can be done.
Graham
13-Sep-2008
[6960x3]
I recall Maarten was going to port an Erlang database to Rebol ...
this database was distributed across the network or something ... 
don't recall all the details
Since he hasn't done it ... I guess these things are more difficult
BrianH
13-Sep-2008
[6963]
They are, but to be fair he may be busy.
Graham
13-Sep-2008
[6964]
there are so many people now working on qtask .. it should be finished 
by now!
Pekr
13-Sep-2008
[6965x2]
Qtask is never going to be finished ... it is imo turning into ratgher 
complex product ...
Maarten's stack was based upon Chord implementation. But he mentioned 
even more interesting stuff. IIRC, he also said it is already running, 
and once proven, he will release it.
BrianH
13-Sep-2008
[6967]
Google is never going to be finished - it is turning into a rather 
complex product. No, it is a company or a platform, not a product.
Graham
13-Sep-2008
[6968]
Which ties up all the Rebol talent into one big hole
BrianH
13-Sep-2008
[6969]
Qtask could probably stand to adopt Google's 20% time. I'll ask them.
Graham
13-Sep-2008
[6970x2]
20% time?
qtask is Rebol's Hadron collider