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

Block or report nethergrim

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
nethergrim/README.md

Hi! 👋

I'm Andrii.

Expert Mobile Developer

I mostly do react-native, ios and android app development

     

With a decade of experience in IT and mobile development, I am a seasoned professional specializing in driving technology excellence for various projects. As a hands-on technical expert, I am deeply involved in coding and solving complex technical problems on a daily basis. My experience spans across multiple technologies, business domains, technology stacks, and frameworks, making me a versatile and valuable asset to any team.

My expertise includes technology consulting, pre-sales support, and leading cross-functional teams in various initiatives and efforts at the client's side. I possess a unique combination of native (iOS, Android) and hybrid native (React-Native) development skills, along with intermediate experience in ReactJS, CSS, HTML, and styled-components.

As a performance-driven and automation-focused developer, I am passionate about creating CI/CD pipelines and am an enthusiast of Fastlane. My strong background in mobile development (React-Native, iOS, Android) and experience as a certified technical interviewer and Anywhere Skill Advisor make me a well-rounded professional in the industry.

My journey in programming began at the age of 6 when I was fascinated by my mother's books on software engineering, leading me to explore the world of coding despite the limitations of my computer. My curiosity grew as I discovered the potential of improving game servers while playing World of Warcraft on private servers. This passion for understanding and creating software ultimately led me to my current profession in software engineering, where I am proud to contribute my skills and expertise to the industry.

Pinned

  1. fastlane-plugin-jira_set_fix_version fastlane-plugin-jira_set_fix_version Public

    Forked from sadiq81/fastlane-plugin-jira_set_fix_version

    Ruby 2 1

  2. OneTimeCodeView OneTimeCodeView Public

    Simple iOS UITextField for .oneTimeCode entry

    Swift 8

  3. Android advanced logging to Crashlyt... Android advanced logging to Crashlytics with Timber
    1
    
                  
    2
    import com.crashlytics.android.Crashlytics;
    3
    
                  
    4
    import timber.log.Timber;
    5
    
                  
  4. 🚀 build.gradle which forces all sub... 🚀 build.gradle which forces all subprojects to use a single version of support library
    1
    
                  
    2
    ext {
    3
        supportlib_version = '28.0.0'
    4
    }
    5
    
                  
  5. anko_benchmark anko_benchmark Public

    Performance benchmark to compare Anko (reactive UI) and XML (default) layouting

    Kotlin 26 4

  6. Generate versionCode for Android usi... Generate versionCode for Android using current time, incremented each minute.
    1
    /**
    2
     * Constructs a version code as: {(now).minutes - (1 Jan 2021).minutes}* Which means that version code will be incremented each minute.
    3
     * The greatest value Google Play allows for versionCode is 2100000000.
    4
     * There are ~525600 minutes in a year, so greatest value will be reached after 3995 years.
    5
     * */