Use Your MAC Without a Mouse
Use these “finder” keyboard shortcuts. Command+A — Select all items in the front Finder window (or desktop if no window is open) Option+Command+A — Deselect all items Shift+Command+A — Open the Applications folder Command+C — Copy…
Work on MAC-OSX without using mouse or Touchpad
If you have Universal Access, use these keyboard shortcuts to manipulate your cursor in lieu of using your mouse. To set this up, go to your Universal Access preferences and activate Mouse Keys. 8 — Move Up 2 — Move Down 4 — Move Left 6…
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 —…
How to Use Your Computer Without a Mouse-Part-2
Computer Without a Mouse Use these general folder/shortcut controls. F4 — Selects the Go To A Different Folder box and moves down the entries in the box (if the toolbar is active in Windows Explorer) F5 — Refreshes the current window. F6…
How to Use Your Computer Without a Mouse-Part-1
Computer Without a Mouse If your operating system has Mouse Keys, Go to Start > Control Panel > Ease of Access to activate it. This will allow you to use the arrow keys to control your cursor in lieu of the mouse. Use these Windows system key…
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…
Opening a database in HTML5
This database is local to the browser and only available to the user. IndexedDB databases follow the same rules as cookies and local storage. A database is unique to the domain it was loaded from. So for example, a database called “Foo” created at…
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…
Creating Simple Event with MySQL
Creating a First Event Creating an Event is somewhat like creating stored procedure or user defined function in MySQL. You will have DELIMITER, BEGIN, DO and END keywords. As mentioned earlier we can define the execution time for the event while creating…