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
<button | |
*ngIf="isSignedIn$ | async" | |
(click)="logOut()"> | |
Logout | |
</button> | |
<div id="google-signin" [hidden]="isSignedIn$ | async"></div> | |
<span *ngIf="isSignedIn$ | async; else notSignedIn"> | |
Current user: {{(currentUser$ | async).getBasicProfile().getName()}} | |
</span> | |
<ng-template #notSignedIn> |
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
package com.jingyuyao.adapters; | |
import com.google.common.collect.ArrayListMultimap; | |
import com.google.common.collect.ListMultimap; | |
import com.google.common.reflect.TypeToken; | |
import com.google.gson.JsonDeserializationContext; | |
import com.google.gson.JsonDeserializer; | |
import com.google.gson.JsonElement; | |
import com.google.gson.JsonParseException; | |
import com.google.gson.JsonSerializationContext; |
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
read -s -p "MySql root password: " password | |
echo | |
mysql -uroot -p${password} -e 'SELECT table_schema "Data Base Name",sum( data_length + index_length ) / 1024 / 1024 "Data Base Size in MB", sum( data_free )/ 1024 / 1024 "Free Space in MB" FROM information_schema.TABLES GROUP BY table_schema;' |