King Foo

King Foo

You are in:

Home > Blog

Blog

  1. Migrate from svn to git

    Posted by
    / / Leave a comment
    Git is becoming more popular in favor of svn, as everyone knows. In this post, we’ll show you how to easily migrate from svn to git. Make sure (on ubuntu for example) that you have the git-svn package installed. It should be available from your default repositories. 1. Get all...
  2. Happy to sponsor PHPBenelux Conference

    Posted by
    / / Leave a comment
    We are very proud to be a Gold sponsor for the PHPBenelux Conference 2013. Our team will be at the conference so if you want to discuss our services, our PHP training and the technology we use or just want to have a chat about PHP and the stuff we...
  3. PHP Training now available!

    Posted by
    / / Leave a comment
    We just launched our new training programme, offering PHP-related training aimed at the PHP community in Belgium (and beyond of course ). Have a look at the scheduled courses for the next few months. We organize them in Aarschot (Belgium) and Ghent (Belgium). The dates are updated as listed here:...
  4. PHP 5.4 – What’s new?

    Posted by
    / / 16 Comments
    PHP 5.4 will be stable soon. In this post I’ll try to give you an overview and examples of the new PHP 5.4 features. If you want to try out PHP 5.4 (which is currently in RC6), it has to be installed first. I suggest that you try this out...
  5. Creating Debian/Ubuntu .deb packages

    Posted by
    / / Leave a comment
    In this post, I will show you how to create a .deb package from some binary files. Step 1: Create the directories Create a directory for your package. Also, create a directory DEBIAN. Step 2: Copy files into your package You can copy the files into your package with the...
  6. Using Complex Type with Zend_Soap

    Posted by
    / / 4 Comments
    To be able to use complex types with Soap requests, they need to be fully defined in the WSDL file. Zend_Soap can automate this process, if you know how to define those complex types. Let us start without it Zend_Soap’s magic and compare it with a fully discovered complex request...
  7. Adding a Google +1 button to your website

    Posted by
    / / Leave a comment
    Google released its new API for Google+, here’s the code. If you want to use the standard button, put this anywhere in your html code to show the +1 button: For more examples and features, look at the Google+ Developer page.
  8. Introduction to Sass

    Posted by
    / / Leave a comment
    Sass, or Syntactically Awesome Style Sheets, promises us to rid us from annoyances over CSS. And it delivers! Over the passed few months I have noticed an increasing interest for Sass and other CSS alternatives, especially in the developer community. Ofcourse this peaked my interest too, and I started playing...