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

World: r3wp

[!REBOL3-OLD1]

Chris
22-Oct-2009
[19143]
Is 'load/next supposed to return binary as the second part of the 
result?
Pekr
23-Oct-2009
[19144]
Max - what you are proposing - could it serve to support collation 
mechanism? Because what we still lack is to support specific collation 
sorting - unless it is implemented, I refuse to claim, that R3 supports 
Unicode ...
Maxim
23-Oct-2009
[19145x3]
ah... well, I was just proposing a way to prevent bitsets scaling 
to2^16 bits when you join them in specific ways.
created ticket #1292, addresses a few problems date!  handling of 
time.
if you look at the ticket, what I asked for really is usefull and 
shouldn't be very hard for Carl to address.
Henrik
23-Oct-2009
[19148x2]
Those should probably be split in 3 reports.
I'll let you do that, since you wrote the original report. :-)
Maxim
23-Oct-2009
[19150x4]
ok then....
actually... doing more tests.... I realize that the time is added 
to the date directly, not counting current time... which is actually 
proper, since I'm doing a set... not an addition.
so I'll change that bug report to a documentation one... cause it 
can be misleading until one understands it.
done...
Pekr
23-Oct-2009
[19154]
hmm, a bit too many crashes, recently, no? :-) Are unit testings 
still being done for releases?
Henrik
23-Oct-2009
[19155]
http://www.rebol.net/r3blogs/0280.html

Delayed init of built in modules.
Pekr
25-Oct-2009
[19156]
Per Twitter message, Carl seems to be working on interesting topic 
- Improving standard I/O to allow R3 to be used with redirections, 
CGI and other purposes.
Gabriele
25-Oct-2009
[19157]
this could be interesting to those building a "Try rebol" web page: 
http://www.masswerk.at/jsuix/
BrianH
26-Oct-2009
[19158]
Chris: "Is 'load/next supposed to return binary as the second part 
of the result?"

Yes. R3 source is defined as binary encoded in UTF-8, not as a string. 
LOAD/next of a dir or url which returns a block on read, or of a 
script-in-a-block will return a block reference as the next though.
Pekr
26-Oct-2009
[19159]
Stdio fixes and improvements - http://www.rebol.net/r3blogs/0281.html
Carl
26-Oct-2009
[19160]
Last week, Pekr asked if I would stop by.
Steeve
26-Oct-2009
[19161]
Hi master !
Carl
26-Oct-2009
[19162x4]
Hi Steeve. Quick response!
Unfortunately, I don't have time to read back over the older messages 
(and there are many), but... I have an idea:
We could do a Q&A type session.   It would be live.  We could use 
a new group if desired.  Perhaps put the date in the name.
It's not my intention to be difficult to reach.... but I do tend 
to get very focused when I'm working on specific things.
Steeve
26-Oct-2009
[19166]
Sure, we just need that others here, wake up
Carl
26-Oct-2009
[19167]
We can adjust the timing for that... to some degree.
Pekr
26-Oct-2009
[19168]
Carl - we wanted to address priorities
Steeve
26-Oct-2009
[19169x2]
One question about the further compressed inlined modules. what sort 
of compression format do you intend to tuse ?
oups, sorry
Pekr
26-Oct-2009
[19171]
there is !REBOL3 Priorities group here ... but - as far as my understanding 
goes, you might not agree to requests ...
Carl
26-Oct-2009
[19172]
I'm open on it.
Pekr
26-Oct-2009
[19173]
maybe you could generally say, why it is important to have Beta this 
Autumn, and what are features we really should or could get to beta, 
and what can be postponed?
Carl
26-Oct-2009
[19174]
S, P: Where to answer?  Here or elsewhere?
Steeve
26-Oct-2009
[19175]
(Do you intend to use the unfamous REBIN format or to compress/decompress 
molded sources ?)
Carl
26-Oct-2009
[19176x7]
S: not for my currently proposed addition to modules.  They would 
be source.
The difficult question is base-64 vs true binary.
My belief has been that we are now in 2009, so binary should be fine.
Most websites don't mess up binary transfers.
Note that the header would remain clear text, UTF-8.
Pekr: I'll be back in a while to check for your reply.  I want to 
be sure that I can post my notes where they should be.  Perhaps we 
need some new group chats?
BBL
Steeve
26-Oct-2009
[19183x2]
C: I don't uderstand, 
All the modules will be transfered ? Not included in the VM ?

I thought your last post was refering to included compressed modules 
(but not loaded at the boot time)
Sh*t, he quits...
Pekr
26-Oct-2009
[19185]
Uf, new group, if you prefer, or look into !REBOL3 priorities, if 
it fits ....
Carl
26-Oct-2009
[19186x2]
S: I'm not sure what you mean. Here's the story:


There are some modules, like CGI, that do not need to be initialized 
unless needed. Those would be "bundled" into the exe, but would not 
init unless they are required.  That way, no extra space (or boot 
time) is needed for them when not used.
In addition, there are modules like Chat that are not bundled. Those 
are compressed modules, that download on demand.
Steeve
26-Oct-2009
[19188]
yep i know that, i was refering to the "bundled" ones when asking 
about compression format.
Carl
26-Oct-2009
[19189x2]
The bundled ones are currently COMPRESS MOLD/flat source. But, someday 
that will change to REBIN.
Or, should I say, compressed REBIN.
Steeve
26-Oct-2009
[19191]
ok, it's what i wanted to know
BrianH
26-Oct-2009
[19192]
The decompression would have to happen at the same point either way.