| 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 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
| SELECT | |
| DB_NAME(DB_ID()) [DB_Name], | |
| TYPE, | |
| name, | |
| COUNT(*) AS Object_Count, | |
| SUM(LinesOfCode) AS LinesOfCode | |
| FROM ( | |
| SELECT | |
| TYPE, | |
| name, |
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
| SELECT SUBSTRING(detail.text, | |
| requests.statement_start_offset / 2, | |
| (requests.statement_end_offset - requests.statement_start_offset) / 2) | |
| FROM sys.dm_exec_requests requests | |
| CROSS APPLY sys.dm_exec_sql_text (requests.plan_handle) detail | |
| WHERE requests.session_id = 82 |
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
| {"lastUpload":"2018-11-15T05:44:06.638Z","extensionVersion":"v3.2.0"} |
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
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
| "profiles": |
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
| QWidget, QTabWidget::pane, QTabWidget::tab-bar { | |
| background-color: #424546; | |
| } | |
| QTabBar::tab { | |
| background-color: #424546; | |
| color:white; | |
| } |
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
| # | |
| # Recommended minimum configuration: | |
| # | |
| # Example rule allowing access from your local networks. | |
| # Adapt to list your (internal) IP networks from where browsing | |
| # should be allowed | |
| acl localnet src 0.0.0.1-0.255.255.255 # RFC 1122 "this" network (LAN) | |
| acl localnet src 10.0.0.0/8 # RFC 1918 local private network (LAN) | |
| acl localnet src 100.64.0.0/10 # RFC 6598 shared address space (CGN) |
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
| #!/bin/bash | |
| currentUser=$(whoami) | |
| files=$(sudo find /home/$currentUser/.ssh -type f) | |
| count=0 | |
| for file in $files; do | |
| email=$(sudo grep -o '\b[A-Za-z0-9._%+-]\+@[A-Za-z0-9.-]\+\.[A-Za-z]\{2,\}\b' "$file") | |
| if [ -n "$email" ]; then | |
| email_list[count]=$email |