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
| var db = firebase.firestore(); | |
| var content = require("./sourceData.json"); | |
| content && | |
| Object.keys(content).forEach(contentKey => { | |
| const nestedContent = content[contentKey]; | |
| if (typeof nestedContent === "object") { | |
| Object.keys(nestedContent).forEach(docTitle => { | |
| firebase | |
| .firestore() |
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
| ---------------------------------------------------------------------------------------------------- | |
| mtr www.google.com | |
| mtr --report google.com | |
| mtr -4b google.com #combined IPv4 only and IP addresses | |
| mtr -n google.com #display numeric IP addresses instead of host names | |
| mtr -c5 google.com #limit the number of pings to a specific value | |
| mtr -r -c 5 google.com >mtr-report #report mode using the -r flag | |
| mtr -rw -c 5 google.com >mtr-report #wide report mode | |
| mtr -i 2 google.com #The default interval between ICMP ECHO requests is one second | |
| mtr --tcp test.com #use TCP SYN packets or UDP datagrams instead of the default ICMP ECHO requests |
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
| <?php | |
| // Group detection by IP address | |
| // | |
| // [Region Abbreviation, Military/Government] | |
| // Force Varnish to NEVER Cache this page | |
| header("Cache-Control: no-cache, must-revalidate"); | |
| header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); | |
| // JSON Headers |
OlderNewer