July 21, 2026
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 passes, and your progress is recorded.
Read More...
raku (20) tdd (2) test (2) spec (1)
January 17, 2021
Apache Bench (ab) is a popular command-line tool used for benchmarking the performance of HTTP web servers. Here's a basic guide on how to use it:
#!bash
N=100
C=15
AB=/usr/sbin/ab
URL=https://yahoo.com/
$AB -n $N -c $C $URL
Read More...
test (2) apache (1)