Google Mail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Filer_Run from a BASIC application
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 27 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Follow-up To:
Add Cc | Add Follow-up to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers that you hear
 
Dave Higton  
View profile   Translate to Translated (View Original)
 More options 19 Oct, 21:51
Newsgroups: comp.sys.acorn.programmer
From: Dave Higton <davehig...@dsl.pipex.com>
Date: Mon, 19 Oct 2009 21:51:09 +0100
Local: Mon 19 Oct 2009 21:51
Subject: Filer_Run from a BASIC application
I've looked up Filer_Run in PRM 2-502 but I'm not clear on the scope
of the restrictions.

I've got an application with a very common structure: an application
directory whose name begins with !; in the directory are, among
others, a !Run file, and a BASIC RunImage file.  I need the BASIC to
run a separate application with the same structure.  Is it OK for
the first RunImage to OSCLI "Filer_Run !TheSecondApp"?

The PRM says "You can only use this command from within the desktop
environment or...", which is nicely general, but worryingly so.

I've written a test app that does exactly as I describe, and it
works.  Is it really OK, or have I just been lucky?

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Martin Wuerthner  
View profile   Translate to Translated (View Original)
 More options 19 Oct, 22:41
Newsgroups: comp.sys.acorn.programmer
From: Martin Wuerthner <spamt...@mw-software.com>
Date: Mon, 19 Oct 2009 23:41:40 +0200
Local: Mon 19 Oct 2009 22:41
Subject: Re: Filer_Run from a BASIC application
In message <e225dbac50.davehig...@dsl.pipex.com>
          Dave Higton <davehig...@dsl.pipex.com> wrote:

> I've looked up Filer_Run in PRM 2-502 but I'm not clear on the scope
> of the restrictions.
> I've got an application with a very common structure: an application
> directory whose name begins with !; in the directory are, among
> others, a !Run file, and a BASIC RunImage file.  I need the BASIC to
> run a separate application with the same structure.  Is it OK for
> the first RunImage to OSCLI "Filer_Run !TheSecondApp"?

Yes. As long as you give a full pathname for !TheSecondApp, of course.

> The PRM says "You can only use this command from within the desktop
> environment or...", which is nicely general, but worryingly so.

Nothing worrying about it. It means what it says: This only works in
the Wimp environment. That does not mean that the program issuing the
command must be a Wimp task, just that the desktop environment must be
active - which is practically always the case nowadays, unless you run
a single-tasking program that never returns to the Wimp, but in that
case, you would not be much interested in launching another Wimp app
anyway. The reason is simply that the Filer remembers the file and
runs it when it receives control from the Wimp the next time and that
will only happen in the Wimp environment.

> I've written a test app that does exactly as I describe, and it
> works.  Is it really OK, or have I just been lucky?

It is OK. You just need to bear in mind that this is delayed
execution. So, the following sequence will not work:
* Create ObeyFile
* Filer_Run ObeyFile
* Delete ObeyFile (after all, we have dealt with it, haven't we?)
* ... do more things and eventually return control to the Wimp

Doing so will cause an error "ObeyFile not found" to be displayed by
the Filer.

Martin
--
---------------------------------------------------------------------
Martin Wuerthner         MW Software      http://www.mw-software.com/
   ArtWorks 2 -- Designing stunning graphics has never been easier
spamt...@mw-software.com      [replace "spamtrap" by "info" to reply]


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
davehigton  
View profile   Translate to Translated (View Original)
 More options 20 Oct, 09:57
Newsgroups: comp.sys.acorn.programmer
From: davehigton <davehig...@dsl.pipex.com>
Date: Tue, 20 Oct 2009 01:57:20 -0700 (PDT)
Local: Tues 20 Oct 2009 09:57
Subject: Re: Filer_Run from a BASIC application
On 19 Oct, 22:41, Martin Wuerthner <spamt...@mw-software.com> wrote:

OK, Martin, my thanks to you yet again!

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Martin Bazley  
View profile   Translate to Translated (View Original)
 More options 20 Oct, 21:37
Newsgroups: comp.sys.acorn.programmer
From: Martin Bazley <martin.baz...@blueyonder.co.uk>
Date: Tue, 20 Oct 2009 21:37:00 +0100
Subject: Re: Filer_Run from a BASIC application
The following bytes were arranged on 20 Oct 2009 by davehigton :

The solution I've used, in a multitasking BASIC application, is to have
all my Wimp_Poll handling in one procedure, and to call this after every
Filer_Run, like so:

OSCLI "Save ObeyFile"
OSCLI "Filer_Run ObeyFile"
PROCpoll
OSCLI "Delete ObeyFile"

For the Filer to Filer_Run something it needs to have control passed to
it first.

--
  __<^>__   "Your pet, our passion." - Purina
 / _   _ \  "Your potential, our passion." - Microsoft, a few months later
( ( |_| ) )
 \_>   <_/  ======================= Martin Bazley ==========================


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
druck  
View profile   Translate to Translated (View Original)
 More options 20 Oct, 22:29
Newsgroups: comp.sys.acorn.programmer
From: druck <n...@druck.freeuk.com>
Date: Tue, 20 Oct 2009 22:29:11 +0100
Local: Tues 20 Oct 2009 22:29
Subject: Re: Filer_Run from a BASIC application

davehigton wrote:
> On 19 Oct, 22:41, Martin Wuerthner <spamt...@mw-software.com> wrote:

[Huge Snip]

> OK, Martin, my thanks to you yet again!

Please don't quote all the past messages just to add one line at the
end, it's an annoying waste of everyone's time.

---druck


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Martin Wuerthner  
View profile   Translate to Translated (View Original)
 More options 21 Oct, 11:17
Newsgroups: comp.sys.acorn.programmer
From: Martin Wuerthner <spamt...@mw-software.com>
Date: Wed, 21 Oct 2009 12:17:06 +0200
Local: Wed 21 Oct 2009 11:17
Subject: Re: Filer_Run from a BASIC application
In message <49b05dad50.mar...@blueyonder.co.uk>
          Martin Bazley <martin.baz...@blueyonder.co.uk> wrote:

Unfortunately, you have no guarantee that the Filer is passed control
if you call Wimp_Poll once. The only guarantee you have is that your
application only gets a Null event after all events of higher priority
have been delivered to all tasks. This is why calling Wimp_Poll once
as part of the data transfer protocol is enough: you are waiting for a
response to a user message, which has high priority.

Here, you do not know which kind of event is involved at the Filer's
end. It could be a Null event, in which case it could be possible that
your task is called with a Null event again without the Filer having
been given control inbetween.

Martin
--
---------------------------------------------------------------------
Martin Wuerthner         MW Software      http://www.mw-software.com/
   ArtWorks 2 -- Designing stunning graphics has never been easier
spamt...@mw-software.com      [replace "spamtrap" by "info" to reply]


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeremy Nicoll - news posts  
View profile   Translate to Translated (View Original)
 More options 21 Oct, 15:21
Newsgroups: comp.sys.acorn.programmer
From: Jeremy Nicoll - news posts <jn.nntp.scrap...@wingsandbeaks.org.uk>
Date: Wed, 21 Oct 2009 15:21:33 +0100
Local: Wed 21 Oct 2009 15:21
Subject: Re: Filer_Run from a BASIC application

Dave Higton <davehig...@dsl.pipex.com> wrote:
> I've looked up Filer_Run in PRM 2-502 but I'm not clear on the scope
> of the restrictions.

> I've got an application with a very common structure: an application
> directory whose name begins with !; in the directory are, among
> others, a !Run file, and a BASIC RunImage file.  I need the BASIC to
> run a separate application with the same structure.  Is it OK for
> the first RunImage to OSCLI "Filer_Run !TheSecondApp"?

Why not issue: OSCLI("WimpTask Run <TheSecondApp>")

and get it done in a separate task.

If you have a problem with variable resolution:

   OSCLI("Do WimpTask Run <TheSecondApp>")    ?

If you actually know that the file to be run is an Obey file, speed things
up a bit with:

   OSCLI("Do WimpTask Obey <TheSecondApp>.!Run")

--
Jeremy C B Nicoll - my opinions are my own.

Email sent to my from-address will be deleted. Instead, please reply
to newsreply...@wingsandbeaks.org.uk replacing "nnn" by "284".  


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Higton  
View profile   Translate to Translated (View Original)
 More options 21 Oct, 22:13
Newsgroups: comp.sys.acorn.programmer
From: Dave Higton <davehig...@dsl.pipex.com>
Date: Wed, 21 Oct 2009 22:13:05 +0100
Local: Wed 21 Oct 2009 22:13
Subject: Re: Filer_Run from a BASIC application
In message <4ADE2BA7.6030...@druck.freeuk.com>
          druck <n...@druck.freeuk.com> wrote:

> Please don't quote all the past messages just to add one line at the
> end, it's an annoying waste of everyone's time.

I'm getting a bit irked by your postings in this vein.  /You/ are
wasting /our/ time, not to mention your time typing them.

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
druck  
View profile   Translate to Translated (View Original)
 More options 23 Oct, 21:36
Newsgroups: comp.sys.acorn.programmer
From: druck <n...@druck.freeuk.com>
Date: Fri, 23 Oct 2009 21:36:38 +0100
Local: Fri 23 Oct 2009 21:36
Subject: Re: Filer_Run from a BASIC application

Dave Higton wrote:
> In message <4ADE2BA7.6030...@druck.freeuk.com>
>           druck <n...@druck.freeuk.com> wrote:

>> Please don't quote all the past messages just to add one line at the
>> end, it's an annoying waste of everyone's time.

> I'm getting a bit irked by your postings in this vein.  /You/ are
> wasting /our/ time, not to mention your time typing them.

Well buck your ideas up then, you have been here long enough not to need
telling.

---druck


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Higton  
View profile   Translate to Translated (View Original)
 More options 23 Oct, 21:47
Newsgroups: comp.sys.acorn.programmer
From: Dave Higton <davehig...@dsl.pipex.com>
Date: Fri, 23 Oct 2009 21:47:44 +0100
Local: Fri 23 Oct 2009 21:47
Subject: Re: Filer_Run from a BASIC application
In message <gemini.krvbvw002myqd0...@wingsandbeaks.org.uk.invalid>
          Jeremy Nicoll - news posts <jn.nntp.scrap...@wingsandbeaks.org.uk>
wrote:

Thanks, Jeremy, but the point has become moot, as I've been able to
write and test a proper app that doesn't require this.

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matthew Phillips  
View profile   Translate to Translated (View Original)
 More options 24 Oct, 08:46
Newsgroups: comp.sys.acorn.programmer
From: Matthew Phillips <mn...@sinenomine.freeserve.co.uk>
Date: Sat, 24 Oct 2009 08:46:59 +0100
Local: Sat 24 Oct 2009 08:46
Subject: Re: Filer_Run from a BASIC application
In message <4AE213D6.40...@druck.freeuk.com>
 on 23 Oct 2009 druck  wrote:

> Dave Higton wrote:
> > In message <4ADE2BA7.6030...@druck.freeuk.com>
> >           druck <n...@druck.freeuk.com> wrote:

> >> Please don't quote all the past messages just to add one line at the
> >> end, it's an annoying waste of everyone's time.

> > I'm getting a bit irked by your postings in this vein.  /You/ are
> > wasting /our/ time, not to mention your time typing them.

> Well buck your ideas up then, you have been here long enough not to need
> telling.

I had been tempted to get involved in this thread before, but refrained.
I agree with Dave Higton that your "net police" postings can get a bit
irritating for the rest of us and I'm disappointed in this rude reply to Dave
who is one of our most valued contributors.

Could you perhaps alter the subject line when you send such postings to
add something like "[etiquette]", "[net police]" or whatever, so that we can
all set up filters to remove these things from sight.

Alternatively, could you consider posting your (excellent, it has to be
admitted) advice on Usenet style privately to the offending poster off-list?

The standard of posting on Acorn newsgroups is usually pretty good, and it
may well be that we have to thank druck for this in his single-handed
efforts, but I would like to state my agreement with Dave Higton that the
postings can be quite annoying to the rest of us if they come too frequently.
Limit yourself to one a week, perhaps?  That should be enough for other
offenders to get the idea!

--
Matthew Phillips
Dundee


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Etiquette, was: Filer_Run from a BASIC application" by Rob Kendrick
Rob Kendrick  
View profile   Translate to Translated (View Original)
 More options 24 Oct, 13:26
Newsgroups: comp.sys.acorn.programmer
From: Rob Kendrick <n...@rjek.com>
Date: Sat, 24 Oct 2009 13:26:11 +0100
Local: Sat 24 Oct 2009 13:26
Subject: Etiquette, was: Filer_Run from a BASIC application
On Sat, 24 Oct 2009 08:46:59 +0100

Matthew Phillips <mn...@sinenomine.freeserve.co.uk> wrote:
> The standard of posting on Acorn newsgroups is usually pretty good,
> and it may well be that we have to thank druck for this in his
> single-handed efforts, but I would like to state my agreement with
> Dave Higton that the postings can be quite annoying to the rest of us
> if they come too frequently. Limit yourself to one a week, perhaps?
> That should be enough for other offenders to get the idea!

I find them less annoying than the things he's complaining about; at
least I don't have to scroll through pages of quoted text to find his
complaint.

B.


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Filer_Run from a BASIC application" by Vince M Hudd
Vince M Hudd  
View profile   Translate to Translated (View Original)
 More options 24 Oct, 15:38
Newsgroups: comp.sys.acorn.programmer
From: Vince M Hudd <s...@softrock.co.uk>
Date: Sat, 24 Oct 2009 15:38:58 +0100
Local: Sat 24 Oct 2009 15:38
Subject: Re: Filer_Run from a BASIC application

Matthew Phillips <mn...@sinenomine.freeserve.co.uk> wrote:

[replying to Druck]

> I had been tempted to get involved in this thread before, but refrained. I
> agree with Dave Higton that your "net police" postings can get a bit
> irritating for the rest of us

I'm a member of the group called "the rest of us" and Druck's posts don't
annoy me, FWIW - it's what Druck replies to with such posts that do annoy
me.

I'd add that when the problem is excessive quoting, I'm more likely to
delete the post without reading and move to the next if the new text is off
my screen - and I suspect I'm not alone in that. If I'm right, then the rule
of thumb is don't quote too much if you want to be read.

Dave's quoting that Druck complained about didn't actually push the new text
off my screen, but nobody can predict which machine (at what resolution) I
or anyone else will be using.

> and I'm disappointed in this rude reply to Dave who is one of our most
> valued contributors.
> Could you perhaps alter the subject line when you send such postings to
> add something like "[etiquette]", "[net police]" or whatever, so that we
> can all set up filters to remove these things from sight.

That won't work. It'll work in that those who don't want to see such posts
won't, because they'll filter them out. The problem is that the type of
person who needs to be told will probably also filter them out - especially
once they've seen such a reply in response to one of their own posts.

> Alternatively, could you consider posting your (excellent, it has to be
> admitted) advice on Usenet style privately to the offending poster
> off-list?

I thought Druck did do this in the past, only posting here when the email
address was crud - but Dave's address looks perfectly valid. Perhaps Druck's
changed his policy after receiving too many bounces from stupid spamtraps.

[...]

--
Vince M Hudd
Soft Rock Software


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steve Fryatt  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 11:44
Newsgroups: comp.sys.acorn.programmer
From: Steve Fryatt <n...@stevefryatt.org.uk>
Date: Sun, 25 Oct 2009 11:44:09 +0000
Local: Sun 25 Oct 2009 11:44
Subject: Re: Filer_Run from a BASIC application
Vince M Hudd <s...@softrock.co.uk> wrote:

> Matthew Phillips <mn...@sinenomine.freeserve.co.uk> wrote:

> [replying to Druck]

> > I had been tempted to get involved in this thread before, but refrained.
> > I agree with Dave Higton that your "net police" postings can get a bit
> > irritating for the rest of us

> I'm a member of the group called "the rest of us" and Druck's posts don't
> annoy me, FWIW - it's what Druck replies to with such posts that do annoy
> me.

Er, me too...

I wouldn't personally bother posting as Druck does, but I certainly don't
mind that someone does so on my behalf (as it were).

[snip]

> > Alternatively, could you consider posting your (excellent, it has to be
> > admitted) advice on Usenet style privately to the offending poster
> > off-list?

> I thought Druck did do this in the past, only posting here when the email
> address was crud - but Dave's address looks perfectly valid. Perhaps
> Druck's changed his policy after receiving too many bounces from stupid
> spamtraps.

ISTR that the howls of protest from some people at getting 'quiet reminders'
as to netiquette put an end to this policy.

--
Steve Fryatt - Leeds, England

http://www.stevefryatt.org.uk/


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Higton  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 16:28
Newsgroups: comp.sys.acorn.programmer
From: Dave Higton <davehig...@dsl.pipex.com>
Date: Sun, 25 Oct 2009 16:28:58 GMT
Local: Sun 25 Oct 2009 16:28
Subject: Re: Filer_Run from a BASIC application
In message <4AE213D6.40...@druck.freeuk.com>
          druck <n...@druck.freeuk.com> wrote:

> Dave Higton wrote:
> > In message <4ADE2BA7.6030...@druck.freeuk.com>
> >           druck <n...@druck.freeuk.com> wrote:

> >> Please don't quote all the past messages just to add one line at the
> >> end, it's an annoying waste of everyone's time.

> > I'm getting a bit irked by your postings in this vein.  /You/ are
> > wasting /our/ time, not to mention your time typing them.

> Well buck your ideas up then, you have been here long enough not to need
> telling.

Your ideas of net policing were appropriate to the early 1990s,
when everybody had a slow connection and each word had a significant
cost.  Times have changed.  Every posting is delivered in a small
fraction of a second, at a marginal cost of zero or something so
tiny that it might as well be zero.

So, contrary to what you so rudely say, /you/ should buck your
ideas up to 2009.  Your mindset seems to be stuck a long time
in the past.

And get ready for 2010 - it's not long away.

And another thing: you subscribed to this, and other, newsgroups.
In doing so, you implicitly accepted that you were going to read
lots of stuff that was not relevant to you.  You have no grounds
to complain about each piece that you'd prefer not to bother with.

It's a good argument for top posting - that way you don't have to
scroll down to see the reply.

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Higton  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 16:20
Newsgroups: comp.sys.acorn.programmer
From: Dave Higton <davehig...@dsl.pipex.com>
Date: Sun, 25 Oct 2009 16:20:49 GMT
Local: Sun 25 Oct 2009 16:20
Subject: Re: Filer_Run from a BASIC application
In message <298926af50.Matt...@sinenomine.freeserve.co.uk>
          Matthew Phillips <mn...@sinenomine.freeserve.co.uk> wrote:

> Alternatively, could you consider posting your (excellent, it has to be
> admitted) advice on Usenet style privately to the offending poster
> off-list?

Oh, he does that, too.  The trouble is that he does it from an
account that doesn't accept replies, therefore it isn't possible
to argue with him - except by taking the discussion to a public
forum.  In that case one would be repeating private correspondence
in public, which would be bad netiquette.

Which really means that it's Dave Ruck who is guilty of bad
netiquette.

Who'd have thought it?

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alan Wrigley  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 16:56
Newsgroups: comp.sys.acorn.programmer
From: Alan Wrigley <spamha...@keepyourfilthyspamtoyourself.co.uk>
Date: Sun, 25 Oct 2009 16:56:45 +0000
Local: Sun 25 Oct 2009 16:56
Subject: Re: Filer_Run from a BASIC application

Some people wrote:
> Please don't quote all the past messages just to add one line...
> I'm getting a bit irked by your postings in this vein...
> Well buck your ideas up then...
> It's a good argument for top posting...

Boy, am I glad I don't read any of the other Acorn newsgroups any more.

Alan

--
RISC OS - you know it makes cents


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Russell  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 17:29
Newsgroups: comp.sys.acorn.programmer
From: Richard Russell <n...@rtrussell.co.uk>
Date: Sun, 25 Oct 2009 10:29:22 -0700 (PDT)
Local: Sun 25 Oct 2009 17:29
Subject: Re: Filer_Run from a BASIC application
On Oct 24, 2:38 pm, Vince M Hudd <s...@softrock.co.uk> wrote:

> I'm a member of the group called "the rest of us" and Druck's posts don't
> annoy me

They really irritate me.  I'm pretty certain they increase, not
reduce, the amount of stuff I simply don't want (or need) to read.

Richard.
http://www.rtrussell.co.uk/


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
druck  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 18:40
Newsgroups: comp.sys.acorn.programmer
From: druck <n...@druck.org.uk>
Date: Sun, 25 Oct 2009 18:40:23 +0000
Local: Sun 25 Oct 2009 18:40
Subject: Re: Filer_Run from a BASIC application

Dave Higton wrote:
> In message <298926af50.Matt...@sinenomine.freeserve.co.uk> Matthew
> Phillips <mn...@sinenomine.freeserve.co.uk> wrote:

>> Alternatively, could you consider posting your (excellent, it has
>> to be admitted) advice on Usenet style privately to the offending
>> poster off-list?

> Oh, he does that, too.  The trouble is that he does it from an
> account that doesn't accept replies,

All my accounts accept replies.

> therefore it isn't possible to argue with him - except by taking the
> discussion to a public forum.

Perhaps the argument for quoting entire messages and adding a single
line isn't powerful enough to make it past my content filters.

> Which really means that it's Dave Ruck who is guilty of bad
> netiquette.

Really, wow.

> Who'd have thought it?

I could mention something about whit at this point, or at least half of
one. :-)

---druck


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Higton  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 21:26
Newsgroups: comp.sys.acorn.programmer
From: Dave Higton <davehig...@dsl.pipex.com>
Date: Sun, 25 Oct 2009 21:26:09 GMT
Local: Sun 25 Oct 2009 21:26
Subject: Re: Filer_Run from a BASIC application
In message <4AE49B97.1080...@druck.org.uk>
          druck <n...@druck.org.uk> wrote:

Just quit your whining, whingeing and time-wasting.  Try making
a positive contribution to RISC OS.  It's years since you did.

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Kendrick  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 21:47
Newsgroups: comp.sys.acorn.programmer
From: Rob Kendrick <n...@rjek.com>
Date: Sun, 25 Oct 2009 21:47:56 +0000
Local: Sun 25 Oct 2009 21:47
Subject: Re: Filer_Run from a BASIC application
On Sun, 25 Oct 2009 21:26:09 GMT

Dave Higton <davehig...@dsl.pipex.com> wrote:
> Just quit your whining, whingeing and time-wasting.  Try making
> a positive contribution to RISC OS.  It's years since you did.

What, you mean like exhibiting and helping running shows, providing
technical support for exiting customers, and policing here?

It smells strongly like you've only posted this so you can antagonise
by yet again not snipping.  And thinking it's about the bytes is just
short-sighted.

B.


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Higton  
View profile   Translate to Translated (View Original)
 More options 25 Oct, 22:14
Newsgroups: comp.sys.acorn.programmer
From: Dave Higton <davehig...@dsl.pipex.com>
Date: Sun, 25 Oct 2009 22:14:29 GMT
Local: Sun 25 Oct 2009 22:14
Subject: Re: Filer_Run from a BASIC application
In message <20091025214756.2a16b...@trite.i.flarn.net.i.flarn.net>
          Rob Kendrick <n...@rjek.com> wrote:

> On Sun, 25 Oct 2009 21:26:09 GMT
> Dave Higton <davehig...@dsl.pipex.com> wrote:

> > Just quit your whining, whingeing and time-wasting.  Try making
> > a positive contribution to RISC OS.  It's years since you did.

> What, you mean like exhibiting and helping running shows, providing
> technical support for exiting customers, and policing here?

I'll pass on the first two because I don't know if he does anything.
As for policing: I think he's a hindrance rather than a help.

> It smells strongly like you've only posted this so you can antagonise
> by yet again not snipping.  And thinking it's about the bytes is just
> short-sighted.

I'm reacting because I'm fed up with his attempts at policing, which
waste a lot of time, bandwidth and "nervous energy".  I don't want
to let him get away with it.

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Kendrick  
View profile   Translate to Translated (View Original)
 More options 26 Oct, 00:47
Newsgroups: comp.sys.acorn.programmer
From: Rob Kendrick <n...@rjek.com>
Date: Mon, 26 Oct 2009 00:47:00 +0000
Subject: Re: Filer_Run from a BASIC application
On Sun, 25 Oct 2009 22:14:29 GMT

Dave Higton <davehig...@dsl.pipex.com> wrote:
> > It smells strongly like you've only posted this so you can
> > antagonise by yet again not snipping.  And thinking it's about the
> > bytes is just short-sighted.  

> I'm reacting because I'm fed up with his attempts at policing, which
> waste a lot of time, bandwidth and "nervous energy".  I don't want
> to let him get away with it.

A moment ago, you were claiming bandwidth did not matter.  And I think
I spend more time scrolling pointlessly to the bottom of badly-trimmed
mails than I do reading Dave's bitchings.

I have no idea what "nervous energy" is, but it sounds like something
one might hear about on Living TV.

B.


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Higton  
View profile   Translate to Translated (View Original)
 More options 26 Oct, 20:27
Newsgroups: comp.sys.acorn.programmer
From: Dave Higton <davehig...@dsl.pipex.com>
Date: Mon, 26 Oct 2009 20:27:46 GMT
Local: Mon 26 Oct 2009 20:27
Subject: Re: Filer_Run from a BASIC application
In message <20091026004700.4900f...@trite.i.flarn.net.i.flarn.net>
          Rob Kendrick <n...@rjek.com> wrote:

> A moment ago, you were claiming bandwidth did not matter.  And I think
> I spend more time scrolling pointlessly to the bottom of badly-trimmed
> mails than I do reading Dave's bitchings.

I'm not complaining about waste of bandwidth; I really don't mind at
all.  I'm pointing out Dave Ruck's faulty logic; he /did/ complain
of wasted bandwidth, but then proceeded to waste more bandwidth
himself, in part directly by his clumsy, irritating attempts at
net-copping, in part by the argument that he inevitably stirs up.

Dave


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Kendrick  
View profile   Translate to Translated (View Original)
 More options 27 Oct, 00:00
Newsgroups: comp.sys.acorn.programmer
From: Rob Kendrick <n...@rjek.com>
Date: Tue, 27 Oct 2009 00:00:43 +0000
Local: Tues 27 Oct 2009 00:00
Subject: Re: Filer_Run from a BASIC application
On Mon, 26 Oct 2009 20:27:46 GMT

Dave Higton <davehig...@dsl.pipex.com> wrote:
> > A moment ago, you were claiming bandwidth did not matter.  And I
> > think I spend more time scrolling pointlessly to the bottom of
> > badly-trimmed mails than I do reading Dave's bitchings.  

> I'm not complaining about waste of bandwidth; I really don't mind at
> all.  I'm pointing out Dave Ruck's faulty logic; he /did/ complain
> of wasted bandwidth, but then proceeded to waste more bandwidth
> himself, in part directly by his clumsy, irritating attempts at
> net-copping, in part by the argument that he inevitably stirs up.

So bandwidth doesn't matter, then it does, then it doesn't?  If druck's
efforts are a success, which I truly hope they are, then we'll all be
saved time and sanity.

B.


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 27   Newer >
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google