Skip to content

Instantly share code, notes, and snippets.

View wolverian's full-sized avatar

Ilmari Vacklin wolverian

View GitHub Profile
@wolverian
wolverian / watch
Created December 22, 2010 18:10
Perl directory/file change watcher and command runner for OS X
#!/usr/bin/env perl
use 5.010;
use strict;
use warnings;
package App::watch;
use Moose;
use File::ChangeNotify;
@wolverian
wolverian / gist:734940
Created December 9, 2010 16:39
Plack::Test, dzil and paths
use strict;
use warnings;
use Test::Most;
use Plack::Test;
use HTTP::Request::Common;
use Cwd;
my $app_path = cwd() . '/bin/dicole-eventserver.psgi';
my $app = do($app_path) or die "$!: $app_path\n";
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by fish configure 1.23.1, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ ./configure --prefix=/Users/wolverian/Applications/Homebrew/Cellar/fish/1.23.1 --without-xsel
## --------- ##
## Platform. ##
class Foo(val foo: Int) {
def lol = 42
}