chrome://flags/#top-chrome-md => change it to refresh
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
((ipconfig | findstr [0-9].\.)[0]).Split()[-1] |
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
data:text/html;charset=utf-8, | |
<head> | |
<meta http-equiv="refresh" content="0; url=http://localhost:64090/"/> | |
</head> | |
<body> | |
<style>body{margin:25px;font:16px calibri,'segoe ui'}</style> | |
<h3>Venter på svar</h3> | |
<ul> | |
<li>Set breakpoints in JavaScript/TypeScript in Visual Studio</li> | |
<li>Automatically break on script errors</li> |
I hereby claim:
- I am kristofferrisa on github.
- I am kristofferrisa (https://keybase.io/kristofferrisa) on keybase.
- I have a public key ASDp5JWiiMe8l5jO9zJoUA3SP6zRDHzfGsZL7pdnFGuDbAo
To claim this, I am signing this object:
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
#Add a new migration | |
dotnet ef migrations add InitialCreate | |
#Remove the most recent migration | |
dotnet ef migrations remove | |
#Update the database the latest version | |
dotnet ef database update |
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
dotnet ef migrations add {MigrationName} | |
dotnet ef migrations remove | |
dotnet ef database update |
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
Get-Content -Path "C:\scripts\test.txt" -Wait |
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
<a href="example.com" target="_blank" rel="noopener noreferrer">example.com</a> | |
<!-- source: https://dev.to/ben/the-targetblank-vulnerability-by-example --> |
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
using System.Net.Http; | |
using (var client = new HttpClient()) | |
{ | |
var responseString = client.GetStringAsync("http://www.example.com/recepticle.aspx"); | |
} |