Skip to content

Instantly share code, notes, and snippets.

View mattijsf's full-sized avatar

mattijsf

View GitHub Profile
@mattijsf
mattijsf / standup
Last active June 17, 2019 10:43
Standup summary/reminder based on Git commits and YouTrack issues
#!/bin/bash
# Requirements:
# jq - installation: brew install jq
CONFIG_FILE=~/.standup
NOCOLOR='\033[0m'
YELLOW='\033[1;33m'
LIGHT_CYAN='\033[1;36m'
@mattijsf
mattijsf / create_avd.md
Created July 30, 2019 08:23 — forked from hkhc/create_avd.md
Creating and launching Android emulator AVD properly

Creating AVD

avd_name=my_avd
api_level=23
abi=x86_64
tag=google_apis
device="Nexus 5" # list of available devices see below

${ANDROID_HOME}/tools/bin/avdmanager --verbose create avd --name ${avd_name} \
@mattijsf
mattijsf / create_avd.md
Created July 30, 2019 08:23 — forked from hkhc/create_avd.md
Creating and launching Android emulator AVD properly

Creating AVD

avd_name=my_avd
api_level=23
abi=x86_64
tag=google_apis
device="Nexus 5" # list of available devices see below

${ANDROID_HOME}/tools/bin/avdmanager --verbose create avd --name ${avd_name} \