Skip to content

Instantly share code, notes, and snippets.

View LVMVRQUXL's full-sized avatar
👨‍💻
Building the future of Kotlin.

Loïc Lamarque LVMVRQUXL

👨‍💻
Building the future of Kotlin.
View GitHub Profile
@retheviper
retheviper / MimeTypes.kt
Last active August 12, 2024 10:09 — forked from dptsolutions/MimeTypes.kt
Standard MIME type constants ready to use in a Kotlin project
/**
* See [Media Types](https://www.iana.org/assignments/media-types/media-types.xhtml) of IANA.
*/
object MimeTypes {
enum class Application(val extensions: Array<String>, val mimeType: String) {
/** AbiWord document */
ABI_WORD(arrayOf(".abw"), "application/x-abiword"),
/** Archive document (multiple files embedded) */

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@metrafonic
metrafonic / gist:039ddd1b33819dcec073
Created February 18, 2015 07:17
Make gradlew executable
git update-index --chmod=+x gradlew