Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > NZ Computing > Newsreader?

Reply
Thread Tools

Newsreader?

 
 
Nick Rennie
Guest
Posts: n/a
 
      03-29-2009
Hi ,

Does anyone know of a newsreader that you can schedule downloads? Just want
to be able to use my off-peak Gigs.

Ta!

Nick


 
Reply With Quote
 
 
 
 
oneofus
Guest
Posts: n/a
 
      03-29-2009
Nick Rennie wrote:
> Hi ,
>
> Does anyone know of a newsreader that you can schedule downloads? Just want
> to be able to use my off-peak Gigs.
>
> Ta!
>
> Nick
>
>

http://www.binaryboy.com/
 
Reply With Quote
 
 
 
 
Dave Doe
Guest
Posts: n/a
 
      03-29-2009
In article <gqoud0$t55$>, says...
> Hi ,
>
> Does anyone know of a newsreader that you can schedule downloads? Just want
> to be able to use my off-peak Gigs.


Microplanet Gravity - dunno where you get it thesedays.

--
Duncan
 
Reply With Quote
 
Stephen Worthington
Guest
Posts: n/a
 
      03-30-2009
On Mon, 30 Mar 2009 11:57:36 +1300, "Nick Rennie" <>
wrote:

>Hi ,
>
>Does anyone know of a newsreader that you can schedule downloads? Just want
>to be able to use my off-peak Gigs.
>
>Ta!
>
>Nick
>


You can get any GUI newsreader to download on schedule using a tool
such as AutoHotKey:

http://www.autohotkey.com

I used to use this to make Agent download during off peak time, before
I changed ISPs. Here is the script I used:

================================================== ====================
; Start Agent 5 downloading all marked bodies at 02:00.

;Calculate the number of milliseconds between now and 02:00. Allow an
extra
;margin to cover where the clocks here and at the ISP are not quite
matching.
now := A_Now
sec := substr(now, -1, 2)
min := substr(now, -3, 2)
hour := substr(now, -5, 2)
if (hour > 2) {
hourdiff := 25 - hour
} else {
hourdiff := 1 - hour
}
mindiff := 60 - min
secdiff := 60 - sec
delayms := (3600*hourdiff + 60*mindiff + secdiff + 1)*1000

;Sleep until just after 02:00.
sleep delayms

;Activate Agent
WinWait, Agent 5 - ,
IfWinNotActive, Agent 5 - , , WinActivate, Agent 5 - ,
WinWaitActive, Agent 5 - ,

;Tell Agent to "Get Bodies for Marked Messages".
Send, {ALTDOWN}a{ALTUP}g
================================================== ====================
 
Reply With Quote
 
Mike Dee
Guest
Posts: n/a
 
      03-30-2009
Dave Doe <> wrote:

> In article <gqoud0$t55$>,


>> Does anyone know of a newsreader that you can schedule downloads?
>> Just want to be able to use my off-peak Gigs.

>
> Microplanet Gravity - dunno where you get it thesedays.


Its moved to sourceforge:
<http://mpgravity.sourceforge.net/>

Has been updated just recently.

--
dee
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57