World: r3wp
[!REBOL3-OLD1]
older newer | first last |
Graham 22-Oct-2009 [19136] | That's part of the Rebol life ... |
Henrik 22-Oct-2009 [19137x2] | Reading the bitsets document, says: Create a bitset large enough to holds bits up to 1000 and set bit 1000: bits: make bitset! 1000 ; note that bit 1000 is set But in A92: >> make bitset! 1000 == make bitset! #{ 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000 } Is this right? |
added as bug#1290 | |
Chris 22-Oct-2009 [19139x3] | Another shot at reworking my XML loader for R3: http://bit.ly/xml_rebol - works mostly, try: rss: load-xml/dom http://www.rebol.com/article/carl-rss.xml entries: rss/get-by-tag <item> foreach entry entries [probe entry/get <title>] However trips at the first line of the first example: html: load-xml/dom http://w3.org as follows: >> do http://www.ross-gill.com/r/r3xml.r Script: "XML for REBOL 3" Version: 0.2.0 Date: 22-Oct-2009 >> html: load-xml/dom http://w3.org ** Access error: protocol error: "Redirect to other host - requires custom handling" >> html: load-xml/dom http://www.w3.org Segmentation fault On 2.100.90.2.5 |
Appears to be OK on 2.100.92.3.1 | |
Boiled it down to: parse "^(A000)" [remove #" "] | |
Maxim 22-Oct-2009 [19142] | Added an idea on the bitset complement dilema, worth considering IMHO. its a logical extension of the new bitset notation |
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 .... |
older newer | first last |