This week's code snippet, Baklava in Yoix, is brought to you by Subete and the Sample Programs repo.
import yoix.stdio.putchar;
import yoix.math.abs;
printRepeat(int c, int count) {
int i;
for (i = 0; i < count; i++) {
putchar(c);
}
}
int i;
for (i = -10; i <= 10; i++) {
int numSpaces = abs(i);
int numStars = 21 - 2 * numSpaces;
printRepeat(' ', numSpaces);
printRepeat('*', numStars);
putchar('\n');
}
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: 🍎)
- 🍎 Reflecting on My Teaching Journey Heading into 2026
- 🍎 I Hate That Student Feedback Is Now Reviewed by Machine Learning
- ✒️ Not All Code Completion Is Generative AI
- ✒️ AI Haters Stay Winning: What It’s Like to Be Constantly Vindicated
- ✒️ Computer Science Career Advice in 2026? Your Guess Is as Good as Mine
- 🍎 Why I Don’t Record My Lectures
- ✒️ 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
Also, here are some fun links you can use to support my work.
This document was automatically rendered on 2026-01-02 using SnakeMD.





