Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| //http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript | |
| Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15); |
| [ | |
| { "code": "aa", "name": "Afar" }, | |
| { "code": "ab", "name": "Abkhazian" }, | |
| { "code": "ae", "name": "Avestan" }, | |
| { "code": "af", "name": "Afrikaans" }, | |
| { "code": "ak", "name": "Akan" }, | |
| { "code": "am", "name": "Amharic" }, | |
| { "code": "an", "name": "Aragonese" }, | |
| { "code": "ar", "name": "Arabic" }, | |
| { "code": "as", "name": "Assamese" }, |
| @Singleton | |
| @Component( | |
| modules = { | |
| AppModule.class, | |
| GithubApiModule.class | |
| } | |
| ) | |
| public interface AppComponent { | |
| UserComponent plus(UserModule userModule); |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| /** | |
| * Make bitmap appropriate size, greyscale and inverted. MNIST model is originally teached on | |
| * dataset of images 28x28px with white letter written on black background. | |
| */ | |
| public static Bitmap prepareImageForClassification(Bitmap bitmap) { | |
| ColorMatrix colorMatrix = new ColorMatrix(); | |
| colorMatrix.setSaturation(0); | |
| colorMatrix.postConcat(BLACKWHITE); | |
| colorMatrix.postConcat(INVERT); | |
| ColorMatrixColorFilter f = new ColorMatrixColorFilter(colorMatrix); |
Create the backend for a bootcamp directory website. The frontend/UI will be created by another team (future course). The html/css template has been created and can be used as a reference for functionality. All of the functionality below needs to be fully implmented in this project.
| import android.content.Context | |
| import android.net.ConnectivityManager | |
| import android.net.Network | |
| import android.net.NetworkCapabilities | |
| import android.net.NetworkRequest | |
| import android.os.Bundle | |
| import android.widget.TextView | |
| import androidx.appcompat.app.AppCompatActivity | |
| import androidx.lifecycle.ViewModel | |
| import androidx.lifecycle.ViewModelProvider |