I’m experiencing a headache today, which is unusual for me. This one is located over my right eye and is rather bothersome. I took some Naproxen, and it’s providing a bit of relief. Additionally, I’m on antibiotics for my ear, which is helping to alleviate the discomfort in my right ear. This morning, Kel, Karissa,…
Author: desertkitten_md0op6
Birthdays and coding
Today is Alexis’s birthday! I’ve shared her birth story here. She turns 22 today, and I hope she has a wonderful day; I miss her since she is away at school. I document my daily activities in my planner, which serves as a sort of mini journal. This practice is helpful, as I often refer…
Graduating girls
I’m feeling quite sleepy today. I took a 15-minute nap, which may not seem substantial, but it truly helps. My sleep doctor advised me on this. Taking a long nap can leave you feeling groggy afterward, but a brief 15-minute nap can effectively boost alertness, especially in the afternoon, without the risk of grogginess or…
Powered by coffee
I didn’t write yesterday because I was away from home all day and didn’t have the opportunity. Well, I had the opportunity before bed but I was pretty tired. I returned around 8:30 PM and prepared Tommy’s lunch for today. Kel, Alex, and I accompanied Tommy when he left for work so we could use…
More coding
It seems that the stomach flu is making its rounds, and I’m thankful to have avoided it so far. Kel, Alex, and Tommy all fell ill with it last weekend. On Saturday, Tommy and I went to lunch while we waited for Kel’s dad to be released from the hospital. Afterward, we stopped by Costco…
High wind warnings
The weather app indicates it’s 39 degrees outside, but it feels more like 9 degrees due to the biting cold wind. We currently have a high wind warning in effect, and the pellet stove has been running since this morning to keep us warm. Sandy is feeling chilly, so she’s curled up in my lap….
Let them eat cake
I think I have this figured out. The debounce function. Here is the code: const debounce = (func, delay) => { let timer; // This will store the timer ID return (…args) => { clearTimeout(timer); // Clears any existing timer timer = setTimeout(() => func(…args), delay); // Sets a new timer }; }; I opted…
Making appointments
Once again, I’m finding myself staring at my phone, dreading the prospect of making a dentist appointment. It’s not the dental visit itself that I dread; rather, it’s the act of making the call that I find so daunting. In addition to scheduling an appointment for myself, I also need to do the same for…
Busy Tuesday
I’m finally home after a busy morning out with Kel and Karissa. Karissa had an eye appointment, which went well, and she received new prescriptions. Afterwards, we headed to Costco to pick up her new glasses, which she will receive in a few weeks. We enjoyed lunch at Costco while waiting for Kel and her…
Monday coding
So today I’m working on anagrams in coding. I need to write a function that checks if two strings are anagrams. We will start by saying that an anagram is a literary device where the letters that make up a word, phrase, or name are rearranged to create new ones. Two strings are considered anagrams…