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
my Channel $c .= new; | |
my Channel $c2 = $c.Supply.batch( elems => 2).Channel; | |
my $count = 0; | |
$c.send($_) for ^40; | |
my $work = start react whenever $c -> $item { | |
$c.send( $item ); | |
say "This is $item"; | |
} |
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
use JSON::Tiny; | |
use Wikidata::API; | |
sub MAIN( Str $toy-list = 'list.json' ) { | |
my $toys = from-json $toy-list.IO.slurp(); | |
say $toys.grep( { is-product( $^þ) } ); | |
} | |
sub is-product( Str $item ) { |
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
use Text::Markdown; | |
use JSON::Tiny; | |
sub MAIN( Str $letter-to-santa = 'letters/dear-santa-list.md' ) { | |
my $letter = Text::Markdown::Document.new($letter-to-santa.IO.slurp()); | |
my $flip = False; | |
my $list = $letter.items | |
.grep( { $flip = ( $flip | |
or so ($^þ ~~ Text::Markdown::Heading | |
and $^þ.level == 2 |
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
use Text::Markdown; | |
sub MAIN( Str $letter-to-santa = 'letters/dear-santa-sections.md' ) { | |
my $letter = Text::Markdown::Document.new($letter-to-santa.IO.slurp()); | |
my $flip = False; | |
my @paragraphs = $letter.items.grep( { $flip = ($^þ ~~ Text::Markdown::Heading and $^þ.level == 2)?? !$flip !! $flip } ); | |
say so any @paragraphs.map( {$^þ.Str ~~ /good/ } ); | |
} |
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
use Text::Markdown; | |
sub MAIN( Str $letter-to-santa = 'letters/dear-santa.md' ) { | |
my $letter = Text::Markdown::Document.new($letter-to-santa.IO.slurp()); | |
say so $letter.items.grep( { $^þ ~~ Text::Markdown::Heading } ); | |
} |
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
import Html | |
import Markdown | |
letter : Html msg | |
letter = | |
Markdown.toHtml [class "content"] """ | |
# Letter to Santa | |
I've been *real* **good** so I want this for Christmas | |
1. A Death Star. | |
2. A green unicorn. |
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
use JSON::Tiny; | |
sub MAIN( Str $letter-to-santa = 'letters/dear-santa.txt' ) { | |
say to-json $letter-to-santa.IO.slurp().split(/\s* «and» \s*/); | |
} |
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
# Tip de https://t.co/tQKo7Err73 para "aplanar" una lista de listas | |
sum(list(map( lambda n: [str(n)+'♠',str(n)+'♣',str(n)+'♥',str(n)+'♦'], ['A','J','Q','K',2,3,4,5,6,7,8,9,10])),[]) | |
# El map genera una lista de listas, y sum agrega las listas del segundo nivel en una sola, usando la sobrecarga de + para listas |
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
# get the list of PIDs and cpu usage via the batch version of top if ps is not fully functional, take out the headers, sort numerically using the 9th column, which is the CPU usage as key, take the last one, and extract the second column | |
top -n 1 -b | tail -n +8 | sort -k9 -n | tail -1 | cut -d ' ' -f 2 |