Skip to content

Instantly share code, notes, and snippets.

View hdinjos's full-sized avatar
🤩
gagego tik!

Hendi Saputra hdinjos

🤩
gagego tik!
  • axarschool
  • Yogyakarta
View GitHub Profile
@hdinjos
hdinjos / Knex-Migrations-Seeding.md
Created June 1, 2021 16:07 — forked from NigelEarle/Knex-Migrations-Seeding.md
Migration and seeding instructions using Knex.js!

Migrations & Seeding

What are migrations??

Migrations are a way to make database changes or updates, like creating or dropping tables, as well as updating a table with new columns with constraints via generated scripts. We can build these scripts via the command line using knex command line tool.

To learn more about migrations, check out this article on the different types of database migrations!

Creating/Dropping Tables

@hdinjos
hdinjos / emulator-install-using-avdmanager.md
Created October 19, 2020 01:21 — forked from mrk-han/emulator-install-using-avdmanager.md
Installing and creating Emulators with AVDMANAGER (For Continuous Integration Server or Local Use)

Install and Create Emulators using AVDMANAGER and SDKMANAGER

TL;DR

For generic skin emulator with default apis (without google apis):

  1. List All System Images Available for Download: sdkmanager --list | grep system-images

  2. Download Image: sdkmanager --install "system-images;android-29;default;x86"