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
@eddieoz
eddieoz / iso-language-codes.txt
Last active November 4, 2025 09:52
ISO Locale Language Code table
Code Name
af Afrikaans
af-ZA Afrikaans (South Africa)
ar Arabic
ar-AE Arabic (U.A.E.)
ar-BH Arabic (Bahrain)
ar-DZ Arabic (Algeria)
ar-EG Arabic (Egypt)
ar-IQ Arabic (Iraq)
ar-JO Arabic (Jordan)
@retheviper
retheviper / MimeTypes.kt
Last active January 14, 2025 21:10 — 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