jubilatious1
jubilatious1
Hi, I really enjoyed your PerlCon talk. I checked out `cheat.sh` and it works great. https://www.youtube.com/watch?v=xSm9ZA8IIGM One thing I noticed is... while your overview page indicates that `cheat.sh` has support...
### Diagnostics ``` Request: GET https://api.teletype.atom.io/protocol-version ``` ### Versions **Teletype version**: v0.13.4 **Atom version**: 1.58.0 **Platform**: darwin
From @codesections #3965 : "I also added a few more `X` entries, which should help with the issue @jubilatious1 brought up – it doesn't resolve it, but at least if...
Larry gently explaining some of the differences between Perl and Raku one-liners. From July, 2020. Too good to languish in the NNTP Archives! https://www.nntp.perl.org/group/perl.perl6.users/2020/07/msg9004.html
zef never completes install of LWP::Simple on older MacOS machine, stalls on 'testing' with 100% CPU utilization: ``` user@mbook:~$ ~/rakudo/rakudo-2020.10/zef/bin/zef install LWP::Simple ===> Searching for: LWP::Simple ===> Updating cpan mirror:...
Hello, on the "Introduction to Perl 6 Regex" page the following statement is found: `/ 'foo.' * / # will match "foo.", "foo.foo.", "foo.foo.foo.", etc.` Doesn't the star (*) quantifier...
Maybe not a coding issue, but a `zef` ecosystem issue. When I perform `zef list` see a signed and unsigned version with the same version number (`ver`): ``` GraphQL::Server:ver:auth GraphQL:ver:auth...
**Feature Request** I love how Karabiner and Seil help make the keyboard more 'modal', but still looking for visual aids when a Modifier key has been toggled. Seil appears best...
I haven't tried `--force-build` yet, but here's what I see so far: ``` $ ~/rakudo/rakudo-2021.06/zef/bin/zef install Gnome::Gtk3 ===> Searching for: Gnome::Gtk3 ===> Searching for missing dependencies: Gnome::N, Gnome::Glib, Gnome::GObject, Gnome::Gio,...
### The Problem `lines.contains( / \h / )` returning True for strings not containing horizontal whitespace: ``` ~$ raku -e 'put "1\n2\n3";' | raku -e 'put slurp.contains(/ \h /) ??...