create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| import android.arch.lifecycle.LiveData | |
| import android.arch.lifecycle.MediatorLiveData | |
| import android.arch.lifecycle.MutableLiveData | |
| fun <X, Y> LiveData<X>.map(func: (X?) -> Y?): MutableLiveData<Y?> { | |
| return MediatorLiveData<Y>().apply { | |
| addSource(this@map) { x -> value = func(x) } | |
| } | |
| } |
| <application | |
| android:allowBackup="true" | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name" | |
| android:roundIcon="@mipmap/ic_launcher_round" | |
| android:supportsRtl="true" | |
| android:theme="@style/AppTheme" | |
| android:networkSecurityConfig="@xml/network_security_config"> |
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| package some.awesome.package; | |
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.util.AttributeSet; | |
| import android.view.View; | |
| import android.view.animation.Animation; | |
| import android.view.animation.Animation.AnimationListener; | |
| import android.view.animation.Transformation; | |
| import android.widget.RelativeLayout; |