Pages

Showing posts with label client. Show all posts
Showing posts with label client. Show all posts

Friday, July 14, 2017

Diablo III Beta 0 3 Client Screenshot

Diablo III Beta 0 3 Client Screenshot


Hi Its me again!

While waiting for the server to be back, this is the new screenshot of the 0.3 BETA client


Damn cant wait till the server is back and running! :P

Read more »

Monday, June 19, 2017

Diablo III Beta 0 2 Client Screenshot

Diablo III Beta 0 2 Client Screenshot


Hi Guys!

Well cant wait for the actual release of this game, im a BIG Fan, lol *speechless*

Read more »

Sunday, May 28, 2017

Detect client speed using JavaScript

Detect client speed using JavaScript


You can detect how long it toke for the browser to load the page. With load I mean the download time. Have a look at window.performance it contains all the timings. Also see html5rocks.

if (window.performance && window.performance.timing)
{
var download_time = (window.performance.timing.responseEnd  - window.performance.timing.responseStart);
var
speed = ($(html).html().length) / download_time;
if (speed < 400)
{
alert(slow);
}
else {
alert(fast);
}
}

Note that this works best it the page size is large. For small pages the TCP/IP overhead for is large compared to your download time. My page was about 19304 bytes and I was able to detect mobile vs desktop.

Also see this stackoverflow question.

This does not work for IE8 and Safari
Read more »