Skip to main content

Posts

Blast From The Past: Hiccups

There needs to be more sleep hours in the day. I could have used a bit more sleep this morning let’s face it. But that’s not going to happen now. Oh great I have hiccups now. I don’t know where that came from. Let’s see if I can hold my breath. If that helps then the hiccups will be gone and everything will be fine and dandy. Nope that’s not happening either. Dang it. Maybe I’ll get there maybe.

Life Isn't Fair

Let’s face it, life isn’t fair. I don’t know how to explain it. I don’t suppose it’s meant to make any sense really. But who am I to say that? I’m a nobody. Sure it doesn’t feel like that at times, but trust me I’m a nobody. It would be nice not to feel like a failure. I don’t know how to feel that way though? I just feel that way and it’s all I’ve ever known. Talk about an anoying thought process…but it is what it is. Whatever would be nice doesn’t always make sense to me. It’s that strange of a thought. It would be nice to have self esteem, some self confidence even. But where am I going to find that? I don’t know. It’s just one of those things, I think. Doesn’t quite make sense when you’re not looking for an answer. Only when you’re constantly thinking about it are you under some kind of…trance. That’s the best way I can describe it. I don’t know how else to do that. It’s whatever. I don’t know what it is.

Why This Life?

Why This Life? Kyle Eggleston Some wonder why this life. It’s a simple question without any kind of simple response. It would be nice to have an answer to it all. But we don’t. Not all answers come easily to us. There are some that avoid us at all costs. Life is one of those questions that seems to avoid people. Where are we going after we die and all of that. It would be nice to be able to figure it all out eventually. If that is at all possible.

Life Is Weird

Life Is Weird Kyle Eggleston Life is weird. I don’t know how else to explain it. Life is simply weird. To some people it seems normal to others it’s weird. I wish I could comprehend exactly what’s going on with life to make it not weird and everything else. But I can’t. So I will simply keep these thoughts to myself. Life is weird.

SQLite and Dates

Sometimes we want to store the date/time as an integer. It makes sense sometimes. If you want to run updates on everything higher than a certain number, you can do it quite easily with an integer. If you want to run everything all over again, compare it to zero. All records will be processed again. Easy peasy. Here’s how one of my tables looks to achieve this integer method for a date/time: CREATE TABLE notes( id INTEGER primary key, title TEXT, note_txt TEXT, created_dt INTEGER not null default (strftime('%s', 'now', 'localtime')), exported_flag INTEGER not null default 0 ); See how that works? Yeah, it’s pretty neat if I do say so myself. Of course you have to convert it to make it human readable. To do that, I usually do something like this: SELECT id, title, note_txt, created_dt, strftime('%Y-%m-%d %H:%M', created_dt) as formatted_dt FROM notes ORDER BY id DESC LIMIT 1 But, I can see what you’re thinking. Why do it...

Rant of a Penguin!

Son of a Bitch! Okay maybe not that bad. But still, I don’t feel good today. Maybe that was an attention grabber. Did it grab your attention? Well did it? It’s not like I screamed out MotherFucker! Not that would be a dang attention grabber. But I digress. What’s the point of it anyway? Yep, that’s what I was thinking. Life is good at the moment. I have a loving wife who I love and adore. It’s a good life to be sure. Sleep would also be good, but when you don’t sleep…what can you do about it? Not much I’m afraid.

It's Always The End

Ever think that this life will never improve? Ever wonder if this life will become something more than it currently is? Yeah I tend to wonder that at times. I feel like the end is always just around the corner. There doesn’t appear to be anything wrong with that thought, but it makes me shiver at the prospect that life will never be the same. I wish I could make sense of that, but I’m not sure I can. Life will always be there tormenting us to the brink of death, and then we will “get better” as it were, only to go through it all over again. Yes, I know that doesn’t make sense. But when did anything make sense in this life? I don’t know. That’s life for you in a nutshell though. It will always find a way to destroy us no matter what the cost. If I could figure out how to stop that from happening? I would. But unfortunately I do not have a way of doing that. So I must continue on my path to self destruction. However that may turn about, I will have to accept it and forget about it. It w...

Oh Life!

Life feels so hard at times. I don’t even know where to begin most days. I do know life won’t always be this difficult. I mean it has to be something, doesn’t it? Life can’t be like this forever, at least I don’t think it can be. Life can be a mystery at times, that’s for sure. So we live and continue living until the day comes where we can’t anymore. Talk about a nightmare from Hell. But that is life.