The Secret to Problem Solving

Eureka! I just finished figuring out a perplexing problem with the current project that I am working on. In this case it happens to be state caching in the Ionic app I am building. This is my first phone app and I am actually feeling pretty accomplished. In a little over a week I have a Read More…

Work in Progress

I am in the process of revamping my website. In the process I will be making my blog posts visible. I still need to figure out the best way to display my code snippets, so for now they look pretty terrible.

PHP debugging

For debugging PHP this function is your friend. It will output whatever you have in the () to the browser and then stop the script. print_r($form_data); exit();

Firefox absolute positioning

Firefox absolute positioning doesn’t work in table cells. you have to change display:table-cells to display:block. Of course then you have to change your css to get it to look like you want it to again.