LearnRaku.dev is live

I just released LearnRaku.dev into production. It is an interactive, browser-based trainer for learning Raku. You get an exercise, a failing spec, and an editor. You write code until the spec…

Read More...

Dogfooding My Own Raku MVC Web Framework

A few weeks ago I blog'd about shipping behave.dev , the first Raku app I ever put into production. This blog post is an even bigger deal to me personally. The site you are reading right now,...

Read More...

Shipping My First Raku App

Shipping My First Raku App: behave.dev I just released behave.dev into production. It's the homepage for BDD::Behave , my behavior-driven testing framework for Raku. It's the first Raku application...

Read More...

Raku: Why It Hasn't Caught On

I've been watching Raku since it was still Perl 6, back when Larry Wall gave his State of the Onion talk in 2000 . Fifteen years from announcement to 1.0. You can defend the timeline; they were...

Read More...

Console::Blackjack

Console Blackjack for Raku. Github Repo Latest Release Report Issues LICENSE Current Version: v1.0.6 Install using zef: zef install Console::Blackjack

Read More...

ORM::ActiveRecord

ORM::ActiveRecord is an object-relational mapping module for Raku that mostly follows the Active Record Pattern . Install using zef: zef install --/test ORM::ActiveRecord More info: Doumentation...

Read More...

BDD::Behave

A behavior driven development framework for Raku. Github Repo Latest Release Report Issues LICENSE Install using zef: zef install BDD::Behave

Read More...

Template::HAML

HTML Abstraction Markup Language for Raku. A shameless rip-off of Ruby HAML. Github Repo Latest Release Report Issues LICENSE

Read More...

Custom Operator - Basic Object Identity

It is often the case in object oriented programming you need to compare two objects to see if they are the same. Usually it just means doing a deeper comparison of the attributes on each object.

Read More...

Raku spiral matrix

Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.

Read More...

Console Blackjack in Raku

Console Blackjack in Raku

I wrote a console version of Blackjack in Raku: https://github.com/gdonald/Console-Blackjack and released it as module: Console::Blackjack

Read More...