Skip to main content

Wrapped Up Tight

 I'm wrapped up in a blanket, and it feels great. I love a good blanket. There's nothing wrong with that. It feels so secure and warm to be able to snuggle up in one. Helps me to think better too, I think. There's not much room for warmth these days. I don't know what it is about basements, but they get chilly. Interesting how that works. Probably because they're lower in the ground usually. I like basements though, they feel warm and cozy to me. Something that I can deal with when life is too rough on my mind.

Still wish I could turn back time. But I can't and that's frustrating to me. There has to be a way to fix things. Somehow things must be fixed. But I can't seem to find a way. So that theory is shot all to hell and back now isn't it. No point in pursuing that train of thought. There are so many thoughts that need to just get thrown out and never thought about again. But I'm not sure how any of that even works. I just have to remember who I am and what I'm capable of. Or something like that.

Life seems to be playing tricks on me. I don't like it. There's got to be a way to overcome this nightmare of a life. Once you put the rocking chair in a locked position, you can no longer rock. I don't want life to end up the same way. Life is pretty messed up as it is, it doesn't need my help to get any messier.

So sleepy. That's what I get for waking up at 4:30 FOR THE FOURTH DAY IN A ROW!!! Yeah, it's pretty bad if you ask me. Usually, I'll wake up from some dream I'm having or something like that. It just jerks me awake and then I'm awake for the day. Kinda simple right? Yeah maybe. Maybe not, it's something to look into for sure. I'm not getting my usual number of hours of sleep. Should I be worried about that? I don't have a clue.

There should be an off switch for our brains. Something that you can switch on, and you don't overthink or hear voices or feel weird or anything. That would be ideal. But it would probably be abused and overused to the point of people going crazy. There's always a downside to something. Can't ever have all the upsides to any of it. Oh well, you live and let live.

The tiredness is starting to catch up with me from waking up early. I should probably take a nap or something. Wake up when I'm more alert perhaps. Eh who knows what's going on anymore. It's just life being weird to me. I don't need that.

Comments

Popular posts from this blog

Suicidal Ideation

 Over the years I've had to deal with suicidal ideation. Those are thoughts of being dead, some more extreme than others. It causes issues for me a lot of the time. It's not an easy thing to talk about at all. Here's what it is: Suicidal ideation ( suicidal thoughts )  are thoughts or ideas centered around death or suicide . Experiencing suicidal ideation doesn’t mean you’re going to kill yourself, but it can be a warning sign.

Ever Wonder

 Ever just sit and wonder about the things to wonder about? There are so many things that you can enjoy and think about or wonder about. It's just possible that you would be able to do such a thing. I'm not certain how it would go for you, as I am only a person. I don't know how you feel. So here we are, just waiting for something amazing to happen. It doesn't happen all the time unfortunately. It can be annoying at best.

Multidimensional Arrays

Ah Multidimensional Arrays. Nothing too crazy in JavaScript. Just a little bit of this and that. So typical arrays are fun and easy. You create them like so: var colors = new Array(); colors[0] = "Red"; colors[1] = "Yellow"; colors[2] = "Blue"; Well that's fine and dandy, but what if you want to associate something with each of those? For example, what if you wanted to create a menu? You'll need at minimum a link name and a target. We could do something like this: var colors = new Array(); colors[0] = new Array(); colors[0][0] = "red.htm"; colors[0][1] = "Red"; colors[1] = new Array(); colors[1][0] = "yellow.htm"; colors[1][1] = "Yellow"; colors[2] = new Array(); colors[2][0] = "blue.htm"; colors[2][1] = "Blue"; function createColors() { document.write('<ul id="colors">'); for (var i = 0; i < colors.length; i++) { var link = colors[i][0]; ...