Search the web
Sign In
New User? Sign Up
arexx · This list is devoted to the powerful Amiga scripting language, ARexx. Here ARexx coders can share ideas, routines and generall
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2956 - 2985 of 3693   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2956
I've recently updated my rmh.lib to version 20 .... can any confirm that the programName() function no longer works properly? Kev -- Running On: ...
Kev
ukamiga
Offline Send Email
Dec 1, 2002
5:25 pm
2957
... 5.Work:Utils/RxMustHave/Examples> type pname.rexx /* usage of ProgramName() */ l="rmh.library";if ~show("L",l) then;if ~addlib(l,0,-30) then exit say...
Bernd Gollesch
bgollesch
Offline Send Email
Dec 1, 2002
9:37 pm
2958
In reply to : Bernd Gollesch Dated :Sun, 01 Dec 2002 22:42:59 +0200 Subject :[arexx] Re: rmh.lib ProgramName() function working? ... Aha..... looks...
Kev
ukamiga
Offline Send Email
Dec 2, 2002
10:29 am
2959
... Try it directly: http://web.tiscali.it/amiga/downloads/rmh.lha or with lowercase "amiga" http://web.tiscali.it/amiga/ Bernd...
Bernd Gollesch
bgollesch
Offline Send Email
Dec 2, 2002
11:20 am
2960
... yep, got it, thanks ... hmmm.... sadly does not load up into Voyager (3.2)... maybe a js prob -- Running On: Amiga1200T(Rev2B)apollo 060/50 32mb, ...
Kev
ukamiga
Offline Send Email
Dec 2, 2002
1:56 pm
2961
... Yep, the Provider uses JS for his advertising. One more try (the last one): http://web.tiscali.it/no-redirect-tiscali/amiga/index.html Bernd...
Bernd Gollesch
bgollesch
Offline Send Email
Dec 2, 2002
2:25 pm
2962
... thats the one ;) thanks! -- Running On: Amiga1200T(Rev2B)apollo 060/50 32mb, OS3.1,Dopus5.81,4.3gb HD, Cdrw-MakeCD. Pace V90,NC3 ..... ...
Kev
ukamiga
Offline Send Email
Dec 2, 2002
4:15 pm
2963
Hello Kev ... Please use http://alfie.monrif.net Ciao. Alfonso....
Alfonso Ranieri
alforan
Offline Send Email
Dec 2, 2002
6:17 pm
2964
... I tried but was never able to get an connection. -- CU, Bernd Gollesch /'''\ Europa, Austria, Styria A 1200 - 060/50MHz ( o o...
Bernd Gollesch
bgollesch
Offline Send Email
Dec 2, 2002
7:13 pm
2965
Using Infrarexx v1.9 I can't seem to get the arexx 'SEND' (send raw data stream) command to work.... anyone got any working examples? tia Kev...
Kev
ukamiga
Offline Send Email
Dec 9, 2002
8:36 pm
2966
Hi, If I open a "file" or port is it? to a TCP socket, can I just copy a file to it? I want to open a file/port, write some data to it, and then whack a file ...
Andrew Bruno
abruno@...
Send Email
Dec 11, 2002
6:15 am
2967
Andrew Bruno said, ... readch()/writech() would be much faster, although you'll have to do it in 64K chunks thanks to ARexx's variable size limit. If you know...
Neil Bothwick
wirenetuk
Offline Send Email
Dec 11, 2002
10:10 am
2968
I had some trouble with the web in the last days. Now It seems I found a stable home page at http://digilander.libero.it/asoft/ Ciao. Alfonso. P.S. On that hp...
Alfonso Ranieri
alforan
Offline Send Email
Dec 11, 2002
4:40 pm
2969
... -- 8< -- ... Actually, any chunk larger than 1k works fairly fast, IIRC. I have appended a short script that mimics the c:copy command - it is very fast,...
Hannu E K Nevalainen ...
garbage_collector@...
Send Email
Dec 11, 2002
6:18 pm
2970
Hello Neil ... Yeah? Ok. But I guess just a bit more code. ;-) ... What happens if the file is >64k? Which brings me to another question on that then. ...
Andrew Bruno
abruno@...
Send Email
Dec 12, 2002
6:02 am
2971
Hello Alfonso ... (Please - enough of the cookies! My computer is fat enough. I think I will have to put it on a diet!) ... You'll be hearing from me. I'm...
Andrew Bruno
abruno@...
Send Email
Dec 12, 2002
7:20 am
2972
Hello Hannu ... Thanks, but I have just read it (real time) and haven't digested it all. What is that line: bytes = bytes+writech(out,readch(in,2048)) do? ...
Andrew Bruno
abruno@...
Send Email
Dec 12, 2002
8:06 am
2973
Andrew Bruno said, ... You get the first 64K, like it says in rmh.guide. ... That depends opn the data you're reading and how the script handles its ...
Neil Bothwick
wirenetuk
Offline Send Email
Dec 12, 2002
9:15 am
2974
garbage mail said, ... I would assume that the larger the chunk the better the performance. I'm guessing that using readln()/writeln() is so much slower...
Neil Bothwick
wirenetuk
Offline Send Email
Dec 12, 2002
10:01 am
2975
Hello Andrew ... I understand but finding a good web space during this days is not so easy. I mean that people around design stuff for windows clients so Amiga...
Alfonso Ranieri
alforan
Offline Send Email
Dec 12, 2002
10:27 am
2976
Hello Neil ... When writing to an Internet socket (and TCP: is that) is never a good idea to use data size greater then the MTU (note that it is independent...
Alfonso Ranieri
alforan
Offline Send Email
Dec 12, 2002
10:27 am
2977
Alfonso Ranieri said, ... Shouldn't the TCP stack be taking care of that? When you request a file via a web browser, the browser doesn't split it into NTU...
Neil Bothwick
wirenetuk
Offline Send Email
Dec 12, 2002
11:43 am
2978
AB> What is that line: bytes = bytes+writech(out,readch(in,2048)) do? AB> Partiularly the last 2048 bit? AB> HN> ... do while ~eof(in) AB> HN>...
Hannu E K Nevalainen ...
garbage_collector@...
Send Email
Dec 12, 2002
8:11 pm
2979
... Then you would have to find out the MTU value every time you start any script that wishes to transfer data via TCP/IP. Also note that this may change in...
Hannu E K Nevalainen ...
garbage_collector@...
Send Email
Dec 12, 2002
8:11 pm
2980
... As readln() has to do internal buffering and end of line lookup, it will scan the data read at least once before sending it to the script. Also; the low...
Hannu E K Nevalainen ...
garbage_collector@...
Send Email
Dec 12, 2002
8:11 pm
2981
Hello Neil ... If you send x chars, the TCP send x chars, fragmenting them in small packets. That is taking cares. A broewser doesn't care about MTU because it...
Alfonso Ranieri
alforan
Offline Send Email
Dec 12, 2002
8:50 pm
2982
Hello Hannu ... Abstraction is not reality. ... I didn't say you must compute the size of the packet you send from the MTU, I just said 512 is a good value....
Alfonso Ranieri
alforan
Offline Send Email
Dec 12, 2002
8:54 pm
2983
-- 8< -- ... ^^^^^^^^^^^^^^^^^^ Hrmpf... that should be IP-packet size I believe... `:ŽI /Hannu E K Nevalainen, Mariefred, Sweden...
Hannu E K Nevalainen ...
garbage_collector@...
Send Email
Dec 12, 2002
8:58 pm
2984
... Very well, it isn't - but: The abstraction says a lot about how things are INTENDED to work. If you fail to allow the intention to be fulfilled - by the...
Hannu E K Nevalainen ...
garbage_collector@...
Send Email
Dec 12, 2002
9:12 pm
2985
Hello Hannu ... I did an extensive testing on various machine from a hp48(sx) connected to the Internet via a 1200 modem to a SuperCry from the Univerity of...
Alfonso Ranieri
alforan
Offline Send Email
Dec 12, 2002
9:23 pm
Messages 2956 - 2985 of 3693   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help