Projects

Introduction

The projects page is simply an avenue for me to share some libraries/code that I have developed over the years for general consumption. Abandoned and archived projects are no longer actively maintained.

LGPL
Unless otherwise stated, most code released here are done under the LGPL license. You are free to do whatever you like with the software as long as it is allowed by the license.

I can only provide limited support to your queries if you find any problems. Do comment on this page or email me for any kind of support requests.

C/C++ or C# Projects

[C++] Wave File Discrete Fourier Transform

A console application written for a project. It basically takes a wave sound file and performs Discrete Fourier Transform on it. More info >>

[C++] Linked List Library

Written for an assignment, this is a simply library that implements a linked list using Generic programming. Requires Visual Studio 2010 to open the solution. Download >>

Web Related Projects

[PHP] Nonce Library

This is a library for you to implement a “nonce” solution for your applications. It uses the PHP PDO object for database connectivity. So, as long as your database of choice is supported by PDO, you can use it. The code was never tested nor used in any production environment before! Use at your own risk!
[Source Code] [Documentation]

[PHP] Plottable Thumbnail Library

Plottable Thumbnail Library is an intelligent and lightweight library for you to generate thumbnails on the fly using a mix of methods for thumbnail size computation. No longer in development.
[PHP Classes Page] [Download] [Documentation]

[PHP] BBCode Parser

BBCode parser parses BBCode and returns them in HTML for you to use. Completely customisable to add new tags. Not recommended for use as it uses regular expression for parsing – not the most efficient method! Look for one that uses tokens.
[Source Code] [Documentation]

[PHP] ezMySQL

A wrapper class to access and query MySQL database. I would recommend you use PDO instead though.

[JavaScript] ContentBox

A simple script to parse the page for header HTML entities and create a table of contents

[PHP] HTML Encode

[PHP] Plottable Tagboard System

[PHP] Plottable Online System

Permanent link to this article: http://new.acperience.net/projects/

1

[C++] Wave File Discrete Fourier Transform

Introduction This is a console application written for my first year computing project. It takes a Wave (.wav) sound file, parse it and then you have the option of performing Discrete Fourier Transform on the data using Matlab. You can also use Matlab to plot a graph for visualisation. Requirements This application uses a COM …

View page »