Tips to secure your smartphone
Secure with Password One of the most basic security tips, Having no access protection at all is just foolish. Swipe patterns are ok, but greasy finger-trails could reveal too much.A four-digit PIN is an improvement but using a strong passcode is the…
Tips for IIS performance tuning
IIS performance tuning Custom Error Pages Although this is quite simple to do, few people seem to take advantage of error page customization. Just select the “Custom Errors” tab in MMC and map each error, such as 404, to the appropriate HTML…
Tips for How to write Better Code
Use a Coding Standard It’s easy to write a line of code, unorganized code, but it’s hard to maintain such code. Good code typically follows some standard for naming conventions, formatting, etc. Such standards are nice because they make things…
Tips to avoid JavaScript Mistakes
– You’re Using Global Variables If you’re just getting started with JavaScript, you probably think it’s a great thing that all variables are global. Actually, if you’re just getting started, you might not know what that means. Global variables are…
Tips to protect your site from hackers
Keep software up to date It may seem obvious, but ensuring you keep all software up to date is vital in keeping your site secure. This applies to both the server operating system and any software you may be running on your website such as a CMS or forum.…
Top 5 free mobile device emulators for testing your site
A mobile phone emulator lets you check the responsiveness and functionality of the website across different mobile platforms, such as iPhone, iPad, Android and BlackBerry, without actually having the devices in hand. Mobile emulators can help you…
Work with your browser without using mouse
browser without using mouse Use browser shortcuts. Control+I — Open Favorites Control+H — Open History Control+N — Open a new window Control+O — Open another document or webpage Press Alt + letter underlined on toolbar —…
Storing objects in IndexedDB in HTML5
Storing objects in IndexedDB in HTML5 IndexedDB has a concept of “Object Stores.” You can think of this as a typical database table.Object stores have data (obviously) but also a keypath and an optional set of indexes. Keypaths are basically unique…
How to Check your browser supports IndexedDB or not
Browser supports IndexedDB The very first thing we should do is check for IndexedDB support. While there are tools out there that provide generic ways to check for browser features, we can make this much simpler since we’re just checking for one…
What is IndexedDB in HTML5 ?
IndexedDB provides a way for you to store large amounts of data on your user’s browser. Any application that needs to send a lot of data over the wire could greatly benefit from being able to store that data on the client instead. Of course storage is…