Uncategorized

Random Tuesday

I need to make a grocery list for the ingredients for the cookies I will be baking for Christmas. We don’t really have a dinner planned. Which is making me anxious but we will play it by ear and hopefully not be shopping so close to Christmas. It will all work out.

Tommy and I are picking Lexi up on Friday for Christmas break. I know she will do great on her finals this week. Karissa just finished hers and passed Spanish and Math. Her design class had a project which she did well on. I forgot that Karissa is on Christmas break already. I was reminded today when I asked her about her homework.

I have therapy tomorrow. Not sure what we are going to talk about. We have been going over my tendency on not talking. I’m trying to talk more, I don’t think I’m doing that well on it. I’ve been trying to be more active on social media but I end up reading posts, liking them, and I will think of something to say but then not say it.

I’m having coffee instead of snacking. Coffee suppresses my appetite. I know it’s not a great thing to do and for most of the time it doesn’t work. Maybe I will have a small bowl of popcorn later. I had a sandwich for lunch so I did at least have lunch today. I don’t eat much when it is just me eating. When Tommy is home, I will make him lunch and inevitably make my own lunch. But I get lazy to make food when it comes to myself. This goes along with how I easily take care of everyone else except myself. Except for my skin care, I get pretty lazy on myself.

It’s supposed to snow tomorrow. Not a lot but it’s nice to get some snow. I would like it to be clear on Friday cause that is when we go pick up Lexi from school. I like snow, but not when it complicates things.

Tommy had a migraine yesterday. I’ve never had a migraine before but I hear they are horrible. He seems to be doing better today.

Ok, I don’t have much more to talk about. I should get back to JavaScript. I’m not happy with the program I’m using cause I want to revisit some of the beginning stuff but the website is not set up to where you can. Maybe the Odin Project? That was the second area that the tech book that I read was talking about. So maybe I will visit that sometime. I should get back to coding.

I was just thinking. I have an espresso machine. I need to learn how to use it and actually use it. But the Keurig is so easy. But I should use the espresso machine sometime. I will look at some videos on it later.

Alright, I will get back to Javascript now.

—————————————-
Roman Numeral converter..

function convertToRoman(num) {
  var ref = [['M', 1000], ['CM', 900], ['D', 500], ['CD', 400], ['C', 100], ['XC', 90], ['L', 50], ['XL', 40], ['X', 10], ['IX', 9], ['V', 5], ['IV', 4], ['I', 1]];
  var res = [];
  ref.forEach(function(p) {
    while (num >= p[1]) {
      res.push(p[0]);
      num -= p[1];
    }
  });
  return res.join('');
}
Facebooktwitterredditpinterestlinkedinmail