Skip to content

Instantly share code, notes, and snippets.

View wisnukurniawan's full-sized avatar

Wisnu Kurniawan wisnukurniawan

View GitHub Profile
import androidx.compose.animation.*
import androidx.compose.animation.core.tween
import androidx.compose.material.*
import androidx.compose.runtime.Composable
import androidx.compose.runtime.onCommit
import androidx.compose.ui.Modifier
@OptIn(ExperimentalAnimationApi::class, ExperimentalMaterialApi::class)
@Composable
fun <T> AnimatedSwipeDismiss(
@yogthos
yogthos / clojure-beginner.md
Last active November 19, 2024 00:26
Clojure beginner resources

Introductory resources

@hujunfeng
hujunfeng / wwdc2018_sessions_list.txt
Created June 12, 2018 01:48
WWDC 2018 Sessions
101 WWDC 2018 Keynote
102 Platforms State of the Union
103 Apple Design Awards
201 Creating Apps for a Global Audience
202 What's New in Cocoa Touch
203 I Have This Idea For An App...
204 Automatic Strong Passwords and Security Code AutoFill
205 Advances in Research and Care Frameworks
206 What's New in watchOS
207 Strategies for Securing Web Content
{
"total": 87,
"pages": [{
"page": 1,
"videos": [{
"name": "Keynote: What is programming anyway? - Felienne",
"href": "https://vimeo.com/channels/1344849/254635626",
"duration": "01:06:10",
"description": "All kids should learn to code! Yes, I think we programmers all agree with Bill Gates and Sheryl Sandberg that kids should learn programming. But what is programming? What should kids know? What should…"
}, {
@mwolfson
mwolfson / touchHelper_ItemTouchHelperAdapter.java
Last active August 19, 2021 13:48
Interfaces, and ItemTouchHelper.Callback implementation to assist in adding Swipe based gestures (Drag & Drop, Swipe to Dismiss) to a RecyclerView.
/*
* Copyright (C) 2015 Paul Burke
*
* 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
@lopspower
lopspower / README.md
Last active November 18, 2024 19:11
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@staltz
staltz / introrx.md
Last active November 20, 2024 15:03
The introduction to Reactive Programming you've been missing