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

World: r3wp

[All] except covered in other channels

Maxim
17-Mar-2005
[1545]
I don't know... but mathlab has a compiler which is supposed to allow 
creationg of C object modules or dll files for easier integration 
outside of mathlab... (thats what it says on the web site anyways)
Pekr
17-Mar-2005
[1546]
yes, it came after version 5, the last I used was 4
Ladislav
17-Mar-2005
[1547x2]
I once "translated a matlab script to Rebol and was amazed how Matlab 
computed square-root
square-root -4 is -2 according to Matlab
Maxim
17-Mar-2005
[1549x2]
is square-root -4 even possible?
cause  -2 X -2 obviously doesn't amount to  -4  ;-)
Ladislav
17-Mar-2005
[1551]
exactly, that was the reason why I was surprised, nevertheless the 
author of the program was content with it, so I had to "translate" 
to Rebol as follows:

(sign? x) * (square-root abs x)
Maxim
17-Mar-2005
[1552]
eeks..
Ladislav
17-Mar-2005
[1553]
anyway I doubt about the correctness of such a program
Maxim
17-Mar-2005
[1554]
yet there lies a paper which has code along with it which allows 
us to select obects in an image merely by painting vague strokes 
on them...

and its coded in mathlab...
DideC
17-Mar-2005
[1555]
square-root -4
 only exists with complex number, not real one.
Ladislav
17-Mar-2005
[1556]
yes, the correct result is an imaginary number 2i
Maxim
17-Mar-2005
[1557]
ahhh
[unknown: 5]
17-Mar-2005
[1558]
Seems that request-file/file  doesn't work
eFishAnt
17-Mar-2005
[1559]
EE degree is based on the square root of -1, to create sine waves...but 
in high school the Algebra teachers told us it was just imaginary...so 
I guess I have an imaginary degree.
[unknown: 5]
18-Mar-2005
[1560x3]
Anyone know how I can find my password for the Developer IOS server?
nevermind I think I found it
Had to change the registry entry to the correct path.
Graham
27-Mar-2005
[1563]
was there another outage about 20 mins ago ?  I see everyone who 
was on logged off at the same time - including myself, involuntarily
eFishAnt
27-Mar-2005
[1564]
yup
Robert
28-Mar-2005
[1565]
Can anyone give me a good tip for a free tape backup program that 
is able to backup workstations (windows) on a LAN via UNC names like 
\\my-system\c$
[unknown: 5]
28-Mar-2005
[1566]
why not just script it up with rebol?
Graham
28-Mar-2005
[1567x2]
How would rebol connect to the taps driver ?
*tape
[unknown: 5]
28-Mar-2005
[1569]
I wasn't thinking of tape actually, I was thinking more along the 
lines of backup to other harddrive storage
Graham
28-Mar-2005
[1570]
Bo has written such a utlity .. that also backs up to a ftp directory
[unknown: 5]
28-Mar-2005
[1571]
I have a program I made myself also.
Graham
28-Mar-2005
[1572]
It would be nice for a rebolish way to interface to tape drives and 
dvd writers
[unknown: 5]
28-Mar-2005
[1573]
Yeah - Carl should try to chime in sometime on some suggestions on 
how to do that.
Robert
29-Mar-2005
[1574]
Graham, right, I need to access the tape. The next problem is to 
handle things like: open-files, system state for Windows machines 
etc. IIRC Windows provides an API for backup-programs. If you want 
to do live backups of things like running DBs or Exchange etc. you 
need special APIs as well.
Robert
8-Apr-2005
[1575]
Hi, does someone know a good development environment which can create 
DLLs and simplifies COM programming? I want to create some wrapper 
DLLs for Rebol that use COM objects. But I really don't want to hack 
through MBs of MS header files etc.
BrianH
8-Apr-2005
[1576]
Borland Delphi. They have an Open Edition that is no-charge.
Robert
9-Apr-2005
[1577]
Hmm... my Pascal knowledge is a bit rusty ;-)) Thanks.
eFishAnt
9-Apr-2005
[1578x3]
My son Josh wrote a tutorial on this.  I don't remember at the moment 
exactly where he put it, maybe on his web site, but I will find out. 
 A very simple, to the point how-to.
...well, I don't remember if .com   (sorry)
it was some free download c compiler.
Volker
9-Apr-2005
[1581]
Gregg mentioned somewhere he uses realbasic. Blackbox Builder was 
proud about it too and is now open source. but have not read enough 
docu.
BrianH
9-Apr-2005
[1582]
There's a Free clone of Delphi out there called Free Pascal with 
a GUI-alike called Lazarus, but I doubt its COM support is that good, 
and they can't do the GUI as well because the best features of Delphi's 
GUI are patented by Borland. I think Microsoft licenses those patents 
for Visual Studio.
Josh
10-Apr-2005
[1583]
Robert, I'm not sure if this will be helpful, but this is what steve 
was talking about:  http://www.cs.grinnell.edu/~shirema1/docs/DLLsinREBOL.html
Robert
11-Apr-2005
[1584]
Josh, thanks for the link. My problem isn't creating the DLL part 
but getting the COM part done in a simple way. Writing the wrapper 
for Rebol is done quite fast.
[unknown: 5]
27-Apr-2005
[1585]
Anyone know any other languages that are similiar in design to REBOL?
JaimeVargas
27-Apr-2005
[1586]
Similar in which way?
[unknown: 5]
27-Apr-2005
[1587]
Where you can define words and use them in dialects
JaimeVargas
27-Apr-2005
[1588x2]
Forth
Do you mean that it has a bnf parser included?
BrianH
28-Apr-2005
[1590x2]
Nemerle
Though with that, the dialecting is done at compile time rather than 
at run time. Not quite the same, but still much of the language is 
dialects in the REBOL sense.
shadwolf
28-Apr-2005
[1592]
Lisp ...
[unknown: 5]
28-Apr-2005
[1593]
Wow thanks guys - I look some of these up
Gregg
30-Apr-2005
[1594]
OCaml has some interesting features along those lines.