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
| package app.eluvio.mobile.navigation | |
| import android.view.WindowManager | |
| import androidx.compose.animation.core.Animatable | |
| import androidx.compose.animation.core.tween | |
| import androidx.compose.foundation.layout.Box | |
| import androidx.compose.foundation.layout.fillMaxSize | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.LaunchedEffect | |
| import androidx.compose.runtime.SideEffect |
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 | |
| # install-unquarantine-mount.sh | |
| # | |
| # Builds a small AppleScript applet that strips the com.apple.quarantine | |
| # attribute from a DMG before mounting it, so apps installed from that | |
| # DMG launch without the "no Open button" Gatekeeper dialog. | |
| # | |
| # Usage: | |
| # bash install-unquarantine-mount.sh | |
| # |
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
| #!python.exe | |
| import site | |
| import subprocess | |
| import sys | |
| import os | |
| DEVICES_START = "List of devices attached" | |
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
| /** | |
| * Created by StavFX on 10/3/13. | |
| */ | |
| public class Log { | |
| private static final boolean DEBUG = true; | |
| private static final String NEW_LINE = System.getProperty("line.separator"); | |
| public static void w(String tag, String msg) { | |
| log(tag, msg); | |
| } |