This file contains 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 | |
use strict; | |
use warnings; | |
use Test::Most qw{no_plan}; | |
use Carp::Always; | |
BEGIN{ print qq{\n} for 1..10}; | |
#----------------------------------------------------------------- |
This file contains 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 | |
use strict; | |
use warnings; | |
use LWP::Simple; | |
#------------------------------------------------------------------------------- | |
# calculate how many times each speaker spoke | |
#------------------------------------------------------------------------------- | |
my %speakers; | |
do{ my ($_) = m/\d{4}-\d\d-\d\d\.(?:([^.]+)\.)?.*/; # named capture? |
This file contains 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 | |
use strict; | |
use warnings; | |
use Test::Most qw{no_plan}; | |
my $data = [{ label => {key => 'value'}}]; | |
eq_or_diff | |
[ map{ my $hash = $_; | |
my $x = |
This file contains 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 | |
use strict; | |
use warnings; | |
use Test::Most qw{no_plan}; | |
BEGIN { | |
package My::Test; | |
use Exporter qw{import}; | |
our @EXPORT = qw{thing}; |
This file contains 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
package Thing::App; | |
use Dancer ':syntax'; | |
sub get_my_data {...}; | |
any ['get', 'post'] => '/something' => sub { | |
my $data = get_my_data(); | |
if (request->method eq 'GET') { | |
... | |
} else { |
This file contains 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
sub multi ($$) { | |
my $route_templates = shift; | |
my $route_definition = shift; | |
foreach my $type (keys %$route_templates) { | |
foreach my $route ( keys %$route_definition) { | |
my $action = sub{ $route_templates->{$type}->( $route_definition->{ $route } ) }; | |
Dancer::App->current->registry->universal_add( $type | |
, $route | |
, $action |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<pre> | |
<? print_r($_POST); ?> | |
</pre> | |
<form action='<? $_SERVER['PHP_SELF'] ?>' method='POST'> |
This file contains 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
<? | |
/* I know the issue here is the use of the assignment rather then equality, though | |
I would think that this would lead to an infinite loop as $c should be reset to | |
4 for every instance of the $c loop after $r = 2 ... right? But that's not what | |
seems to happen? Any one have any insight? | |
NOTE: why does the else clause never get tripped, if $c==1? | |
*/ | |
echo '<pre>'; |
This file contains 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
mysql> select * from status_type; | |
+----+-------------+ | |
| id | status_name | | |
+----+-------------+ | |
| 1 | created | | |
| 2 | started | | |
| 3 | canceled | | |
| 4 | finished | | |
+----+-------------+ | |
4 rows in set (0.00 sec) |