simple made easy

drafting… 2025-05-10 Simple Made Easy, Richard Hickey talk, takeaways, Listening to this presentation, from the frame of why do codebases get difficult to change , but also how you plan changes you want to make on the scale of a “story” or “bug” and also just a “day” and even a single block of time you have for a particular story. The definition of simple as simplex as one interleave and less simplex as more “concepts” that are taken together to be more “complex”....

May 9, 2025 · (updated June 2, 2025) · 4 min · 743 words · Michal Piekarczyk

Drop it Like It's null

Arghh ha ha I have been messing around with trying to understand why the transactions I see on my Tiller from my credit card, are not as many as what I see when I pull the csv of transactions straight from my credit card website. Dohh. During my data wrangling, I had to manually copy and paste transactions out of my Google Sheets, because Google Sheets oddly enough does not have the capability of “exporting as csv” what has undergone a data filter....

April 19, 2025 · (updated June 2, 2025) · 3 min · 434 words · Michal Piekarczyk

collect logseq logbook stats

Figured, I’m not good at logseq datalog queries yet, so may as well just read logseq LOGBOOK data using plain python. And with assist of chat gpt, I have a nice proof of concept. from pathlib import Path import polars as pl import time_log as tl journals_dir = "mgraphblah/journals" pattern = "2025_*.md" out_vec = tl.iterate_across_journals(journals_dir, pattern) df = pl.from_dicts(out_vec) how much time I spent on taxes? per_tag_stats = df.explode("Tags").group_by("Tags").agg(pl.col("Duration (mins)").sum().alias("Total minutes")) per_tag_stats....

April 5, 2025 · 2 min · 265 words · Michal Piekarczyk

good vibes all around

I was reading Andrej Karpathy’s original post, https://x.com/karpathy/status/1886192184808149383, on vibe coding. And yesterday, first time I tried VS Code, in order to try Codeium, as my first touch of edit assist which the early GitHub Copilot I test drove before did not have. Cursor introduced the edit concept but I hadn’t tried this because I was already paying for Open AI ChatGPT, so I didn’t want to double dip. But I got a chance to try Codeium at work, so I did....

April 4, 2025 · (updated June 2, 2025) · 4 min · 707 words · Michal Piekarczyk

batch a few book summaries

Drafting this here so far, before it leaves my brain. In, Feel Good Productivity, Ali Abdaal captured very well, the idea that sometimes what we do with the intention of winding down at the end of the day, does not actually achieve that purpose . and instead he challenges his readers, to paint, go for a walk, or to find the things that, really give you the relaxation that you actually want....

April 3, 2025 · (updated June 2, 2025) · 4 min · 697 words · Michal Piekarczyk