Results 1 to 18 of 18

Thread: Time it takes to Download.

  1. #1
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default Time it takes to Download.

    Re-written Script:

    Code:
    Const
      MegDownloading = 50; //MegaBytes Downloading.
      KBps = 32; //KiloBytes per Second Downloading at.
    
    function DecDown(e: Extended): extended;
    var i: integer;
    begin
      for i:= 1 to Length(floattostr(e)) do
        begin
          if (copy(floattostr(e), i, 1) = '.') then
            begin
              result:= strtofloat(copy(floattostr(e), 1, i + 2));
              exit;
            end;
        end;
    end;
      
    var Bytes, Speed: integer;
    var Time: extended;
    begin
      ClearDebug;
     Bytes:= MegDownloading * 1000000;
     Speed:= (KBps * 100)*8;
     Time:= (Bytes/Speed)/60;
      Writeln(inttostr(MegDownloading) + ' Meg @ ' + inttostr(KBps) + 'KB/ps Takes Approx: ')
     if (Time < 60) then
       Writeln(floattostr(DecDown(Time)) + ' Minute[s].');
     if (Time > 1) and (Time > 60) then
       Writeln(floattostr(DecDown(Time/60)) + ' Hour[s].');
    end.

  2. #2
    Join Date
    Feb 2006
    Location
    Las Vegas, NV
    Posts
    939
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    cool, its fairly accurate.. altho mine goes like 2x faster than that

    imagine this...

    Downloading "100 Meg" at "1250 KB/ps",
    Takes an estimate time of,
    1.666 Minutes
    Successfully executed
    haha that would pwn
    Busy with real life. I'll still be around occasionally.
    Current Mood:


  3. #3
    Join Date
    Feb 2006
    Location
    Aussie
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hm, y do you got

    Code:
    InternetSpeed/8
    ???

  4. #4
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by jagex_fagex
    hm, y do you got

    Code:
    InternetSpeed/8
    ???
    That's your max download speed.

    256kb ps Internet speed can max download at 32kbps. Your upload speed is half of the download speed

    512kbps has a max of 64kbps.. And so on.

  5. #5
    Join Date
    Feb 2006
    Location
    Aussie
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmm ok, lol, never heard that before...

  6. #6
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I re-wrote it much Simpler Things to do when i'm bored

  7. #7
    Join Date
    Feb 2006
    Location
    Wisconsin (like farm-town, USA) :P
    Posts
    254
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What you said in your last post makes me mad at my internet I'm constantly downloading at 20kb/s, and constantly upload at 20kb/s. Growl!

  8. #8
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Ahaha

    My internet has spazzes and Downloads at 600kbps sometimes. That's why we havn't changed companys, yet

  9. #9
    Join Date
    Feb 2006
    Location
    Wisconsin (like farm-town, USA) :P
    Posts
    254
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Your internet can go die XD

  10. #10
    Join Date
    Feb 2006
    Location
    Aussie
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by driger1592
    Your internet can go die XD
    or, he could make it always go at 600kbps and give it to me

  11. #11
    Join Date
    Mar 2006
    Location
    Rural New Zealand
    Posts
    688
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ya net speed is x divided by 8
    Come Add A Few Hits To My Site
    Cakemix lives on

  12. #12
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    .. What brought that up?

  13. #13
    Join Date
    Mar 2006
    Location
    Rural New Zealand
    Posts
    688
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well x being your net speed and 8 being the divider unless you live close ass to a interchange
    Come Add A Few Hits To My Site
    Cakemix lives on

  14. #14
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Um, Jive.. No-one asked the question for you to reply to. Do you find fun out of Spamming? Because you're doing it everywhere, lately.

  15. #15
    Join Date
    Mar 2006
    Location
    Rural New Zealand
    Posts
    688
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hm, y do you got


    Code:
    InternetSpeed/8???
    ya so there you go
    Come Add A Few Hits To My Site
    Cakemix lives on

  16. #16
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeh, and if you had read it, Jive, you would see that i answered that a while ago.

    Please stop trying to be smart, you're digging yourself into an even bigger hole.

  17. #17
    Join Date
    Jun 2006
    Location
    USA
    Posts
    428
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    50 Meg @ 400KB/ps Takes Approx:
    2.6 Minute[s].

    Yay fast internet ^_^.

  18. #18
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    If that's what you have i hate you, Abyssal.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Dial-up takes FOREVER to load.
    By Harry in forum News and General
    Replies: 25
    Last Post: 12-18-2007, 09:45 AM
  2. Every Time I Click a download link...No Permission
    By borncuban67 in forum SRL Site Discussion
    Replies: 5
    Last Post: 10-07-2007, 09:27 PM
  3. Andrew takes the cake...
    By gerauchert in forum The Bashing Club / BBQ Pit
    Replies: 39
    Last Post: 08-18-2007, 10:42 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •