Site Tutorial and Tool / Library Development Mobile Android

Library

  1. Shimmer
  2. Lottie Airbnb.io

Situs Tutorial

  1. https://codinginfinite.com
  2. https://www.journaldev.com

Design

Video Tutorial Android Studio SQLite

  1. Room + ViewModel + LiveData + RecyclerView (MVVM) Part 1
  2. Room + ViewModel + LiveData + RecyclerView (MVVM) Part 2
  3. Room + ViewModel + LiveData + RecyclerView (MVVM) Part 3
  4. Room + ViewModel + LiveData + RecyclerView (MVVM) Part 4
  5. Room + ViewModel + LiveData + RecyclerView (MVVM) Part 5
  6. Room + ViewModel + LiveData + RecyclerView (MVVM) Part 6

Firebase Tutorial Android Studio

  1. Simple Firebase Notification in 3 Minutes
  2. Firebase Storage - Upload and Retrieve Images - Part 1
  3. Firebase Storage - Upload and Retrieve Images - Part 2
  4. Firebase Storage - Upload and Retrieve Images - Part 3
  5. Firebase Storage - Upload and Retrieve Images - Part 4

Tutorial Laravel

  1. 504 Gateway Timeout When Importing Large Data On Laravel [laravel/valet#315]
  2. Logging with parameters

You can write Log::info(), or shorter info() message with additional parameters, for more context about what happened.

Log::info('User failed to login.', ['id' => $user->id]);

More convenient DD

Instead of doing dd($result) you can put ->dd() as a method directly at the end of your Eloquent sentence, or any Collection.

// Instead of
$users = User::where('name', 'Taylor')->get();
dd($users);
// Do this
$users = User::where('name', 'Taylor')->get()->dd();

Tutorial GIT

  1. Setting up multiple GitLab accounts [https://medium.com/uncaught-exception/setting-up-multiple-gitlab-accounts-82b70e88c437]