- Subresource Integrity check : https://sritest.io/
- Calculate hash for sub resource integrity: https://www.srihash.org/
- Compatibility tables for support of HTML5, CSS3, SVG and other technologies in various browsers: http://caniuse.com/
- Automated Security Analyser for ASP.NET Websites: https://asafaweb.com/
- .NET sandbox for developers to quickly try out code and share code snippets: https://dotnetfiddle.net/
- Package search for .NET Core packages: http://packagesearch.azurewebsites.net/
- Generate C# classes from JSON: http://json2csharp.com/
- CSS Optimization Checker: http://www.testmycss.com/
- Expose a local server behind a NAT or firewall to the internet: https://ngrok.com/. Command: ngrok http [port] -host-header="localhost:[port]"
This file contains 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
Command | |
Get-ChildItem MyLibrary.dll | % { [Reflection.Assembly]::LoadFile($_.FullName).GetReferencedAssemblies() | % { $_.Name + ".dll" } } |
This file contains 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
1. git remote -v (List all the remote repositories) | |
2. git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git | |
3. git fetch upstream (Pull the change from upstream repository) | |
4. git checkout master (Checkout master branch on your local) | |
5. git merge upstream/master (Merge the change from upstream/master to local master branch) |
This file contains 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
namespace Analogy | |
{ | |
/// <summary> | |
/// This example shows that a library that needs access to target .NET Standard 1.3 | |
/// can only access APIs available in that .NET Standard. Even though similar the APIs exist on .NET | |
/// Framework 4.5, it implements a version of .NET Standard that isn't compatible with the library. | |
/// </summary>INetCoreApp10 | |
class Example1 | |
{ | |
public void Net45Application(INetFramework45 platform) |
- List View Item Selected Highlight Color.
<item name="android:colorActivatedHighlight">@android:color/transparent</item>
- Add the below rewrite rule in web.config file.
<rewrite>
<outboundRules rewriteBeforeCache="true">
<rule name="Remove Server header">
<match serverVariable="RESPONSE_Server" pattern=".+" />
<action type="Rewrite" value="My Server" />
</rule>
</outboundRules>
- https://github.com/madskristensen/TemplateCreator
- https://marketplace.visualstudio.com/items?itemName=MadsKristensen.TemplateCreator
- https://blogs.msdn.microsoft.com/dotnet/2017/04/02/how-to-create-your-own-templates-for-dotnet-new/
- https://github.com/dotnet/templating
- https://github.com/dotnet/templating/wiki/Available-templates-for-dotnet-new
- https://github.com/dotnet/templating/wiki/Post-Action-Registry
- http://pioneercode.com/post/how-to-create-a-dot-net-new-project-template-in-dot-net-core
- https://github.com/dotnet/dotnet-template-samples
This file contains 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
$cert = New-SelfSignedCertificate -DnsName "localhost", "localhost" -CertStoreLocation "cert:\LocalMachine\My" -NotAfter (Get-Date).AddYears(5) | |
$thumb = $cert.GetCertHashString() | |
For ($i=44300; $i -le 44399; $i++) { | |
netsh http delete sslcert ipport=0.0.0.0:$i | |
} | |
For ($i=44300; $i -le 44399; $i++) { | |
netsh http add sslcert ipport=0.0.0.0:$i certhash=$thumb appid=`{214124cd-d05b-4309-9af9-9caa44b2b74a`} | |
} |
- https://docs.microsoft.com/en-us/visualstudio/ide/how-to-create-project-templates
- https://docs.microsoft.com/en-us/visualstudio/ide/how-to-create-project-templates
- https://docs.microsoft.com/en-us/visualstudio/extensibility/getting-started-with-the-vsix-project-template
- https://docs.microsoft.com/en-us/visualstudio/extensibility/signing-vsix-packages
- https://docs.microsoft.com/en-us/visualstudio/extensibility/shipping-visual-studio-extensions
- https://docs.microsoft.com/en-us/visualstudio/ide/how-to-create-multi-project-templates?view=vs-2019
- https://docs.microsoft.com/en-us/visualstudio/extensibility/how-to-create-an-atom-feed-for-a-private-gallery?view=vs-2019
- https://docs.microsoft.com/en-us/visualstudio/ide/template-tags?view=vs-2019
OlderNewer