I hereby claim:
- I am brinsche on github.
- I am memorion (https://keybase.io/memorion) on keybase.
- I have a public key ASAm1YTLl2313ntOv37usTN9n9tJ6jEuDw6cJa3JPrioEAo
To claim this, I am signing this object:
| var lastY = 0f | |
| editText.setOnTouchListener { v, event -> | |
| v.parent.requestDisallowInterceptTouchEvent(true) | |
| when (event.actionMasked) { | |
| MotionEvent.ACTION_DOWN -> { | |
| // store initial y position | |
| lastY = event.y | |
| } | |
| MotionEvent.ACTION_MOVE -> { | |
| val deltaY = event.y - lastY |
I hereby claim:
To claim this, I am signing this object:
| library IEEE; | |
| use IEEE.STD_LOGIC_1164.ALL; | |
| entity multiplex is | |
| Port ( | |
| MIn0 : in STD_LOGIC_VECTOR (1 downto 0); | |
| MIn1 : in STD_LOGIC_VECTOR (1 downto 0); | |
| MOut : out STD_LOGIC_VECTOR (1 downto 0); | |
| MCtrl : in STD_LOGIC | |
| ); |
| library IEEE; | |
| use IEEE.STD_LOGIC_1164.ALL; | |
| entity OneBitAdder is | |
| Port ( | |
| in0 : in STD_LOGIC; | |
| in1 : in STD_LOGIC; | |
| cin : in STD_LOGIC; | |
| sum : out STD_LOGIC; | |
| cout : out STD_LOGIC |
I hereby claim:
To claim this, I am signing this object:
| elevation_compat.xml | |
| <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <gradient | |
| android:angle="270" | |
| android:endColor="@android:color/transparent" | |
| android:startColor="#50000000" /> | |
| </shape> | |
| styles.xml | |
| <style name="ElevationCompatTheme"> |