ב״ה

Eye Doctor

07:00. Got up, got dressed, went downstairs, brushed hair and beard, took some mouthwash. Got on laptop.

08:00. Thinking of running dnf install @cosmic-desktop-environment on my laptop.

10:00. Went to the pharmacy and got my meds. Saw some people I know there. Waited for my therapy appointment. Checked email and Mastodon.

11:50. Got out of therapy. Went to bank and got my new card. Got lunch at Taco Bell: Four fresco bean burritos and a medium Pepsi.

13:00. Arrived home. Ate my burritos with some cinnamon twists. Grabbed a Bubly sparkling water.

16:53. Returned from eye doctor. Prescription changed quite a bit in the last three years.

18:00. Learned how to do arrays and if statements in Rust. Ate my other two bean burritos from Taco Bell. Made a Fibonacci program.

fn main() {
    let mut x = 1;
    let mut y = 1;

    while x < 1000 {
	println!("{y}");
	y = x + y;
	println!("{x}");
	x = x + y;
    }
}

19:33. Next chapter in the Rust book will be chapter four: Ownership.

20:38. Tried porting site to Zola. Too much work, compared to manually editing HTML. I'll just keep using HTML.

21:00. Went to bed.

calebh.top