Week Notes [2026 #32]

August 2026

Monday - Aug. 10, 2026

Tuesday - Aug. 11, 2026

Instead of doing:

let x = test_root.map(|p| PathBuf::from(p));

to change the type of an option you can just do:

let x = test_root.map(PathBuf::from)

That just clicked about why that works. The value from the map just gets passed into the PathBuf::from function directly.

So dope.

Wednesday - Aug. 12, 2026

Sunday - Aug. 16

Outro

Good week overall.

I'm ready to solve for this waveform thing and finish up that leaflet post to get them finished up. They're both close. First 90% is done. Just gotta do the last 90%.

Hope you have a great week.

-a