The Weekly Challenge 317: The Friendly Acronym Song #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/04/The_Weekly_Challenge_317__The_Friendly_Acronym_Song.html
The Weekly Challenge 317: The Friendly Acronym Song #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/04/The_Weekly_Challenge_317__The_Friendly_Acronym_Song.html
Editing RakuDoc, CRO'ing it to Github - Richard Hainsworth
A Raku Cromponent to Render Highlighted Code — Powered by RakuAST - Fernando Correa de Oliveira
HARC Stack: Semantic & HTMXy - Steve Roe
The Weekly Challenge 316: Circular Reasoning #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/04/The_Weekly_Challenge_316__Circular_Reasoning.html
The Weekly Challenge 315: Find the Third Word #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/04/The_Weekly_Challenge_315__Find_the_Third_Word.html
taking notes on a video about core algorithms
start looking up pseudocode notations
start thinking about "executable pseudocode"
(ten minutes later)
starting to build Dan::Polars for DataFrame manipulation in #RakuLang
stray click and the video starts playing again
oh yeah
I missed colored output of #GNU ld for a long time. I created a simple wrapper script in #RakuLang to provide fairly usable highlighting of the linker messages.
https://gitlab.com/bindiff/ldhilite
Still work-in-progress, but fairly usable now.
Update: Now, the highlighter is a little bit smarter and does not overuse bold text so much.
The Weekly Challenge 314: Stringy Columns #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/03/The_Weekly_Challenge_314__Stringy_Columns.html
2025.12 Red on RakuAST - Rakudo Weekly News
The Weekly Challenge 313: Broken and Reversed #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/03/The_Weekly_Challenge_313__Broken_and_Reversed.html
Huh. #Rakulang surprises me again when playing around with Bufs.
Invoking the reduction operator against a Buf coerced into a list just works:
```
raku -e 'say [+] Buf.new(1,2,3).list;'
6 # The sum of all elements
```
Invoking ANY reduction operator against a Buf directly just returns the number of elements:
```
raku -e 'say [+] Buf.new(1,2,3);
3
raku -e 'say [*] Buf.new(1,2,3);
3
```
This feels like undefined behavior. Shouldn't this be a syntax error?
@bortzmeyer Zig is one of three languages I have my eye on!
- #Zig - Procedural and easier to read than C.
- #Haskell - Functional in the extreme.
- #Rakulang - Can be functional, can be procedural, can be OO. Fantastic grammar / #regex model.
I think they complement each other. Every Haskell guy I have introduced to Raku has loved it. I've known a few people who use Zig when they don't feel like being purely functional.
The Weekly Challenge 312: Minimum Time in the Box #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/03/The_Weekly_Challenge_312__Minimum_Time_in_the_Box.html
The Weekly Challenge 311: Lower the Sum #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/03/The_Weekly_Challenge_311__Lower_the_Sum.html
Can Cro be used to stand up a simple website? I know zero JS and negligible CSS. I'm mostly a Raku and Perl guy who is 100% on the back end. At minimum I need a primer for basic JS, CSS forms, and likely Cro or #Dancer.
The site will send text and hashes to and from the back end and manage a modest number of users with their own accounts. Message forms need to look nice on the front end. This is for a ham radio project of mine.
The Weekly Challenge 310: Odd Arrays #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/03/The_Weekly_Challenge_310__Odd_Arrays.html
#Rakulang question:
How do I create a custom character encoding in Raku?
I assume it has something to do with Encoding::Registry? I don't think the docs directly give an example of registering a custom encoding.
The Weekly Challenge 309: All You Minima #Perl #RakuLang #RustLang #Postscript #CrystalLang #PerlWeeklyChallenge #BlogFiredrakeOrg https://blog.firedrake.org/archive/2025/02/The_Weekly_Challenge_309__All_You_Minima.html