Skip to content

Instantly share code, notes, and snippets.

View Darkempire78's full-sized avatar
💻
Plays coding his life.

Darkempire Darkempire78

💻
Plays coding his life.
View GitHub Profile
@AbstractUmbra
AbstractUmbra / 00-deprecation.md
Last active August 17, 2024 20:01
discord.py 2.0+ slash command info and examples

This gist has now been 'deprecated' and has moved...

... to my blog style space for easier contribution by third parties and to provide what I believe to be an easier reading experience. Please field all enquiries and issues to the source repository.

@Johnyoat
Johnyoat / MyApp.kt
Last active January 14, 2024 15:19
Changing or setting one font for all text font in android in Kotlin
class MyApp : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val typefaceUtil = TypefaceUtil()
typefaceUtil.overridefonts(this,"SERIF","fonts/roboto.ttf")
}
}