This week's code snippet, Baklava in Chapel, is brought to you by Subete and the Sample Programs repo.
for n in -10..10 {
var num_spaces = abs(n);
var num_stars = 21 - 2 * num_spaces;
writeln(" " * num_spaces + "*" * num_stars);
}Below you'll find an up-to-date list of articles by me on The Renegade Coder. For ease of browsing, emojis let you know the article category (i.e., blog: ✒️, code: 💻, meta: 💭, teach: 🍎)
- ✒️ Should You Use Git on Personal Projects No One Will Ever See?
- ✒️ The Era of Narks Is Upon Us
- ✒️ Recapping My First In-Person Academic Conference
- ✒️ Theseus’s PC: Eight Years of Changes to One Man’s Machine
- ✒️ Nobody Wants to Have Kids
- 🍎 Experimenting With Hidden Prompts on Exams
- 💭 Another Year, Another Hacktoberfest
- ✒️ I’m Learning a Language, and I’m Tired
- 🍎 Yes, You Need General Education in College
- 🍎 Higher Education Should Not Be a Job Training Program
Also, here are some fun links you can use to support my work.
This document was automatically rendered on 2025-11-21 using SnakeMD.





