Skip to content

Instantly share code, notes, and snippets.

{
"@context": "http://schema.org",
"@type": "Product",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "3.5",
"reviewCount": "11"
},
"description": "0.7 cubic feet countertop microwave. Has six preset cooking categories and convenience features like Add-A-Minute and Child Lock.",
"name": "Kenmore White 17\" Microwave",
var app=app||{};(function(){$.extend(app,{consts:{maxProfilPictureBytesUserFriendlyValue:5,grid:{defaultPageSize:10,defaultPageSizes:[10,20,50,100]},userManagement:{defaultAdminUserName:"admin"},contentTypes:{formUrlencoded:"application/x-www-form-urlencoded; charset=UTF-8"},friendshipState:{accepted:1,blocked:2}}})})();app=app||{},function(n){function i(){this.state=t.LOADING;this.loadCallbacks=[];this.failCallbacks=[]}var t={LOADING:"LOADING",LOADED:"LOADED",FAILED:"FAILED"};i.prototype.succeed=function(){this.state=t.LOADED;for(var n=0;n<this.loadCallbacks.length;n++)this.loadCallbacks[n]()};i.prototype.failed=function(){this.state=t.FAILED;for(var n=0;n<this.failCallbacks.length;n++)this.failCallbacks[n]()};i.prototype.handleCallbacks=function(n,i){switch(this.state){case t.LOADED:n&&n();break;case t.FAILED:i&&i();break;case t.LOADING:this.addCallbacks(n,i)}};i.prototype.addCallbacks=function(n,t){n&&this.loadCallbacks.push(n);t&&this.failCallbacks.push(t)};app.ResourceLoader=function(){var t={},r=functio
Verifying my Blockstack ID is secured with the address 1Pofd42dbdAeZxYpZUg6XmsHYRwNj7mUJb https://explorer.blockstack.org/address/1Pofd42dbdAeZxYpZUg6XmsHYRwNj7mUJb
Verifying my Blockstack ID is secured with the address 1DhQpZFjA4CdEkxbCgZhFLB1eFSjXmYrXz https://explorer.blockstack.org/address/1DhQpZFjA4CdEkxbCgZhFLB1eFSjXmYrXz
@cmthomps
cmthomps / AuthConfigurer.cs
Created October 30, 2017 12:54
AspNetZero fix to allow .NET Core 1.0/1.1 authenticate against OpenId Connect.
private static OpenIdConnectOptions CreateOpenIdConnectAuthOptions(IConfiguration configuration)
{
var options = new OpenIdConnectOptions
{
ClientId = configuration["Authentication:OpenId:ClientId"],
Authority = configuration["Authentication:OpenId:Authority"],
PostLogoutRedirectUri = configuration["App:WebSiteRootAddress"] + "Account/Logout",
Events = new Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectEvents
{
OnTicketReceived = context =>