Sam S

Results 10 comments of Sam S

Have you tried again recently? Anki 2.1.0a14 seems perfectly stable for me on Arch Linux. (The build script used to install the package can be found [here in the Arch...

I added a [comment](https://rt.perl.org/Ticket/Display.html?id=130612#txn-1489316) to the Rakudo RT that I should have really posted here instead.

How would `Pod::Anchor` tell `Pod::To::HTML` what to do with the custom field though? I don't just want to place additional hidden anchors to the HTML pages, I want them to...

As a work-around, I'm now using a `_source/rename.sh` file with the contents: ``` --- layout: raw extension: .sh --- #!/bin/sh [%~ MACRO shellquote(str) BLOCK %]'[% str.replace("'", "'\\''") %]'[% END ~%]...

Explanation on SO: https://stackoverflow.com/a/44831926 Doc ticket: https://github.com/perl6/doc/issues/1400 RT (with some discussion on how it could be made to DWIM): https://rt.perl.org/Public/Bug/Display.html?id=131686#txn-1471068

I opened up a new issue for a proper RFC: https://github.com/rakudo/rakudo/issues/2025 Also, note that this is only about the part with `reduce`. Regarding bare `zip`/`roundrobin`, I think you're mistaken: bare...

@zoffixznet > `$/ := "meow"; .subst: /(\d)/, { $0 * 2 }` can't set caller, so it doesn't bother to, but $/ is still available within the block Would the...

@zoffixznet > No, the `$0` inside the block would contain `(\d)` match from `subst`. How? Which is to say, what _mechanism_ will pass `$/` from `.subst` to the callback block?...

Here's the behavior that I think would be most useful, in particular taking into account the concerns of issue #1398: | | `+a` | `+@a` | |-------------------------------------------------------|-------------|--------------------| | When passed...

Maybe it's not necessary to allow user types to implement **custom** behavior for this, as long as the **`Array` and `Hash` behaviors** are made available to them (the former already...