Skip to content

Instantly share code, notes, and snippets.

View imReker's full-sized avatar

Reker imReker

View GitHub Profile
@imReker
imReker / com.apple.HeartRate.notifications.plist
Last active April 10, 2024 21:48
plist for Apple Watch to Enable ECG v2 and Atrial Fibrillation(IRNF)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EnableCardioFitnessNotifications</key>
<true/>
<key>EnableStationaryDiscordanceDetection</key>
<true/>
<key>EnableAtrialFibrillationDetection</key>
<true/>
@imReker
imReker / android_assets_copy.java
Last active September 12, 2017 02:54
[Android] Quick Copy/Extract files in assets to storage with java.nio
/*
Change the file extension of the files in assets that your want to copy to 'jpg'.
If you don't want change the extension, you can add
aaptOptions {
noCompress 'pdf' //Change to the extension of your assets files
}
to build.gradle.
*/
AssetFileDescriptor fd = null;
FileChannel outChannel = null;