Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
This file contains 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
--- Source: http://solaimurugan.blogspot.ru/2010/10/list-out-all-forien-key-constraints.html | |
SELECT | |
tc.constraint_name, | |
tc.constraint_type, | |
tc.table_name, | |
kcu.column_name, | |
tc.is_deferrable, | |
tc.initially_deferred, | |
rc.match_option AS match_type, |
This file contains 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
/* | |
* This is free and unencumbered software released into the public domain. | |
* | |
* For more information, please refer to <https://unlicense.org> | |
*/ | |
//Regular text | |
#define BLK "\e[0;30m" //Black | |
#define RED "\e[0;31m" //Red | |
#define GRN "\e[0;32m" //Green |
This file contains 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
# set VScode as editor: | |
# git config --global core.editor "code --wait" | |
# open in VScode: | |
# git config --global -e | |
# alias `!git` | |
# If the alias expansion is prefixed with an exclamation point(`!`), it will be treated as a shell command. | |
[user] | |
email = [email protected] | |
name = Soikat Rahman | |
# username = dev-SR |