Skip to main content

Posts

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.
Recent posts

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...

Time Travel

Frank Looking around, I don’t recognize where I am. The last thing I remember is going to bed in my home. Now I’m laying in an open field in my pjs. Sitting up, I see the field is filled with snow. It is indeed cold out and I’m freezing. I stand up and look to the sky. “Why won’t you leave me alone?!” I shout to the sky. I’m mad at whoever is doing this to me. Be it God or one of his angels, I do not know. There has to be a reason for it all. I don’t know what that reason is. What I do know is I’m cold and wet from the snow, best find someplace to dry off. I pick a direction and walk for a while. Eventually I come across a cabin. It’s a standard log cabin with four sides and a roof. Nothing out of the ordinary. I rap on the door with my fist. There’s no answer. Trying the doorknob I find it unlocked, so I enter. There’s a fireplace and a small bed in the corner. I start a fire. It heats the place quite nicely. Taking off my socks, I let them dry out next to the fire. Grabbing a b...