• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r4wp

[Ann-Reply] Reply to Announce group

GrahamC
14-Jan-2013
[1177x2]
Sore the core builds are on rebolsource.net and the gui builds are 
on development.saphiron ....
Until the r3gui gets moved to github?
Andreas
14-Jan-2013
[1179]
Basically, yes.
GrahamC
14-Jan-2013
[1180]
What's stopping a push now of what we have of the R3 gui?
Andreas
14-Jan-2013
[1181x2]
Need to clean up and properly re-integrate a few bits.
We might even get basic /View building with the open source mainline 
at the moment. Needs someone to investigate.
GrahamC
14-Jan-2013
[1183]
Ok, I just hope we weren't waiting for Carl to upload his old sources
Andreas
14-Jan-2013
[1184]
No, certainly not.
Arnold
14-Jan-2013
[1185]
Graham, do you see the fourth line on for example this page?

http://archives.esperconsultancy.nl/Red-test/artifact/0220fff5fad7661ca4108fc820cd09c1a6078e7d

It says "download" and "Hex". 
(had the same experience as you)
GrahamC
14-Jan-2013
[1186x3]
No, never noticed those.  Expected to see it below the menus.
Still doesn't help much.
Looking for a direct link that I can give someone to download the 
latest red and red/system windows binaries
Arnold
14-Jan-2013
[1189]
It works here (MacOSX Safari). Does this link work?  

http://archives.esperconsultancy.nl/Red-test/raw/Windows/RedSystem/6502.exe?name=0220fff5fad7661ca4108fc820cd09c1a6078e7d
GrahamC
14-Jan-2013
[1190]
Yes, but that's a 6502 emulator ... not really what I want!  And 
the other thing was called "empty.exe" which doesn't seem to do anything
Arnold
14-Jan-2013
[1191x2]
The Red fibonacci exe for Windows: 

http://archives.esperconsultancy.nl/Red-test/raw/Windows/Red/Fibonacci-fast.exe?name=d45777b91ee7fbd189c7c2c0ccc1d3e0b6866269
The other one is the empty.red that is not really exciting indeed 
:)
Rebolek
14-Jan-2013
[1193]
Fosil web interface is one of the most confusing things I've ever 
seen.
Arnold
14-Jan-2013
[1194]
Even the Fossil itself seems upside down ;)
GrahamC
14-Jan-2013
[1195]
Maybe that's why it's called Fossil
Andreas
14-Jan-2013
[1196]
Graham, the following might work:


http://archives.esperconsultancy.nl/Red-test/raw/MSDOS/Red/console-pro.exe?name=d355eac8e29ced2a6a90e9ce618486c358f02a79
Kaj
14-Jan-2013
[1197x12]
Looking for a direct link that I can give someone to download the 
latest red and red/system windows binaries
People, these are all specific versions of an executable, identified 
by its hash value. One update and its not the latest anymore, so 
I never link to specific versions
The latest files (tip) are always here:
http://red.esperconsultancy.nl/Red-test/dir?ci=tip
The Windows executables are here:
http://red.esperconsultancy.nl/Red-test/dir?ci=tip&name=MSDOS
The console-pro is here:
http://red.esperconsultancy.nl/Red-test/dir?ci=tip&name=MSDOS/Red
But you need the SQLite library from the Red/System directory:
http://red.esperconsultancy.nl/Red-test/dir?ci=tip&name=MSDOS/RedSystem
Anyway, as I've announced many times, if you don't want to deal with 
the versioning system, you should just download everything in one 
package:
http://web.syllable.org/news/2012-11-18-20-47-Red-high-level-programming-language-first-alpha.html
Andreas
14-Jan-2013
[1209]
The following might be stable for the "latest" version of e.g. non-pro 
Win32 console:


http://red.esperconsultancy.nl/Red-test/raw/MSDOS/Red/console.exe?name=tip
Kaj
14-Jan-2013
[1210]
That's a manifest, not an executable
Andreas
14-Jan-2013
[1211]
Pity.
GrahamC
14-Jan-2013
[1212]
red>> print "testing"
testing"

The console is just an early version I recall
DocKimbel
14-Jan-2013
[1213]
It is just a minor bug already referenced: https://github.com/dockimbel/Red/issues/383
Kaj
14-Jan-2013
[1214]
Graham, I see you made it :-)
GrahamC
14-Jan-2013
[1215]
Yeah ... managed to download something that worked :)
Gregg
14-Jan-2013
[1216]
Thanks for all your work on Red, Kaj!
Arnold
14-Jan-2013
[1217]
I will have a look at this CGI capability of Red soon!
DocKimbel
15-Jan-2013
[1218]
Kaj: I'm looking at your %console-pro.red script and it's really 
enjoyable for me to see all the pieces of Red programming stack put 
together and working well, at this point of the project. Kudos for 
having add script file loading to the console! :-)
Kaj
15-Jan-2013
[1219x2]
Yeah, it's brilliant, the way Red blurs the lines between high level 
and low level programming, and compiling and interpreting, bringing 
them much closer together
Sorry that I continued with the primitive marshalling. I couldn't 
stop myself ;-)
james_nak
17-Jan-2013
[1221]
Andreas, thanks for doing the rebolsource.net site. It is quite convenient.
Andreas
17-Jan-2013
[1222]
Thanks. I'm glad you find it useful.
Ladislav
17-Jan-2013
[1223]
having implemented R3 RANDOM (D.Knuth's algorithm adapted for R3) 
I am curious how are you implementing it in Red
Kaj
17-Jan-2013
[1224x2]
I'm just using the standard functions in the C library, so the details 
are up to the operating system
Most systems seem to generate 31 random bits
Ladislav
17-Jan-2013
[1226]
I'm just using the standard functions in the C library, so the details 
are up to the operating system

 - aha, so different interpreters will yield different random numbers?