autoSuggest
3 comments

MooTools 2 Auto-Suggest

Auto Suggest for MooTools is now on SourceForge! Project tracking, feature requests, bug tracking, etc. can all be seen on the project's homepage: https://sourceforge.net/projects/autosuggestform/


This autoSuggest is built from the ground-up to provide the ability to include key-value pairs for auto-suggest values. How is this useful?
  • To allow users to enter an item into a form in the familiar format but have the form submit the system value; (like an editable select element)
  • To allow users to see only a contextually-relevant subset of the valid values for a form element
  • To remind users of previously-entered values
  • To avoid submitting long, repetitive select lists to forms- resulting in faster page loads
  • and much more!
...

Expense Calculator
0 comments
Here's a nifty little tool that you can use to help calculate your expenses:
PaycheckCalculatorBeta

This tool will allow you to enter your expenses and compare these expenses to the paychecks you receive. It is useful in numerous cases, especially for trying to track down where all of your money went every month :) and evaluating possible salary offers ("is this salary really enough?").
If you like it, let the world know below!

Getter / Setter Method Generator
3 comments
Object-oriented languages are great, aren't they? It does get tiring, though, writing all of those method stubs for the getter / setter methods for object member variables. In keeping with Larry Wall's 1st virtue of a programmer, I've created the Getter & Setter Generator. You can simply enter a white-space delineated list of member variable names and the tool will generate the method stubs for the getter and setter methods for these items. At present, only PHP is supported but additional languages will be added as I find a need to add additional languages.

...and for the uninitiated, Larry Wall's 3 virtues of a programmer should be memorized...

Hash Generator
0 comments
Have you ever needed to compute the hash of a string? Perhaps you were looking for a good random sequence of characters to generate a password? This tool is here to help! With the Hash Generator you can take advantage of PHP's built-in hashing functionality. As you type characters into the text box, the hash of this string using numerous algorithms is returned and displayed below.
Thoughts? Comments? Suggestions? Leave a comment below!

PHP Object Relational Mapping
0 comments
PHP ORM consists of two components which work together to streamline the database connection portion of your web site development. PHP ORM relies on PDO and a collection of classes which encapsulate and simplify tedious database connection details such as logon credentials, query result set handling, error handling, and object-relational mapping. The components of PHP ORM (database connections & object-relational mapping) were designed to be used together but it is also possible and very easy to utilize the database connection portion alone.

Details about this framework can be viewed at: http://phporm.thewittyrejoinder.com/
Current Status: Early Beta (0.0.1)
...