This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import androidx.recyclerview.widget.AsyncDifferConfig; | |
| import androidx.recyclerview.widget.AsyncListDiffer; | |
| import androidx.recyclerview.widget.DiffUtil; | |
| import androidx.recyclerview.widget.ListUpdateCallback; | |
| import androidx.recyclerview.widget.RecyclerView; | |
| import org.jetbrains.annotations.NotNull; | |
| import org.jetbrains.annotations.Nullable; | |
| import java.util.List; | |
| import kotlin.jvm.internal.Intrinsics; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import axios from 'axios' | |
| const MAX_REQUESTS_COUNT = 5 | |
| const INTERVAL_MS = 10 | |
| let PENDING_REQUESTS = 0 | |
| // create new axios instance | |
| const api = axios.create({}) | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| networks: | |
| kong-net: | |
| driver: bridge | |
| services: | |
| ####################################### | |
| # Postgres: The database used by Kong |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package example | |
| import android.support.v7.recyclerview.extensions.AsyncDifferConfig | |
| import android.support.v7.recyclerview.extensions.AsyncListDiffer | |
| import android.support.v7.util.DiffUtil | |
| import android.support.v7.util.ListUpdateCallback | |
| import android.support.v7.widget.RecyclerView | |
| /** | |
| * {@link RecyclerView.Adapter RecyclerView.Adapter} base class based on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Linq; | |
| using System.Collections.Immutable; | |
| using System.Linq; | |
| using System.Net.Http; | |
| using System.Reactive; | |
| using System.Reactive.Concurrency; | |
| using System.Reactive.Disposables; | |
| using System.Reactive.Joins; | |
| using System.Reactive.Linq; |