Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| package com.truecaller.sdk.samples | |
| import android.content.Intent | |
| import android.os.Bundle | |
| import android.util.Log | |
| import android.view.View | |
| import androidx.appcompat.app.AppCompatActivity | |
| import com.truecaller.android.sdk.ITrueCallback | |
| import com.truecaller.android.sdk.TrueError | |
| import com.truecaller.android.sdk.TrueProfile |
| package com.truecaller.sdk.samples | |
| import android.content.Context | |
| import android.content.Intent | |
| import android.os.Bundle | |
| import androidx.appcompat.app.AppCompatActivity | |
| import com.bumptech.glide.Glide | |
| import com.truecaller.android.sdk.TrueProfile | |
| import kotlinx.android.synthetic.main.create_profile_activity.avatarImageView | |
| import kotlinx.android.synthetic.main.create_profile_activity.emailEditText |
| import android.annotation.TargetApi; | |
| import android.content.ContentUris; | |
| import android.content.Context; | |
| import android.database.Cursor; | |
| import android.net.Uri; | |
| import android.os.Build; | |
| import android.os.Environment; | |
| import android.provider.DocumentsContract; | |
| import android.provider.MediaStore; | |
| import android.provider.OpenableColumns; |
| /** | |
| * You can edit, run, and share this code. | |
| * play.kotlinlang.org | |
| */ | |
| fun main() { | |
| val st = """&yet andyet.com Worldwide | |
| 10up 10up.com Worldwide | |
| 15Five 15five.com Europe, Americas | |
| 17hats 17hats.com Worldwide |
| import kotlinx.coroutines.experimental.DefaultDispatcher | |
| import kotlinx.coroutines.experimental.channels.BroadcastChannel | |
| import kotlinx.coroutines.experimental.channels.ReceiveChannel | |
| import kotlinx.coroutines.experimental.channels.filter | |
| import kotlinx.coroutines.experimental.channels.map | |
| import kotlinx.coroutines.experimental.launch | |
| import kotlin.coroutines.experimental.CoroutineContext | |
| class EventBus { |
| import rx.Observable; | |
| import rx.subjects.PublishSubject; | |
| import rx.subjects.SerializedSubject; | |
| import rx.subjects.Subject; | |
| /** | |
| * @author <a href="mailto:jaredsburrows@gmail.com">Jared Burrows</a> | |
| */ | |
| public final class RxBus { | |
| private final Subject<Object, Object> bus = new SerializedSubject<>(PublishSubject.create()); |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| /* | |
| ArrayUtil exposes a set of helper methods for working with | |
| ReadableArray (by React Native), Object[], and JSONArray. | |
| */ | |
| package com.iodine.start; | |
| import com.facebook.react.bridge.Arguments; | |
| import com.facebook.react.bridge.ReadableArray; |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |