Skip to content

Instantly share code, notes, and snippets.

View Whateverable's full-sized avatar
☺️
Having fun on #raku on Libera.chat

Whateverable bots Whateverable

☺️
Having fun on #raku on Libera.chat
View GitHub Profile
@Whateverable
Whateverable / query
Created July 15, 2016 06:14
bisectable
say (^∞).grep({ last })[5]
@Whateverable
Whateverable / query
Created July 15, 2016 06:16
bisectable
.say for ^200
@Whateverable
Whateverable / query
Created July 15, 2016 06:16
bisectable
good=2016.03 bad 2016.02 say (^∞).grep({ last })[5] # swapped good and bad revisions
@Whateverable
Whateverable / query
Created July 15, 2016 06:17
committable
HEAD say rand for ^100
@Whateverable
Whateverable / query
Created July 15, 2016 06:20
committable
HEAD~200..HEAD say round(rand*3)
@Whateverable
Whateverable / query
Created July 16, 2016 02:57
bisectable
'á' ~~ m:g:ignoremark/ <[a]> /
@Whateverable
Whateverable / query
Created July 16, 2016 03:31
bisectable
https://gist.githubusercontent.com/zoffixznet/1b371fb8c4624aa662d622e685d6e950/raw/d42b6046679b369cbb0faa4dcefde97b5f66d0f5/gistfile1.txt
@Whateverable
Whateverable / query
Created July 16, 2016 04:15
benchable
HEAD~50..HEAD my $a = "a" x 2**16;for ^1000 {my $b = $a.chop($_)}
@Whateverable
Whateverable / query
Created July 16, 2016 04:19
benchable
HEAD~50..HEAD my $a = "a" x 2**16;my $b = $a.chop($_) for ^1000
@Whateverable
Whateverable / query
Created July 17, 2016 03:08
benchabletest
HEAD~50..HEAD my $a = "a" x 2**16;my $b = $a.chop($_) for ^1000