I had this idea about doing interactive screen share and code review. I wrote it about it earlier and even asked for feedback. (more…)
All entries of my technical and business blog.
How to structure your controller, service and mapper method names
I was talking with one of the junior programmers on my team about naming method names. He was having problems coming up with ones that seemed to make sense to him and to the application. I broke it down how I think about it: (more…)
My StackOverflow Rant
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. (more…)
MySQL Explain rows column really IS an estimate
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... (more…)
Would You Find Value in a One on One Video Code Review Session?
Hello friends - I’m trying to get an idea if this would be a good idea. Let me know your thoughts in the comments. (more…)
Zend Framework 1 and jQuery Validate Plugin: how to create password/confirm easily in Zend_Form
Perhaps this trend is going away, but it used to be a “good thing” to make people validate their passwords. I did all kinds of silly things in Zend Framework Form and jQuery Validate plugin at first - but then I finally settled on a good solution. It’s quite simple actually… (more…)
PHPStorm Project Launchers for Ubuntu
PHPStorm has an option to install an icon for your Unity Dash on ubuntu - you can do this through the menu system. But, if you use this, it always opens to your last project. I have a number of projects running simultaneously, so this is no good. I could, of course, stop it from opening the last project, and just display the splash page menu. But I didn’t like that either. I wanted to... (more…)
Zend Framework 1 Form Captcha Idea
One of the worst things with CAPTCHAs are actually having to solve them. One of the things my team and I use for our projects is the hidden field CAPTCHA. This is a technique that adds a field to a form, but uses CSS to hide it. If that form value is filled in, we can guess that the submitter was a bot reading the HTML - and not an actual user. (more…)
Idea: Extra Analytics Information
When browsing the documentation for chrome, I came across this: (more…)
USB Chrome Debugging and Local subnet surfing on Android Emulator
Most of the development I do that needs to be tested on android is on a local subnet. Generally, this is because I am running the servers in virtual machines that mimic the production environment. When I want to test these websites via the android emulator, it would be nice to be able to surf to them locally (without putting them in a public QA environment) - as well as have the ability to use... (more…)