This file contains hidden or 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
| // cc focus-reporter.m -o focus-reporter -framework AppKit | |
| #import <AppKit/AppKit.h> | |
| #import <Foundation/Foundation.h> | |
| int main(int argc, char **argv) { | |
| [NSApplication sharedApplication]; | |
| NSWorkspace *work = [NSWorkspace sharedWorkspace]; | |
| NSTimer *timer = [NSTimer timerWithTimeInterval:0.5 | |
| repeats:YES |
This file contains hidden or 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
| # Ken Silverman's BUILD art format | |
| # by Jonathon Fowler <jf@jonof.id.au> | |
| # 2024-02-18 | |
| little_endian | |
| #requires 0 "01 00 00 00" | |
| uint32 "Version" | |
| set numtiles [uint32 "Num tiles"] | |
| set localstart [uint32 "Local start"] |
This file contains hidden or 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
| # Standard MIDI File template for Hex Fiend | |
| # by Jonathon Fowler <jf@jonof.id.au> | |
| # 2021-11-28 | |
| # | |
| # Haven't fully handled sysex yet. | |
| big_endian | |
| requires 0 "4D 54 68 64" | |
| section "File header" { |
This file contains hidden or 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
| #!/usr/bin/env perl | |
| # Should be placed as hooks/post-receive. | |
| # GL_USER and GL_REPO are Gitolite envvars. | |
| # Parameter handling inspired by the post-receive-email | |
| # contrib hook shipped with Git. | |
| use JSON; | |
| use URI::Escape; | |
| #my $channel = '@jonof'; |
This file contains hidden or 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
| JoystickButton0 = "Quick_Kick" | |
| JoystickButtonClicked0 = "" | |
| JoystickButton1 = "Jump" | |
| JoystickButtonClicked1 = "" | |
| JoystickButton2 = "Open" | |
| JoystickButtonClicked2 = "" | |
| JoystickButton3 = "Inventory" | |
| JoystickButtonClicked3 = "" | |
| JoystickButton4 = "MedKit" | |
| JoystickButtonClicked4 = "" |