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
fun Modifier.ripple(): Modifier = composed { | |
val source = MutableInteractionSource() | |
indication(interactionSource = source, indication = rememberRipple()) | |
.pointerInput(Unit) { | |
detectTapGestures( | |
onPress = { offset -> | |
val press = PressInteraction.Press(offset) | |
source.emit(press) | |
tryAwaitRelease() | |
source.emit(PressInteraction.Release(press)) |
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
diff --git a/applications/main/subghz/subghz.c b/applications/main/subghz/subghz.c | |
index b7564ab5..49651158 100644 | |
--- a/applications/main/subghz/subghz.c | |
+++ b/applications/main/subghz/subghz.c | |
@@ -308,11 +308,13 @@ void subghz_free(SubGhz* subghz) { | |
int32_t subghz_app(void* p) { | |
SubGhz* subghz = subghz_alloc(); | |
+ /* | |
if(!furi_hal_region_is_provisioned()) { |
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
#!/usr/bin/env python | |
# Author: Sergei Franco (sergei at sergei.nz) | |
# License: GPL3 | |
# Warranty: NONE! Use at your own risk! | |
""" This script will crudely extract embedded GPS data from Novatek generated MP4/TS files. """ | |
import os | |
import sys | |
import argparse | |
import glob |
OlderNewer