View DataBindingAdapter.kt
This file contains 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
abstract class DataBindingAdapter<T>( | |
private val variableId: Int, | |
diffCallback: DiffUtil.ItemCallback<T> | |
) : ListAdapter<T, DataBindingAdapter.DataBindingViewHolder<T>>(diffCallback) { | |
private var list: List<T>? = emptyList() | |
private lateinit var onItemViewClick: ((View, T, Int) -> Unit?) | |
private lateinit var clickableIds: IntArray |
View freshly_squeezed_coubs.js
This file contains 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
// ==UserScript== | |
// @name FRESHLY SQUEEZED COUBS | |
// @namespace https://holofox.ru/ | |
// @version 1.0 | |
// @description Hiding recoubs, mutes, non-hd, a.webm, vines and others coubs. | |
// @author Holofox | |
// @match *://coub.com/community/* | |
// @grant none | |
// ==/UserScript== | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js |