-
configure the user which will be used by git
-
Of course you should use your name
git config --global user.name "Example Surname"
-
Same for the email address
git config --global user.email "[email protected]"
- A function that enables processing to continue without waiting for function to return the value.
- In this we can match a word or phrase in multiple columns and fetch rows accordingly. The Full-text searches are supported for MyISAM tables only ex. : SELECT * FROM articles WHERE MATCH (title,body) AGAINST ('database');
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
// I have used $(this) so it "listens" on any part of the webpage (document) | |
// Change this to a single or series of elements if required | |
$(this).live("keyup", function(e) { | |
if($("input, textarea").is(":focus")) { | |
// Do nothing because the user might be typing | |
return false; | |
} else { | |
switch(e.keyCode) { | |
NewerOlder