Category: Web
HTTP/2 Server Push and ASP.NET MVC
Tomasz Pęczek (@tpeczek) shows how to use the new HTTP2 Server Push on #ASPNET MVChttps://tpeczek.blogspot.pt/2016/12/one-of-new-features-in-http2-is-server.html
A FLUENT UNIT TESTING LIBRARY FOR ASP.NET CORE MVC
This fluent extensions for ASP.NET Core seem rather interesting.
NIST’s new password rules – what you need to know
Webhooks do’s and dont’s
Webhooks do’s and dont’s: what we learned after integrating +100 APIs
https://restful.io/webhooks-dos-and-dont-s-what-we-learned-after-integrating-100-apis-d567405a3671
Add support for IE8 to bootstrap
I needed to make Bootstrap 3 work with old IE8 browsers, so the necessary steps are:
Add the following to the <head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="js/html5shiv.min.js"></script> <script src="js/respond.min.js"></script> <![endif]--> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script>
If these lines are not present, respond.js will not work
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1">
You also need to load respond.js from the same domain as the bootstrap.css
And also, make sure you’re using jQuery from the 1.x branch, the only that has IE8 support.
If you’re like me and are running Windows 10, then you can no longer test your site using Edge, so you can download an IE8 VM from Microsoft available here:
https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/
Tesseract.js: How To OCR Remote Images from a URL in Node
How To Secure Apache with Let’s Encrypt on Ubuntu 14.04
Just followed this tutorial to HTTPS all things !
ASP.NET Core RESTful Web API versioning made easy
Scott Hanselman shares how you can do version in ASP .NET Core Web API
http://www.hanselman.com/blog/ASPNETCoreRESTfulWebAPIVersioningMadeEasy.aspx