This file contains 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
NSOperatingSystemVersion ios8_1_0 = (NSOperatingSystemVersion){8, 1, 0}; | |
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:ios8_1_0]) { | |
// Read and write workout information to health kit. | |
} else { | |
// Write workout information to health kit | |
} |
This file contains 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 | |
########################## | |
## Check if run as root ## | |
########################## | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi |
This file contains 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
perl -MExtUtils::Installed -e 'my $Inst = ExtUtils::Installed->new();my @Modules = $Inst->modules(); for my $module (@Modules) { print "$module " . $Inst->version($module) . "\n"; } ' |
NewerOlder