World: r3wp
[All] except covered in other channels
older newer | first last |
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. |
BrianW 1-May-2005 [1595] | Doesn't smalltalk kind of work like that, since there are no keywords and everything can be redefined on the fly? |
Gregg 1-May-2005 [1596] | Except that being a pure object environment, you have a lot of small methods that accept very specific messages, so you don't really create dialects, though you can take the first step and create a vocabulary. It just doesn't get used the same way. I'm not a real Smalltalker, only tinkered a bit a long time ago, so someone correct me if I'm wrong. |
BrianW 2-May-2005 [1597] | That makes sense, Gregg. The difference between vocabulary and dialect can be hard to describe. Can Rebol dialects actually change the way the Rebol language functions? |
PeterWood 2-May-2005 [1598] | Yes. Any Rebol code can change the way the language functions: >> copy: func [a] ["hijacked"] >> b: copy "123456" >> b == "hijacked" As dialects are implemented in Rebol they can change the way the langauge functions. |
BrianH 2-May-2005 [1599] | For that matter, much of how REBOL functions now is actually implemented as REBOL dialects, some in native code, some in REBOL code. |
Sunanda 2-May-2005 [1600] | See, for example http://www.rebol.net/projects/view1.3/chat65.html (around about msg 25) |
Volker 2-May-2005 [1601] | dialects are interpreters, which you can write in rebol. as interpreters, they can change everything. from rebol they inherit datatypes/syntax, which saves a lot work and makes things consistent. and the binding, which makes it easy to have variables in dialects and share them with rebol. the nice thing it, they keep their context. if you just pass strings and use regexp, you can do dialects in perl too, but the strings don't keep their context. which means sharing namespaces/locals with interpreters is less comfortable upto impossible. |
Maarten 23-May-2005 [1602] | I am working on a "REBOL powerpack". A set of libraries to help developers jump-start development. Check the REBOL powerpack group for details. |
ChristianE 29-May-2005 [1603] | Funny question: What's a good iconic metaphor for "Save file"? Okay, we're used to have a floppy-disk-icon to click on, but do all people now-a-days remember what floppy disks were? I can't imagine a working successor, though. An USB-stick pixeled on a 16x16 pixel grid? Not too easily recognised, I assume ... Any suggestions? |
ScottT 29-May-2005 [1604] | Funny answer: should one really have to specify that something is to be saved? rather than try to guide everyone from the desktop to the pictures of things that are really actions (floppy isn't floppy it's SAVE). Why not assume that something is needing to be saved, and only bother the user about such details for exceptions, like to save under a different name or a different place than whereever it was you were keeping it. What is the object that means the verb SAVE AS? icons are generally pretty miserable unless they are representing Nouns. use the word if you can. otherwise stick with what is usually used, the floppy. |
older newer | first last |