Skip to content

Instantly share code, notes, and snippets.

@vjyanand
vjyanand / gist:984b9bf2041a604322fd
Created September 30, 2014 14:36
version check
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
}
#!/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
@vjyanand
vjyanand / gist:1960835
Created March 2, 2012 19:48
List Installed Perl Modules
perl -MExtUtils::Installed -e 'my $Inst = ExtUtils::Installed->new();my @Modules = $Inst->modules(); for my $module (@Modules) { print "$module " . $Inst->version($module) . "\n"; } '