I’ve been making a push to have more of my projects multi-lingual. However, one thing I kept forgetting about was those super-rare error messages that have to come from the Controller. For the most part, all of your errors should be handled by your validators in your forms. However, from time to time, there needs to be an error handled in your controller. (more…)
All entries of my technical and business blog.
Site profile: thebetterbachelor.com
Goal: to create a bachelor cookbook and sell it to other bachelors online. The price of the cookbook was to be very cheap so that it wasn’t too much of a risk. The book itself was supposed to be picture rich and very verbose. It showed how to accomplish tasks that other books assumed a person knew. (more…)
Filtering and Validating Discussion
I came up with a great topic to write this blog entry about: filters and validators. Then, I got to thinking - maybe I can get more feedback from other programmers I know. I decided to send a note out to a few of my buddies and see what they thought as well. (more…)
Service profile: mketweeps
Goal: I came up with an idea that I wanted to find local people in our area and mention them using a twitter bot. Pretty simple. Two requirements were they either had to use the word milwaukee in their profile or be from the milwaukee location, and they had to not have a blank profile. The tweet contained a shout out to their name and as much of their profile as could be fit in... (more…)
Site profile: jemdiary.com
JEMDiary was one of my longest running websites, from way early in the century. (more…)
Extend Zend_Mail to use Views
I love working in the Zend Framework view system. One thing that bothers me, however, is that I must create a complex set of models when trying to send email. I decided that I’d like to move all of this output for the mail class into my own view system as well. (more…)
Site Profile: honorarybrother.com
Goal: to create a site serving females that felt a specific male in their life deserved positive recognition. Then, to monetize the recipient from one of two targeted ads. (more…)
Site Profile: name-tag.me
Note: I have shut down name-tag.me. These notes were taken before I pulled the plug. (more…)
Site Profile: amazondiscount.me
The goal was to use links that Amazon provided themselves to showcase categories and percentage discounts with my affiliate tag. The thought was a clean interface would easily encourage people to click a discount of say 90% but send affiliate contributions my way. (more…)
Removing the extra elements on Zend_Form for Submit Button
Have you ever used Zend Form, created a submit button, and had a few extra tags that were just throwing you off? I know you have… You probably did it like me: $this->addElement('submit', 'submitbutton', array( 'ignore'=>true, 'label'=>'Submit This', )); (more…)