Skip to content

Instantly share code, notes, and snippets.

View kevinmanncito's full-sized avatar
🙏

Kevin Mann kevinmanncito

🙏
View GitHub Profile
@pep108
pep108 / react-native-image-picker+7.1.2.patch
Created May 31, 2024 21:36
patch react-native-image-picker to include exif data
diff --git a/node_modules/react-native-image-picker/android/src/main/java/com/imagepicker/Utils.java b/node_modules/react-native-image-picker/android/src/main/java/com/imagepicker/Utils.java
index 1e9078d..7ed6f29 100644
--- a/node_modules/react-native-image-picker/android/src/main/java/com/imagepicker/Utils.java
+++ b/node_modules/react-native-image-picker/android/src/main/java/com/imagepicker/Utils.java
@@ -491,7 +491,7 @@ public class Utils {
}
static ReadableMap getImageResponseMap(Uri uri, Uri appSpecificUri, Options options, Context context) {
- ImageMetadata imageMetadata = new ImageMetadata(appSpecificUri, context);
+ ImageMetadata imageMetadata = new ImageMetadata(uri, context);
@mkfares
mkfares / zsh-keyboard-shortucts.md
Last active June 12, 2024 16:23
Common zsh Keyboard Shortcuts on macOS Catalina

Common zsh Keyboard Shortcuts on macOS

Navigation

CTRL + A : Move the cursor to the beginning of the line
CTRL + E : Move the cursor to the end of the line
OPTION + Left Arrow : Move the cursor one word backward
OPTION + Right arrow : Move the cursor one word forward
Left Arrow : Move the cursor one character backward
Right Arrow : Move the cursor one character forward