Category Archives: Uncategorized

Mantis Bug Tracking Software Review

Lately I have been playing around with a few different bug tracking programs, on of which is Mantis. Bugzilla is the biggest player in the bug tracking arena, but Mantis has its own niche. Install After an hour of messing … Continue reading

Posted in Uncategorized | Leave a comment

Viewing Google Cache Pages (cache: term)

There are many reasons why webmasters may want to see what version of their page Google is storing. It can indicate when the page was last crawled, errors in crawling, and can allow you to view content that has recently … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

PHP Output Buffering (with HTML)

Over the past year I have made heavy use of PHP output buffering. Although it serves no function purpose, it can make for much more readable code; I have found it particlarly useful for outputting HTML from methods. Consider the … Continue reading

Posted in Html, PHP, Uncategorized | Tagged , , , , | Leave a comment

Wordwrap in Netbeans

To enable the wordwrap functionality in Netbeans IDE.  Go to Tools >> Options and then click the Editor then Formatting tab.  On the “Line Wrap” drop down click “After Words.” Wordwrap is now enabled.

Posted in Uncategorized | Tagged , | 2 Comments

How to Turn a Doctrine_Collection of Objects into a PHP Array

Hint: toArray() is probably not what you’re looking for. ->toArray() Most programmers would probably assume that calling toArray() on the collection would simply place all the objects into an array. While toArray() does do that, it also converts the objects … Continue reading

Posted in Uncategorized | 1 Comment

Use fputcsv to Make CSV Output to Browser or Variable

PHP has plenty of handy helper functions to take advantage of, but once in a while there seems to be obvious functionality missing. For example, fputcsv is a handy function that allows you to create a CSV file from an … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Symfony Doctrine “where in” and “where not in” Syntax

When you’re utilizing Doctrine to search a database for a value not present in a given set, it might be tempting to use some sloppy code like the following: While code like this can work, it’s difficult to read and … Continue reading

Posted in Uncategorized | 1 Comment

o3EnlargeBox 1.1.1 Released

A bugfix for version 1.1 of o3EnlargeBox was just released. Some fixes include: tackled a problem with webkit where the image dimensions are reported at 0×0 (must actually be handled by the calling script, see http://www.ozonesolutions.com/demos/enlargeBox/go.js) enlarge box will no … Continue reading

Posted in Uncategorized | Leave a comment

Driver for TRUlink Model #29578 Wireless Video (No Audio)

Cables to Go makes a nice Wireless Video adapter. However, the drivers for it can be difficult to find online because they are not available by the usb adapter model. Instead they are listed by the “kit” model number, since … Continue reading

Posted in Uncategorized | 3 Comments

JQuery and Ajax Forms Plugin

Writing JavaScript to handle ajax form submission can be a pain. Not only is it a lot of coding, but it often means you have to write forms using different html than you would use for a normal form. This … Continue reading

Posted in JavaScript, jQuery, Plugin, Uncategorized | Tagged , , , | Leave a comment