Skip to content

Instantly share code, notes, and snippets.

View rnagle's full-sized avatar

Ryan Nagle rnagle

View GitHub Profile
@mrk-han
mrk-han / emulator-install-using-avdmanager.md
Last active May 1, 2024 21:12
Installing and creating Emulators with AVDMANAGER (For Continuous Integration Server or Local Use)

Install and Create Emulators using AVDMANAGER and SDKMANAGER

TL;DR

For an emulator that mimics a Pixel 5 Device with Google APIs and ARM architecture (for an M1/M2 Macbook):

  1. List All System Images Available for Download: sdkmanager --list | grep system-images

  2. Download Image: sdkmanager --install "system-images;android-30;google_atd;arm64-v8a"

@aviars
aviars / pharmacy.md
Last active April 24, 2018 18:31
Pharmacy EOB

Anatomy of BlueButton API FHIR ExplanationOfBenefit Response

BlueButton API FHIR responses contain these FHIR Resource types.

  • Patient
  • Coverage
  • ExplanationOfBenefit (EOB)
@aschweigert
aschweigert / gist:f5dd03e04bea91797c0c
Last active December 29, 2015 14:29
Standalone WP -> Multisite migration queries
[prefix] is needed to push the new users/usermeta values outside of the range already populated in the database, usually for a site with an ID of 40 using 40,000 will work pretty well (unless some of your sites have a lot of users).
UPDATE wp_users
SET ID = ID + [prefix]
// Add two columns to the end of the wp_users table, spam and deleted. Both are TINYINT(2).
UPDATE wp_usermeta
SET user_id = user_id + [prefix]
@eads
eads / import_tix.py
Created March 28, 2012 22:18 — forked from brianboyer/import_tix.py
Unfuddle ticket generator
import csv, os.path
import os
import httplib, base64
import getpass
username = raw_input("Username:")
password = getpass.getpass("Password:")
subdomain = raw_input("Subdomain:")
project = raw_input("Project id:")
filename = raw_input("Tickets file:")
@brianboyer
brianboyer / gist:1696819
Created January 29, 2012 02:21
Lion dev environment notes