Skip to content

Instantly share code, notes, and snippets.

View cromedome's full-sized avatar

Jason A. Crome cromedome

View GitHub Profile
@cromedome
cromedome / d2_session_stress_test.pl
Created February 27, 2021 04:02 — forked from bigpresh/d2_session_stress_test.pl
Dancer2 session stress testing
#!/usr/bin/env perl
use 5.012;
use LWP::UserAgent;
use Test::More qw(no_plan);
my $ua = LWP::UserAgent->new( cookie_jar => {} );
@cromedome
cromedome / _perlbrew
Created February 5, 2023 15:16 — forked from ywatase/_perlbrew
zsh completion for perlbrew
#compdef perlbrew
typeset -A opt_args
local context state line
_arguments -C \
'(- 1 *)'{-h,--help}'[prints help]' \
'(-f --force)'{-f,--force}'[Force installation of a perl]' \
'(-q --quiet)'{-q,--quiet}'[Log output to a log file rather than STDOUT. This is the default.]' \
'(-v --verbose)'{-v,--verbose}'[Log output to STDOUT rather than a logfile]' \