- Preheat oven to 200°C/400℉
- Roll out some puff pastry, store bought is absolutely fine
- Get a shallow pie tin or quiche pan (I tend to use 9.5" ones but any size is fine) and use it as a template to cut out a round of pastry
- Rub unsalted butter liberally all over the interior of the pan (salted should also be fine but omit the salt in Step 6)
- Sprinkle the inside of the pan liberally with brown sugar - I prefer Muscavado but this tart was just made with regular dark brown sugar which made it slightly lighter
- Optional Step: sprinkle some salt on the sugar (I use a couple of pinches of Maldon or Kosher salt for a 9.5" pan.) Alternatively some dark rum would be nice here. Or maybe some dark chocolate chips (although I've never tried that)
- Slice 2 or 3 bananas about 3cm/1" thick and then layer the slices in concentric circles starting from the outside, get as fancy with the layout as you'd like
- Lay the disc of pastry on top and then tuck down the edges inside the pan
- Bake for about 20-25 m
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
/* | |
* A WML Script implementation of the RSA Data Security, Inc. MD5 Message | |
* Digest Algorithm, as defined in RFC 1321. | |
* Copyright (C) Simon Wistow, 2001 | |
*/ | |
use url md5aux "md5_aux.wmlsc"; | |
function calcMD5(str) | |
{ |
I hereby claim:
- I am simonwistow on github.
- I am simonwistow (https://keybase.io/simonwistow) on keybase.
- I have a public key whose fingerprint is 152C E5E0 FF2E DC34 4A4B F259 B137 98F6 4EA8 AFB0
To claim this, I am signing this object:
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
sub vcl_recv { | |
if (req.http.Cookie ~ "mycookie=") { | |
# The request does have a tracking cookie so store it temporarily | |
set req.http.Tmp-Set-Cookie = req.http.Cookie; | |
unset req.http.Cookie; | |
} else { | |
# The request doesn't have a tracking cookie so create one | |
set req.http.Tmp-Set-Cookie = if(req.http.Cookie, req.http.Cookie "; ", "") "mycookie=" digest.hash_md5(now randomstr(32) client.ip); | |
} | |
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
package SchemaLoader; | |
use strict; | |
sub schema { | |
my $class = shift; | |
my $table = shift; | |
my $dbh = shift; | |
my $db_type = $dbh->{'Driver'}{'Name'} or die 'Cannot determine DBI type'; | |
my $sub = lc($db_type); |
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
sub vcl_recv { | |
if (req.http.Cookie ~ "mycookie=") { | |
# The request does have a tracking cookie so store it temporarily | |
set req.http.Tmp-Set-Cookie = req.http.Cookie; | |
unset req.http.Cookie; | |
} else { | |
# The request doesn't have a tracking cookie so force a miss | |
set req.hash_always_miss = true; | |
} |
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 | |
use warnings; | |
use strict; | |
use POE; | |
use POE::Component::IRC; | |
use IO::Handle; | |
open DEBUG, ">>slavorg.log" or die "Can't open log file: $!\n"; | |
DEBUG->autoflush(1); |
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
# HF2K Example | |
<!-- if $^r.uri !="/search/dir_ukie" && $|req[r] && $|req[y] == "n" --> | |
##redirect http://uk.search.yahoo.com/search/dir_ukie?$^r.args | |
exit | |
<!-- endif --> |
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
% cat error.pl | |
use strict; | |
use Dancer; | |
get '/' => sub { | |
send_error('foo'); | |
}; | |
dance; |
NewerOlder