Skip to content

Instantly share code, notes, and snippets.

View whymarrh's full-sized avatar

Whymarrh Whitby whymarrh

View GitHub Profile
@whymarrh
whymarrh / com.whymarrh.apps.mediakeys.plist
Last active December 13, 2015 19:48
Sample p-list file for an OS X daemon.
<?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>Label</key>
<string>com.whymarrh.apps.mediakeys</string>
<key>ProgramArguments</key>
<array>
<string>/path/to/the/executable/file</string>
</array>
@whymarrh
whymarrh / swap.c
Last active December 12, 2015 12:38
The XOR swap algoritm in C.
void swap(int *a, int *b);
int main(int argc, char **argv) {
int a = 1;
int b = 2;
swap(&a, &b);
return 0;
}
void swap(int *a, int *b) {