Skip to content
View mert-aydin's full-sized avatar
  • İstanbul, Turkey

Highlights

  • Pro
Block or Report

Block or report mert-aydin

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. BilGram BilGram Public

    Firebase based photo sharing application.

    Kotlin 6 3

  2. RickAndMortyMVVM RickAndMortyMVVM Public

    Rick and Morty android app based on rickandmortyapi.com

    Kotlin 3 1

  3. 3DHumanPoseEstimation 3DHumanPoseEstimation Public

    CV project for BOUN SWE 583 - Computer Vision class.

    Python 1 1

  4. Handwritten-Digit-Classification Handwritten-Digit-Classification Public

    Python

  5. Replace Turkish characters to their ... Replace Turkish characters to their English representations
    1
    fun String.toEnglishChars(): String {
    2
        var res = this
    3
        mapOf("Ç" to "C", "ç" to "c", "Ğ" to "G", "ğ" to "g", "İ" to "I", "ı" to "i", "Ö" to "O", "ö" to "o", "Ş" to "S", "ş" to "s", "Ü" to "U", "ü" to "u").entries.forEach { res = res.replace(it.key, it.value) }
    4
        return res
    5
    }