Skip to content
View mrk-han's full-sized avatar
💭
Looking for new opportunities!
💭
Looking for new opportunities!
Block or Report

Block or report mrk-han

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. Installing and creating Emulators wi... Installing and creating Emulators with AVDMANAGER (For Continuous Integration Server or Local Use)
    1
    # Install and Create Emulators using AVDMANAGER and SDKMANAGER
    2
    
                  
    3
    ## TL;DR
    4
    
                  
    5
    For an emulator that mimics a Pixel 5 Device with Google APIs and ARM architecture (for an M1/M2 Macbook):
  2. Enable and Disable Android Accessibi... Enable and Disable Android Accessibility Settings from the Command Line using ADB (Font scale, talkback, color blind)
    1
    # Using ADB to control Accessbility settings for easier testing with Android Emulators + Real Devices
    2
    
                  
    3
    It's a lot easier to test accessibility on the fly using ADB. This gist attempts to make the days of navigating through the Android device settings UI to change Accessibility settings obsolete.
    4
    
                  
    5
    These ADB commands will hopefully encourage Android developers to test and use their apps with common Accessiblility settings enabled.
  3. Appium Pre-Run Script Appium Pre-Run Script
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    ########################################################################
    4
    # Goal: Run this script and start automating!
    5
    #   1) Pull all changes for Appium/iOS/Android repo
  4. Select Emulator, Wait for Emulator t... Select Emulator, Wait for Emulator to Start, Wait for Emulator to Boot, then Install Android.apk
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    ####################################################################################
    4
    # Adapted from various wait-for-boot scripts found online
    5
    # This is the most robust version I could write for MacOS
  5. Convert (Screen Capture) .mov files ... Convert (Screen Capture) .mov files to GIF format using Ffmpeg and Gifsicle. Put GIFs into JIRA and Slack with ease! MacOS
    1
    # Convert (Screen Capture) .mov files to GIF format using Ffmpeg and Gifsicle (MacOS)
    2
    
                  
    3
    Prompts for path to `.mov` and allows user to enter a `.gif` name. Then converts that `.mov` file to a `.gif` and saves to `~/Downloads/`.
    4
    
                  
    5
    Inspired by: https://gist.github.com/dergachev/4627207