Pages

Wednesday, January 29, 2014

Fat Zebra


Fat Zebra was built as a simple way for merchants to accept credit card payments online while still maintaining a strong focus on security, reliability and great user experience.
Our online payment gateway provides you with all the features and benefits you deserve with no hidden fees or charges to ensure you have all the right tools to trade online.

Wednesday, January 15, 2014

Update to Windows 8.1 from Windows 8


Windows 8.1 and Windows RT 8.1 build on Windows 8 and Windows RT, to bring you enhancements in personalization, search, apps, the Windows Store, and cloud connectivity, and has the security and reliability features you expect from Windows. It's fast and made to work on a variety of devices—especially on the new generation of touch devices.

Thursday, December 12, 2013

Masked input plugin for the jQuery

This is a masked input plugin for the jQuery javascript library. It allows a user to more easily enter fixed width input where you would like them to enter the data in a certain format (dates,phone numbers, etc). It has been tested on Internet Explorer, Firefox, Safari, Opera, and Chrome. A mask is defined by a format made up of mask literals and mask definitions. Any character not in the definitions list below is considered a mask literal. Mask literals will be automatically entered for the user as they type and will not be able to be removed by the user.The following mask definitions are predefined:
a - Represents an alpha character (A-Z,a-z)
9 - Represents a numeric character (0-9)
* - Represents an alphanumeric character (A-Z,a-z,0-9)

Saturday, September 28, 2013

10 Difference between PHP4 and PHP5

PHP5 is a lot different than PHP4. With the vastly improved Object Oriented model in PHP5, PHP is now a lot closer to a fully fledged object orientated programming language and looks more like ASP.NET now. Here are 10 major differences between PHP4 and PHP5 that you need to know:

Thursday, September 12, 2013

Using jQuery validate plugin with CKEditor


Just a quick post (mostly for my own reference!) on using the jQuery validate plugin to check that a CKEditor instance has content. The problem is that CKEditor replaces the HTML textarea tag with a WYSIWYG editor, the jQuery validate plugin validates against the textarea, not the contents of the WYSIWYG editor.