Snippets for http://fagner.co/2020/09/06/Live-reload-in-Dot-Net-Core/
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
- Scroll up or down in command prompt | |
- CTRL + Shift + (Up/Down OR PgUp/PgDown) |
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 |
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
[ | |
{ | |
"name": "Åland Islands", | |
"capital": "Mariehamn", | |
"altSpellings": [ | |
"AX", | |
"Aaland", | |
"Aland", | |
"Ahvenanmaa" | |
], |
Snippets for http://fagner.co/2016/01/01/TypeScript-+-Webpack/