paulgorman.org

< ^ txt

Thu Mar 21 06:00:01 EDT 2024 ======================================== Slept from ten-thirty to seven. Woke for an hour around two. Partly cloudy. Highs in the mid 30s. Northwest winds 5 to 10 mph. # Work * 10:00 AM - 10:30 AM CTO demand team sync * 12:00 PM - 12:45 PM Cynerge all hands * 12:00 PM - 01:00 PM Solution architecture review * 12:30 PM - 01:00 PM Automation CoE stakeholder call # Home * [x] exercise for twenty minutes * [ ] rebuild personal VM (RHEL EOL June 2024) * [ ] car oil change * [ ] schedule dentist appointment * [ ] schedule optometrist appointment Washed two loads of laundry. ```rust fn main() { const LIMIT: i32 = 144; let mut fib = 1; let mut prev1 = 0; let mut prev2; while fib <= LIMIT { println!("{}", fib); prev2 = prev1; prev1 = fib; fib = prev1 + prev2; } } ``` Rode the exercise bike for twenty minutes at work. Twenty minutes is harder some days than others. Servings: grains 6/6, fruit 0/4, vegetables 3/4, dairy 5/2, meat 4/3, nuts 0/0.5 Breakfast: cucumber, tomato, English muffin, two eggs, sausage Brunch: coffee Dinner: pizza

< ^ txt