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
const THREE_MINUTES_IN_MILLIS = 177000; | |
const REWARD_NAME = "84|105|109|101|111|117|116|32|75|97|100|117" | |
function kaduClear() { | |
const rewardButton = document.querySelector(".eXFiyo > div:nth-child(2) > button:nth-child(1)") | |
rewardButton.click() | |
let timeoutDiv; |
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
const MAIN_LOOP_INTERVAL = 1000 | |
const REMOVE_REMINDER_BAR_TIMEOUT = 100 | |
const SELECT_ALL_VISIBLE_CHECKBOX_TIMEOUT = 350 | |
const CLICK_ON_DELETE_BUTTON_TIMEOUT = 600 | |
const CLICK_ON_MOVE_TO_TRASH_BUTTON_TIMEOUT = 850 | |
const removeReminderBar = () => { | |
setTimeout(() => { | |
document.querySelector('c-wiz > div > c-wiz > div > c-wiz > div')?.remove() | |
document.querySelector('div[style="position: absolute; width: 1038px; height: 248px; transform: translate3d(0px, 88px, 0px);"]')?.remove() |
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
@ExperimentalCoilApi | |
@Composable | |
fun PokedexEntry( | |
entry: PokedexListEntry, | |
navController: NavController, | |
modifier: Modifier = Modifier, | |
viewModel: PokemonListViewModel = hiltViewModel() | |
) { | |
val defaultDominantColor = MaterialTheme.colors.surface.toArgb() | |
var dominantColor by rememberSaveable { |
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
class NoteSwapView @JvmOverloads constructor( | |
context: Context, | |
attrs: AttributeSet? = null, | |
defStyleAttr: Int = 0, | |
) : FrameLayout(context, attrs, defStyleAttr) { | |
//Inflating layout | |
private val binding = NoteSwapViewBinding.inflate(LayoutInflater.from(context), this, true) | |
init { |