Skip to content
View ConorGarry's full-sized avatar
Block or Report

Block or report ConorGarry

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. AdventOfCode2023 AdventOfCode2023 Public

    Kotlin

  2. LeetCodeKotlin LeetCodeKotlin Public

    Kotlin solutions to LeetCode questions. Based on discussions, official solutions (adapted from Java) and some of my own attempts.

    Kotlin

  3. sporcle-music sporcle-music Public

    Browsed extension for better music clip quiz experiences on Sporcle

    JavaScript

  4. moshi-class-delegates moshi-class-delegates Public

    Experiments with serialisation of Kotlin data classes with class delegation

    Kotlin

  5. realm-studio realm-studio Public

    Forked from realm/realm-studio

    Realm Studio

    TypeScript

  6. Monad for handing UI state represent... Monad for handing UI state representation with a clean consumable API.
    1
    sealed class UiState<out T> {
    2
    
                  
    3
        fun interface SuccessHandler<T> {
    4
            fun invoke(data: T)
    5
        }