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

World: r3wp

[!REBOL3-OLD1]

Steeve
6-May-2009
[14097x2]
i use bniaries to store large index since several years with R2
lol
>> v: make vector! [integer! 16 2 #{01020304}]
== make vector! [integer! 16 4 [
1 2 3 4
]]


Brian, no Big endian, no little endian, it's a new format: little 
byte
BrianH
6-May-2009
[14099]
Steeve, don't take an example as being the sole use.
Louis
6-May-2009
[14100x2]
How do I fix this:

Couldnt get a file discriptor referring to the console.
I'm using Ubuntu Linux 8.10
Anton
7-May-2009
[14102]
When does that happen? Are you trying to launch rebol?
Louis
7-May-2009
[14103]
Anton, after launching R3, when I type "docs"
Henrik
7-May-2009
[14104]
That should open a browser window, which may not work under Linux 
yet.
Louis
7-May-2009
[14105]
Henrik, too bad.  I hope that changes soon.
Henrik
7-May-2009
[14106]
What happens if you type: browse http://www.google.com?
Louis
7-May-2009
[14107]
Command not found.
Henrik
7-May-2009
[14108]
Interesting. Curecode reports a very different issue in ticket 710.
Louis
7-May-2009
[14109]
If I gave Firefox the alias of "browse"  would that solve this problem?
Henrik
7-May-2009
[14110]
Wait a minute: Are you typing the browse command in R3 or in the 
shell? You must type it in R3.
Louis
7-May-2009
[14111]
In the shell.  In R3 I get the error mentioned above.
Henrik
7-May-2009
[14112]
It won't help in the shell, so it's a BROWSE bug.
ManuM
8-May-2009
[14113x2]
Louis: You can redefine browse at R3
browse: funct [ url ][ print ["Can't open "  url]]

So when you write docs o bugs command you'll see the url and can 
copy and paste to Firefox or Opera
Louis: Better solution
browse: funct [ url ] [ call reform [ "x-www-browser" url ]]

And browse works, and all commnads based on browse ( docs, bug, changes 
) too
Mchean
8-May-2009
[14115]
Is anyone else following the Rebol3 blog using the Google Reader? 
 Its the only blog that i follow in which the text is poorly formatted. 
 Basically the entries appear as one big paragraph., and is hard 
to follow as a result
Henrik
8-May-2009
[14116]
maybe the RSS feed should be HTML?
Mchean
8-May-2009
[14117x2]
I have no knowledge of how the reader interprets the rss, but its 
the only feed of 20 which shows up this way, which is not very conducive 
or complementary
think i should mention it over on the r3 chat?
Henrik
8-May-2009
[14119]
I don't think there is a big chance it will be fixed by Carl right 
now. However, if you get the source and provide your own fix, it's 
likely that he would use it.
Mchean
8-May-2009
[14120]
that's what i thought, unfortunately i don't have the html knowledge. 
  I wonder is anyone using any other news readers?
Henrik
8-May-2009
[14121]
I use Safari's RSS reader and it's badly formatted there too.
Mchean
8-May-2009
[14122]
ok so he's probably aware of it
BrianH
8-May-2009
[14123]
I was going to compare the output of his feed to that of Monologue, 
and make it match. Monologue works in Google Reader.
Mchean
8-May-2009
[14124]
thanks BrianH, for my edification could you put some message about 
what was needed?
Anton
9-May-2009
[14125]
What happened to the system/user object?  I just downloaded Rebol 
3 a-51 and it's not there anymore.
BrianH
9-May-2009
[14126x2]
The system/user object was removed in the great system reorg of alpha 
46. The only setting in system/user that was of any use was system/user/home. 
That setting is likely to be put back somewhere else, probably in 
system/options with a different name.
There are going to be some more changes to system - like removing 
system/words - but most of the changes were done in alpha 46.
Anton
10-May-2009
[14128]
BrianH, thanks for the info.
Louis
11-May-2009
[14129]
ManuM, thanks!
Pekr
11-May-2009
[14130x2]
hmm, http coming as first module - working in next version ...
Brian - Carl did some change to module creation and referred to objects 
too. I know that you are after context spec changes, so just a reminder 
to watch Carl's changes :-)
BrianH
11-May-2009
[14132]
I noticed that. I'm giving it some thought - it seems like a cheap 
fix, but it might not be bad. The HTTP scheme needs some work.
BrianH
12-May-2009
[14133]
Carl, while you're here: Post the update blog for May, please! We'd 
like to know what you're up to :)
Pekr
12-May-2009
[14134x2]
BrianH: already requested earlier today on R3 Chat :-)
BrianH: maybe Carl here is visiting using new R3 based Altme GUI 
client? :-)
BrianH
12-May-2009
[14136]
I'm seconding your request :)
Carl
12-May-2009
[14137]
Will do.
Maarten
12-May-2009
[14138x2]
I recently skimmed over a *new* implementation of multiprocessing 
in Python 2.6 and 3.0. Really new. Great model - it could be how 
tasks work in R3
http://docs.python.org/library/multiprocessing.html
Sunanda
13-May-2009
[14140]
Henrik:<I can only emphasize the importance of submitting Curecode 
reports.>


If you look at some very recent bug reports (numbers 700 -- 799), 
over half of them have been resolved, often within days
    46 built and/or tested (ie fixed) 
     8 dismissed (not actual bugs)

There seems no better time to report R3 problems than now!


The rest are Reviewed, Deferred or Waiting.....So still on the action 
list.
Maxim
14-May-2009
[14141]
what happened with ordinal accessors in R3, what replaces them?
Pekr
14-May-2009
[14142]
There seems to be bunch of fixes for A54 coming. I really like the 
progress of last few months. While there is still lot's of work, 
some areas are getting fixed and being really usable ....
Sunanda
14-May-2009
[14143]
ordinal accessors still exist in R3:
    fifth [1 2 3 4 5]
    == 5

(There's a discussion in Core about them no longer working with money!. 
But that's the only case I know)
Henrik
14-May-2009
[14144]
wow, 23 fixes so far for A54, including some of my old image bugs.
BrianH
14-May-2009
[14145x2]
Ordinals still exist, but are no longer used as reflective accessors. 
Try HELP "-of".
Most of those are replacements for FIRST, SECOND or THIRD for objects, 
fuunctions and such.