Skip to main content

Polyphonic Spreeing

Follow the Day... by ~Nicc593 My friend Alex recently got me into the band Polyphonic Spree. If I’d have to call it anything it’s kind of a mix between the Beatles and symphonic rock (though I stole the symphonic rock part from Wikipedia). They have traits so similar to the Beatles that Pandora ends up suggesting a bunch of Beatles songs on the Polyphonic Spree station. Seeing as how I don’t like the Beatles, I thumbs down and skip those songs.

I really got into them because Alex said they had some really upbeat music that just makes you happy. I’d definitely have to agree. I’ve loved driving down the road to Light & Day blaring at top notch. Truly, I’ve read the lyrics and still don’t really understand the song, but it talks about focusing on the day and reaching toward the sun.

There are so many times that we look at the day wondering what can possibly befall us. We can just as easily think about the day and wonder what great thing we will make happen.

So, how did you bring light to the world today?

Peace,
+Tom

Comments

Alex D said…
There is, sadly, no "thumbs up" here, so I simply must say that Polyphonic Spree is amazing; particularly with the dreary weather going on currently (Spring time is rather bi-polar right now).

Popular posts from this blog

Portrait Innovations

I mentioned in a previous post that I surprised Erin with pictures from Portrait Innovations of Rachel, Colin and (a few) of myself.  This generated more comments than 99% of my posts receive (read that as I received one comment).  Because both Erin and I have gone separately and had great experiences with the company, I figured I would spend a post explaining how it works, what's different from Sears and a professional photographer, and why I like them. Great Shots Erin and I went to Sears a LOT when Rachel was born.  We went every month to track her growth.  So far Colin's on an every 3 months cycle (second kid, life sucks, get over it and quit whining to me about being "fair").  One of the things with Sears that kind of bugged me was the set positions.  You know, laying on the floor with head propped on arms, sitting on stool cross legged.  While I think having some set poses are a good idea, at both Sears we've used, it's too extreme....

Red-Gate SQL Compare

Every now and then I come across a program that becomes so ingrained in my daily work that I hardly know how I'd get by without it.  I'll probably break down a couple over the next few days, but for database work, I have never found anything as good as Red Gate's SQL Compare and SQL Data Compare .  Essentially these tools let you compare two SQL Server databases (all objects, users, permissions, functions, diagrams, anything) and update changes to whichever database you want.  This is amazingly useful for deploying database changes to a test or production environment (do it to production with ridiculous care, even though it will generate a SQL Script for you and run all updates in one transaction), and making sure everything is synchronized. For releases we can just generate the compare script, confirm that the changes match the updates we want to go out, and store it all in one place with the release details.  This is true for both the structure and the d...

Using an Array of Objects in C++

 I've been programming for years (over 35 at this point, which is crazy  to think about). My career right now is much more Software Architecture, and much less Software Developer, but I still get some time to write out GraphQL APIs in TypeScript, Vue 3 UIs, GitLab pipelines, and just generally making "big" decisions and helping make them a reality. It's nice every now and then to come across different articles and ideas that get me to remember life in college when I was using C++. Who would have thought C++ was the "hot new thing" right now (though I suppose it's more like Rust and Go, both great languages as well). One of the things I find frustrating with most technical posts is where they focus on the "how do I build an app" and not so much on "how do I do this one slightly useful thing". I figured I'd throw one together what was front of mind, using user attributes for permissions (i.e., Attribute Based Access Control - ABAC) ...