Skip to content

Instantly share code, notes, and snippets.

#Set WiFI hotspot in Windows
blog:-https://medium.com/windows-8-how-tos/e1b72ebf283e
Open cmd.exe
$netsh show drivers
Go to Control panel->Network & sharing center->change adapter setting-> enable wifi adapter

Keybase proof

I hereby claim:

  • I am akoserwal on github.
  • I am akoserwal (https://keybase.io/akoserwal) on keybase.
  • I have a public key ASCsNd08p7UiIOylFUK8pt_krdbbyyYPCZlOqs9OIASvwAo

To claim this, I am signing this object:

@akoserwal
akoserwal / gist:fcf6e115eeeacf7be831853431cfda70
Created October 13, 2017 09:06
java.lang.RuntimeException: Could not create authentication request.
2017-10-13 04:27:41,252 [wappsexecutor-threads - 43] ERROR [org.apache.catalina.connector] JBWEB001018: An exception or error occurred in the container during the request processing: java.lang.RuntimeException: Could not create authentication request.
at org.keycloak.adapters.saml.AbstractInitiateLogin.challenge(AbstractInitiateLogin.java:63)
at org.keycloak.adapters.saml.AbstractSamlAuthenticatorValve.executeAuthenticator(AbstractSamlAuthenticatorValve.java:245)
at org.keycloak.adapters.saml.AbstractSamlAuthenticatorValve.authenticateInternal(AbstractSamlAuthenticatorValve.java:220)
at org.keycloak.adapters.saml.jbossweb.SamlAuthenticatorValve.authenticate(SamlAuthenticatorValve.java:41)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:465)
at org.keycloak.adapters.saml.AbstractSamlAuthenticatorValve.invoke(AbstractSamlAuthenticatorValve.java:182)
at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:169)
at org.ap
<pf-notification-drawer heading-include="heading.html" notification-groups="groups"></pf-notification-drawer>
{{notificationGroup.heading}}
<span ng-include src="$ctrl.headingInclude"></span>
angular.module('patternfly.notification').component('pfNotificationDrawer', {
headingInclude: '@',
},
controller:function(){
var ctrl = this;
....
}
<ng-template let-group="notificationGroup" let-index="index"
[ngTemplateOutlet]="headingTemplate"
[ngTemplateOutletContext]="{group:notificationGroup, index: index}">
</ng-template>
<pfng-notification-drawer
[title]="'Notifications Drawer'"
[notificationGroups]="groups"
[titleTemplate]="titleTemplate"
[headingTemplate]="headingTemplate"
> </pfng-notification-drawer>
<ng-template #headingTemplate let-group="group" let-index="index">{{group.heading}}</ng-template>