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
#!~/tools/rakudo/perl6 | |
my $search_word = @*ARGS.shift; | |
my $replacement = @*ARGS.shift; | |
sub UpperCaseEachWord($word) | |
{ | |
my @words = $word.split('_'); | |
my @uppered = map {$_.lc.ucfirst}, @words; | |
return @uppered.join(''); | |
} | |
my %substitutions; | |
%substitutions{$search_word.lc} = $replacement.lc; | |
%substitutions{$search_word.uc} = $replacement.uc; | |
%substitutions{UpperCaseEachWord($search_word)} = UpperCaseEachWord($replacement); | |
# for %substitutions.pairs -> $x | |
# { | |
# say "{$x.key}, {$x.value}"; | |
# } | |
for $*IN.lines() -> $text is rw | |
{ | |
for %substitutions.pairs -> $sub | |
{ | |
$text .= subst($sub.key, $sub.value, :g); | |
} | |
say $text; | |
} |
Eh, that will do for now!
Shameless plug:
ReplyDeletehttp://blog.woobling.org/2009/07/degradable-gists-update.html
Using this (or a similar technique) the code sections still show up in the feeds, and loading of gists doesn't block the page rendering.