Earlier quoted context omitted.
How was it possible to read "easier way to test my ping than pulling up a terminal" but not finish the sentence to "especially when I'm on my phone or any other device that doesn't have a terminal"?
especially when I'm on my phone or any other device that doesn't have a terminal Mine does, and in fact I have used the ping command from it before. I highly recommend having a terminal app.
Show HN: An ultra-light-weight tool to quickly test your ping
21–30 of 64 posts
Re: Show HN: An ultra-light-weight tool to quickly test your ping
#22I use https://www.cloudping.info/ Although it’s sad to see they put political messages in it now
Re: Show HN: An ultra-light-weight tool to quickly test your ping
#23I use https://www.cloudping.info/ Although it’s sad to see they put political messages in it now
I would take those numbers with a grain of salt. That site claims I have a 3ms ping to a digital ocean droplet in Singapore. Either I have proven faster-than-light information transfer or that measurement is off by several orders of magnitude.
Re: Show HN: An ultra-light-weight tool to quickly test your ping
#24Re: Show HN: An ultra-light-weight tool to quickly test your ping
#25To anyone who just started typing out something to inform me that "it doesn't matter on _______ site because _______": there are four purposes of encryption, not just "confidentiality."
Re: Show HN: An ultra-light-weight tool to quickly test your ping
#26Sorry for being unappreciative but... is this... satire? I honestly don't know... 'easier way to test my ping than pulling up a terminal', ... so a non https website that needs javascript is better than terminal-shortcut + $ ping 8.8.8.8 (or whatever you want to ping, you also could set up an alias/function in your .bashrc to do something more complex)... can I hit that point home: "easier way than pulling up my term…
Re: Show HN: An ultra-light-weight tool to quickly test your ping
#27Sorry for being unappreciative but... is this... satire? I honestly don't know... 'easier way to test my ping than pulling up a terminal', ... so a non https website that needs javascript is better than terminal-shortcut + $ ping 8.8.8.8 (or whatever you want to ping, you also could set up an alias/function in your .bashrc to do something more complex)... can I hit that point home: "easier way than pulling up my term…
How was it possible to read "easier way to test my ping than pulling up a terminal" but not finish the sentence to "especially when I'm on my phone or any other device that doesn't have a terminal"?
Re: Show HN: An ultra-light-weight tool to quickly test your ping
#28I use https://www.cloudping.info/ Although it’s sad to see they put political messages in it now
Re: Show HN: An ultra-light-weight tool to quickly test your ping
#29Earlier quoted context omitted.
especially when I'm on my phone or any other device that doesn't have a terminal Mine does, and in fact I have used the ping command from it before. I highly recommend having a terminal app.
Why do you highly recommend it? Don't think I've ever thought while using a phone "damn I wish I had a Linux terminal handy"
Re: Show HN: An ultra-light-weight tool to quickly test your ping
#30Great start! One way you could improve this is to not stop at just reporting a single data point but report the P50, P75, and P90 of a reasonable set of data points. Also, it's probably better to call this HTTP latency rather than ping since the latter is on a much lower layer in the OSI model.
Labelling this a "ping" was a poor choice on my part. I meant ping in the RTT/latency sense, rather than an ICMP sense. Calling it "HTTP latency" is a huge improvement that clearly (and concisely) gets the idea across, I made a quick edit to do just that.
RE: recording a range of samples and reporting percentiles: My hope is to keep the code super simple and the delay to visible info in the UI very low. Elsewhere in the thread folks mentioned the excellent http://gcping.com/. That site has a ton of destinations to test latency to and reports the median of a number of samples - that is a really cool feature set! I don't think I'll be able to do anything close to that in tens of lines of inline JS, unfortunately.
Still, the measurements start super noisy and I'd like to ensure my site gives useful data even at the start. I did a bit of a hack to hopefully force the RTT to converge to something useful. I now fire off 3 time-delayed measurements after the page loads. By the time the third finishes, the numbers appear to be pretty stable.