This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://stackoverflow.com/questions/3629179/android-activity-over-default-lock-screen | |
https://stackoverflow.com/questions/19074466/android-how-to-show-dialog-or-activity-over-lock-screen-not-unlock-the-screen/25707716 | |
Disable Android home, back and active apps buttons | |
https://hackernoon.com/disable-android-home-back-and-active-apps-buttons-f7450dfeddcd | |
Fullscreen app | |
https://developer.android.com/training/system-ui/immersive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
base=`basename $0` | |
get_image() { | |
docker inspect --format='{{.Config.Image}}' $1 | |
} | |
get_name() { | |
NAME=`docker inspect --format='{{.Name}}' $1` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Module | |
public class AppModule { | |
private final Application mApplication; | |
public AppModule(Application application) { | |
mApplication = application; | |
} | |
@Provides @Singleton | |
Application provideApplication() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
skinparam sequenceArrowThickness 2 | |
skinparam classAttributeIconSize 12 | |
skinparam roundcorner 6 | |
skinparam maxmessagesize 60 | |
skinparam sequenceParticipant underline | |
skinparam backgroundColor LightGray | |
skinparam textColor White | |
skinparam shadowing false | |
skinparam class { | |
BackgroundColor White |