Skip to content

Instantly share code, notes, and snippets.

View sagar30121994's full-sized avatar
😎

Sagar Thorat sagar30121994

😎
  • Ceo @ AppSchedio
  • Ahmednagar ,Maharastra, India
  • 18:35 (UTC +05:30)
View GitHub Profile
@augbog
augbog / Free O'Reilly Books.md
Last active March 2, 2024 22:24
Free O'Reilly Books

Free O'Reilly books and convenient script to just download them.

Thanks /u/FallenAege/ and /u/ShPavel/ from this Reddit post

How to use:

  1. Take the download.sh file and put it into a directory where you want the files to be saved.
  2. cd into the directory and make sure that it has executable permissions (chmod +x download.sh should do it)
  3. Run ./download.sh and wee there it goes. Also if you do not want all the files, just simply comment the ones you do not want.
@jchernandez
jchernandez / touch_effect.xml
Last active May 19, 2022 05:05
Drawable for a touch hover effect pre lollipop and with ripple effect and an example usage
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:exitFadeDuration="@android:integer/config_shortAnimTime">
<item android:state_pressed="false">
<color android:color="@android:color/transparent"/>
</item>
<item android:state_pressed="true">
<!--<color name="touch_hover">#44565656</color> -->
<color android:color="@color/touch_hover" />
</item>