Justin Martin FrozenFire also known as FoxNSox
Hi there, my name is Justin Martin. My online handles are usually FrozenFire or FoxNSox. I am a programmer, web designer, and all around geek ;). This is my personal website, and where I will display my work.
My primary skills lie in PHP, and Linux application development. As I said, I also dabble in web design. I've done design and development work for both small-time and prominent figures.
I'm developing a few tools which may be of use to you:

Cookie IRC Bot

Cookie is a modular IRC bot written in PHP. Cookie is based from the IRC Bot framework called IQ. Cookie has succeeded IQ greatly. With the addition of MySQL capabilities, SSH tunnelling, and more, Cookie is in my opinion, one of the best PHP IRC Bots I have seen (perhaps with a bit of vanity).

Cookie provides the following innovative features:
  • Modular
  • Event binding
  • Linux Process Controls
  • MySQL logging
  • SSH Tunnelling
  • IRSSI-themed interface
  • Realtime rehashing
SVN: here

PHP Serial Modem Answering Machine

The aim of this project is to provide an easily programmable answering machine for a AT Hayes compatible serial modem under Linux. Principally, this project will aim to replace Vgetty and Mgetty+sendfax, as far as implementing an answering machine goes.
This project is implemented in PHP, aiming at a CLI interface, however I expect a web interface will be provided once the main codebase is done.
SVN: here

Prime Number Calculator

Written as an un-entered entry for the prime number calculator competition on CriticalSecurity.net. This script generates 'primal_bound' number of primes, excluding 1 and 2.
Code: here

PDO MySQL Class

This is a basic class definition for a handler to manage MySQL queries using the parameterized PDO functionality of PHP.
Code: here

PDO MySQL to XML Exporter

Written as an entry for the MySQL to XML exporter competition on CriticalSecurity.net, this function takes a parameterized PDO query, and outputs the results in XML format. The trick to this one was code succinctity.
Code: here

MySQL Sessions Storage

I wrote this just to see if it would work as expected. It's basically a static class for storing session data in a MySQL database. The essential reasoning for this, is that you could better manage user logins. For instance, if a user was logged in, and you banned them, but in order for that ban to propagate you had to delete their session, you could simply delete their session data from the database, and they would be effectively logged out.
Code: here
Requires PDO Abstraction Layer: here

Image to HTML converter

A twofer this time. This class/script takes an image, in this case restricted to a jpeg, and outputs coloured text which sort of looks like the original image. Moreso for shits and giggles than anything.
Class Code: here
Script Code: here

Credit Card Validation

A simple little script for validating credit card numbers using the Luhn algorithm. This could be used on other types of cards that employ the same card creation method.
Code: here

Zip & Postal Code Database

Not really a project, but something I'm sure people would be interested in. I have converted a database of Zip Code and Postal Codes, as well as Province and State codes, and Country codes into a MySQL database. This is very useful for those who want to validate Zip or Postal codes, or locate cities based on Zip or Postal codes.
Tarball: here