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

Block or report kevinmcmahon

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

Hi there 👋

Pinned

  1. reinvent-2019-workshops.md reinvent-2019-workshops.md
    1
    ## re:Invent 2019 Workshops
    2
    
                  
    3
    A list of public repositories, content, and web from re:Invent 2019 Workshops. Many of the links are subject to be moved or completely removed at any point in time in the future.
    4
    
                  
    5
    | 	Session ID	 | 	Session Name	 | 	Repo/Site	 | 
  2. Android Check if Service is Running Android Check if Service is Running
    1
    private boolean isServiceRunning() {
    2
    	ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
    3
    	for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)){
    4
    		if("com.example.MyNeatoIntentService".equals(service.service.getClassName())) {
    5
    			return true;