Skip to content

Instantly share code, notes, and snippets.

View tuanngo's full-sized avatar
🎯
Focusing

Tuan Ngo tuanngo

🎯
Focusing
  • HCM, Việt Nam
  • 07:52 (UTC +07:00)
View GitHub Profile

Keybase proof

I hereby claim:

  • I am tuanngo on github.
  • I am tuanngo (https://keybase.io/tuanngo) on keybase.
  • I have a public key ASAabEfzyfZ-37UyBfsyb7czGQ82emTN6K-IVN9O7LI4fQo

To claim this, I am signing this object:

create table oauth_client_details (
client_id VARCHAR(256) PRIMARY KEY,
resource_ids VARCHAR(256),
client_secret VARCHAR(256),
scope VARCHAR(256),
authorized_grant_types VARCHAR(256),
web_server_redirect_uri VARCHAR(256),
authorities VARCHAR(256),
access_token_validity INTEGER,
refresh_token_validity INTEGER,
@tuanngo
tuanngo / txt
Created March 6, 2019 09:16
soap
public class AccountDetailsServiceWSUtil
{
private static Log log = LogFactoryUtil.getLog(VehicleManagementServiceWSUtil.class);
private static AccountDetailsService_PortType service;
public AccountDetailsServiceWSUtil()
{
}
@tuanngo
tuanngo / UserModule.ts
Created April 3, 2018 15:08 — forked from ValentinFunk/UserModule.ts
@ngrx/store and @ng-bootstrap/ng-bootstrap NgbModal
@NgModule({...})
export class UserModule {
constructor(
ngbModal: NgbModal,
modalService: ModalService,
store: Store<AppState>
) {
// Disallow closing the login modal if user is accessing a protected route as first page.
// (else they would get an empty page due to the auth guard)
let loginModalOptions = store.select(x => x.user.loginRequired)