Skip to content

Instantly share code, notes, and snippets.

View radeshf's full-sized avatar
💭
Coding!

radesh farokh manesh radeshf

💭
Coding!
View GitHub Profile
@radeshf
radeshf / extentions.kt
Last active March 2, 2021 12:42
a bunch of kotlin helpful extentions i use in my code
@file:JvmName("ExtensionsUtils")
/**
* created by radesh farokhmanesh
*/
//#1
fun <T> Activity.goTo(cls:Class<T>,finish: Boolean = true){
startActivity(Intent(this,cls))
if (finish) finish()
@paladini
paladini / The HEX and RGB code for the Bitcoin orange color
Last active January 25, 2021 23:22
The HEX / RGB code for the orange color from Bitcoin logo
Do you want know what's the orange color from Bitcoin logo? Here's the colours:
Hexadecimal:
#FF9900
RGB
(255,153,0)
Any suggestions are welcome!
Fonts: http://www.color-hex.com/color/ff9900 and https://bitcointalk.org/index.php?topic=224522.0