Home

Welcome to my personal wiki. I have setup this wiki to support my personal projects and open-source activities.

Projects
http://fedecarg.com/projects

Blog
http://blog.fedecarg.com

Repository
http://svn.fedecarg.com

Bookmarks
http://delicious.com/fedecarg

Codepad
http://fedecarg.codepad.org/

Social

LinkedIn
http://www.linkedin.com/in/fedecarg

Twitter
http://www.twitter.com/fedecarg

Latest projects

  • Zf ReplicationAdapter (10/02/2009 08:57 PM)

    Database replication is an option that allows the content of one database to be replicated to another database or databases, providing a mechanism to scale out the database. Scaling out the database allows more activities to be processed and more users to access the database by running multiple copies of the databases on different machines. The Zf_Db_ReplicationAdapter component supports the most commonly used replication scenarios: Single-Master and Multi-Master Replication (Documentation) (Source Code)

  • Zf DataMapper (09/27/2009 08:12 PM)

    DAOs are used to abstract and encapsulate all access to the data source. The DAO implements the access mechanism required to work with the data source and manages the connection with the data source to obtain and store data. This component implements the DataMapper pattern and allows developers to transfer data between two schemas while keeping them independent of each other. (Documentation) (Source Code)

  • Zf Domain (08/02/2009 03:19 PM)

    This component is an implementation of the Repository pattern and allows developers to encapsulate domain logic from persistence. Domain-driven design (DDD) is a different way of thinking about how to organize your applications and structure your code. This way of thinking complements very well the popular MVC architecture. (Documentation) (Source Code)

  • sync-files.sh (07/26/2009 12:08 PM)

    sync-files is a tool for logging into a number of remote machines, executing commands and copying files. It can be used to deploy an application to multiple servers with a single command line. (Documentation) (Source Code)

  • Zf Dependency Injector (07/26/2009 10:50 AM)

    Zend_Di is a dependency injector component. It minimizes coupling between groups of classes, makes unit testing much simpler, and provides an easy way to re-configure a package to use custom implementations of components. (Documentation) (Source Code)