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/perl | |
| # Firefox keeps creating the ~/Desktop directory for some reason whenever the preferences are opened. This little script keeps your $HOME clean until those Mozilla monkeys finally fix that sh*t. | |
| use strict; | |
| use warnings; | |
| use Linux::Inotify2; | |
| my $inotify = new Linux::Inotify2 or die "Narf!\n"; |
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
| module Mud.Thing.Parse where | |
| import Text.ParserCombinators.Parsec | |
| import Mud.Thing.Data | |
| import Mud.Thing.Eval | |
| -- Parse comment (starting with '#' until end of line). | |
| comment = do |
NewerOlder