Equel Technologies

                                                                    Developing The Future

Cocoa ScreenCast: Creating a plugin for Cocoa Applications

June 11th, 2009. Published under Cocoa, Cocoa, Objective-C, Video Tutorials. No Comments.

This screencast demonstrantes how to create a Cocoa application with plugin support and writing the plugin itself.
The XCode project files can be downloaded here

iPhone Screencast: Creating a UITabBarControler application

June 3rd, 2009. Published under Cocoa, Objective-C, Video Tutorials, iPhone. No Comments.

This screencast demonstrantes how to create a simple iPhone/iPod app using a tab bar controller and 2 view controllers.
The XCode project files can be downloaded here

Cocoa ScreenCast: Localization in Cocoa

April 1st, 2009. Published under Cocoa, Cocoa, Objective-C, Video Tutorials. No Comments.

This screencast demonstrantes how to add localization to a simple Cocoa app.
The XCode project files can be downloaded here

Factory Pattern in PHP

April 1st, 2009. Published under PHP. No Comments.

Factroy Pattern in PHP

Factory pattern, allows you to create a centric place in your classes where you could craete a new instance that depends on one or more classes.
In this example we’ll take a look at a parser in PHP

(more…)

Singleton Pattern in PHP

March 31st, 2009. Published under PHP. No Comments.

Singleton Pattern in PHP

PHP classes allows you to define the attributes (instance or class variables) and methods that manipulate with the attributes.
Every instance of a class shares a separate copy of attributes

(more…)

PHP Serialization method

February 25th, 2009. Published under PHP. No Comments.

PHP allows us to serialize objects, arrays, etc… with the serialize() function.
What means serialization? Serialization means a storable reprezentation of a value, where the value can be an array, object, etc…
How it works:
Suppose you have this array:
[cc lang="php"]

(more…)