Skip to content

Instantly share code, notes, and snippets.

View wiztensai's full-sized avatar
💭
no system is safe

wiztensai

💭
no system is safe
View GitHub Profile
@wiztensai
wiztensai / DividerItemDecoration.java
Created May 3, 2020 19:00 — forked from johnwatsondev/DividerItemDecoration.java
Customizing the DividerItemDecoration class so we can remove divider / decorator after the last item
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@wiztensai
wiztensai / RvSimple.kt
Created May 6, 2021 20:33
Recyclerview adapter with viewBinding
class RvHome(val data:MutableList<ModelClass>): RecyclerView.Adapter<RvHome.ViewHolder>() {
lateinit var bind:ItemClassTodayBinding
inner class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
fun dataBind(d:ModelClass) {
bind.tvTitle.setText(d.title)
bind.tvSubtitle.setText(d.subtitle)
}
}
@wiztensai
wiztensai / note.txt
Created June 14, 2021 09:08
Library react native yang sering dipakai
Popup menu
https://github.com/instea/react-native-popup-menu
var mediaJSON = { "categories" : [ { "name" : "Movies",
"videos" : [
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org",
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ],
"subtitle" : "By Blender Foundation",
"thumb" : "images/BigBuckBunny.jpg",
"title" : "Big Buck Bunny"
},
{ "description" : "The first Blender Open Movie from 2006",
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ],