I’ve decided that I want to dye my hair, and I’m planning to do it in the summer before the cruise. I’m thinking about going for a dark, blackish-red color. It’s a bit difficult to describe, but I definitely want it to be dark. I’m not sure if I’ll get a haircut before coloring my hair; I’m just feeling tired of my current bleached look. While I’m glad my hair is growing out, I think it’s time for me to have a more uniform color instead of all this bleach.
I’m not a fan of phone conversations. I tend to feel flustered when I’m on the phone; I’ve even bitten my tongue twice while talking! I booked an eye appointment for Karissa and rescheduled her cardiology appointment, as her last one was canceled by the doctor. Her next appointment is now set for May. They advised me to call back periodically to check for any cancellations, so we might be able to get her in sooner. However, having her appointment in May is perfectly fine since it’s just for a check-up.
I have a doctor’s appointment scheduled for Tuesday to get my blood pressure medication refilled. Although I’ve already had my medication replenished, I decided to keep the appointment since it’s beneficial to have regular check-ins with my doctor.
Tomorrow, Tommy and I plan to wake up at 3 a.m. to drive to the wildlife refuge and capture some photographs at sunrise. I’m really looking forward to it! Tommy will bring his camera, while I think I’ll use my phone to take pictures. We’re also packing some camping gear to prepare breakfast while we’re there. After we return home, I hope we can stop by the library. I wonder if it’s on our way; if it’s too far off, I may have to skip the visit.
It’s day three of working on this Fibonacci function, and here’s what I’ve developed so far:
function fibonacci(n) { if (n <= 0) return []; // Handle invalid input if (n === 1) return [0]; if (n === 2) return [0, 1]; let fibArray = [0, 1]; // Start with the first two numbers }
I’m considering using a for loop, as many examples of the Fibonacci function incorporate it. I’ve been experimenting with various loops and consulting Google for examples, but I still haven't created a functioning Fibonacci function. I'm taking a short break because it's starting to confuse me. I think I will make myself a cup of tea.





