Snippets for http://fagner.co/2014/08/15/Solve-Simple-Problem-RabbitMQ-Setup/
Snippets for http://fagner.co/2016/01/01/TypeScript-+-Webpack/
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
| [ | |
| { | |
| "name": "Åland Islands", | |
| "capital": "Mariehamn", | |
| "altSpellings": [ | |
| "AX", | |
| "Aaland", | |
| "Aland", | |
| "Ahvenanmaa" | |
| ], |
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
| git log --all --grep='criteria' |
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
| # Windows | |
| # Reset TCP/IP configuration to try to fix faulty NIC | |
| # Removes all user-configured IPv4 (Internet Protocol version 4) settings | |
| netsh int ip reset resetlog.txt | |
| # Check if port is binded to another service in the machine | |
| Get-Process -Id (Get-NetTCPConnection -LocalPort YourPortNumberHere).OwningProcess | |
| Get-Process -Id (Get-NetUDPEndpoint -LocalPort YourPortNumberHere).OwningProcess |