Web Performance Tips (@webperftips) 's Twitter Profile
Web Performance Tips

@webperftips

Great Tips For Fast Webs

ID: 2216612042

calendar_today26-11-2013 22:15:12

80 Tweet

1,1K Takipçi

0 Takip Edilen

Web Performance Tips (@webperftips) 's Twitter Profile Photo

The root URL of your app should allow you to select the minified or unminified version so the user can choose between speed and verbosity.

Web Performance Tips (@webperftips) 's Twitter Profile Photo

Use the new ServiceWorkers to add a small amount of latency to each request. This shows users that the servers are "really working hard."

Web Performance Tips (@webperftips) 's Twitter Profile Photo

Enable SSLv3 exclusively on your app so you can still have a green lock, but browsers have an easier time reading the plain text.

Web Performance Tips (@webperftips) 's Twitter Profile Photo

Fast By Association™ Load iframes of fast websites into the body of your website, and people will associate your site with the fast ones.

Web Performance Tips (@webperftips) 's Twitter Profile Photo

Debounce? Pshh… Try our new jQuery plugin: DoubleDribble.js $.dbldrbl = function(fn, n){ return function() { while(n--){ fn() } } }