All entries of my technical and business blog

How to discover talent, not just skill

Sep 10, 2013 management programming

One of the newer programmers on my team asked me the other day why I hired him. I said “I saw you had a natural talent, and have potential.” We both kind of laughed because we knew his skill level at the time was very low. He was not that experienced. But, he had more questions about how I can detect talent and potential versus just someone who has really polished looking code.

Equal distance menu items

Sep 3, 2013 css

I’ve been having this challenge - I really want to have menu items in the CMS to be equally distributed - but I don’t want them to go over the edge of the page. It’s like, I want them to wrap. I’ve been doing some work with display: table-cell.

Idea: CMS agnostic cloud storage plugin

Aug 27, 2013 business ideas

So I’ve been looking into cloud storage a bit again - and I decided to do a bit of quick research on the top three CMS in my life: Drupal, Joomla, and Wordpress. I wanted to see if my idea made sense…

Slides from thatConference

Aug 15, 2013 misc-web
My talk at thatConference went great today. You can download them here. (Also, not sure why, but the second slide would just not download the image of my kayak…)

Idea: CodeReviewWith.Me

Aug 13, 2013 business ideas

I had this idea about doing interactive screen share and code review. I wrote it about it earlier and even asked for feedback.

My StackOverflow Rant

Jul 30, 2013 business

Ugh. I really want to contribute to the community. I do! If others before me wouldn’t have done it, I wouldn’t be where I am.

MySQL Explain rows column really IS an estimate

Jul 23, 2013 mysql

Here is an interesting proof of concept that the ‘rows’ column of the explain output is actually an estimate, and not the real amount. I KNEW it to be true, but somehow I didn’t feel like it was right. I always thought “the closer the rows # gets to the exact amount of retrieved data, the better. Exact is what you strive for.” Turns out, that’s not true. The closer the number, the better, but its still just an estimation. Sometimes its estimated accurately, other times its not. See this example: