Archive for the ‘PHP’ Category
Thursday, December 10th, 2009
This year, David Coallier and my self were invited to attend the annual Microsoft Web Developers Summit, or WDS for short. For David this was his first time there but for me it was a 3rd year running, and as ever I was excited like a kid in a candy shop.
What is WDS? In short, it’s a summit where Microsoft invites a selective few (roughly 25 people) from the PHP community, during which they basically ask the attendees questions, show case a few new features to get feedback on and utilize the time to help figure out how Microsoft can better serve the PHP community at large. These people tend to be various leaders of either community sites or big open source projects and will thus have a lot of insight into how people use their software on Microsoft platforms and the problems they have. (more…)
Tags: Azure, IIS, Instsaller, Microsoft, PHP, Platform, Redmond, WDS, WebPI, Windows
Posted in Micrsoft, PHP, echolibre, industry | 4 Comments »
Thursday, December 10th, 2009
Helgi, our lead on R&D has just been published on this years PHP Advent. In this article he looks at how web designers and developers currently interact, and offers some ways to improve the web design and development process.
The full post can be found here.
Posted in Open Source, PHP, echolibre, industry | No Comments »
Friday, October 30th, 2009
Last week our very own Helgi was at ZendCon in San José, California. He was there as a speaker to talk about Frontend Caching and “PEAR2 and Pyrus”
The first talk I gave was about frontend caching and how you can get the most speed out of your website by optimizing the various bits of the frontend.
Make sure to catch “The aftermath” on Helgi’s blog as you may get a better idea of what we do in conferences and what happens in general!
Tags: conferences, frontend caching, PEAR, performance, PHP, zendcon
Posted in PEAR, PHP, echolibre, industry | 1 Comment »
Monday, October 12th, 2009
On Friday evening we quietly announced on twitter a product that we’ve been working on for the last 10 months. FRAPI is an Open Source API framework that allows you to open up your existing web based application or legacy system to your own or third party developers.
FRAPI handles standard API things like authentication and data formatting, and speeds up the API development process — like the way ZF or Symfony for PHP, Django for Python, JQuery for JavaScript (or, I suppose even Ruby on Rails ;-p ), does for other technologies.
David Coallier put together a quick 5 minute screencast to show you how you can use FRAPI to start building your API. (more…)
Tags: echolibre, javascript, PHP, web3.0
Posted in API, Open Source, PHP, Zend Framework, echolibre, innovation, jquery, python, web3.0 | 13 Comments »
Friday, August 28th, 2009
Anyone who follows me on twitter might have seen a tweet from me last week asking for suggestions on available office space in Dublin. I got a great response from Dublin Twitterers (thanks guys!) and was able to line up viewings over the following days. I’m delighted to say that we found a new place, and given its location and layout, we jumped on it pretty quickly. (more…)
Posted in PHP, echolibre | No Comments »
Thursday, July 30th, 2009
The last couple of months have been extremely busy for me, to a point where I have not been blogging or participating in open source project nor the local user group to the level I’d like, but it has been the good kind of busy, where you feel exhausted but very satisfied with one self.
What has been keeping me busy? I have presented at 3 conferences (PHP Tek, DPC and OSCON), took a week vacation in Iceland with Chris Shiflett and Andrei Z, moved to a new house, work on a very fun but stressful project among other interesting things that have happened.
A rough calculation told me that since mid May, around the time of PHP Tek, I have been away from my home a total of 38 days, almost 50%, not bad at all!
To touch base quickly on each of the conferences I spoke at: (more…)
Tags: caching, confrence, dpc, oscon, performance, PHP, phptek, zendcon
Posted in Open Source, PHP, echolibre, performance | No Comments »
Thursday, July 16th, 2009
[UPDATE] - a sincere thanks to all those who re-tweeted and responded to our call for developers. We’ve gotten a great response in the last two weeks and we’re working them. We’ll be in touch with everyone who contacted us in the coming days.
So, it’s been a while since our last post. We’ve been busy working with some very smart and talented Irish entrepreneurs on start up ideas, and the last few months have been a blast. We’ve got lots in store over the next six months and we’ve started to scale up our team.
Behind the scenes our team has grown to six, soon to be seven. Continuing on with this growth, we’re looking for two new team members: a PHP developer, and a Business developer. (more…)
Tags: business, echolibre, echolibre UK, industry, PHP, PHP London, startups
Posted in PHP, echolibre, industry | No Comments »
Monday, June 8th, 2009
Introduction
A few weeks ago, Helgi and I attended PHP|Tek 2009 in Chicago, as both representatives of echolibre and The PEAR Group.
This post will briefly discuss the formation of a Recommended PHP Standards Group, as put forward by a meeting of PHP developers at the conference. As would be expected, a bit of controversy surrounds this proposal, but my hope would be that it would be accepted and grow within the global PHP community in the coming years.
As posted by Travis Swicegood, a group of community project representatives came together to discuss naming standards for PHP 5.3 and above. (I would like to take the opportunity to publicly thank the staff of the PHP|Tek conference for providing us with a large meeting room with little more than 2 hours notice).
Tags: industry, innovation, PEAR, PHP
Posted in Open Source, PEAR, PHP, industry, innovation | 11 Comments »
Monday, April 6th, 2009
According to wikipedia, the Dragon’s Den is:
a venture-capitalist television programme that originated in Japan where the format is owned by Sony. The format, which now airs internationally, consists of entrepreneurs pitching their ideas in order to secure investment finance from business experts — the “Dragons”.
As some may already know, in 2009 the television show began in Ireland on RTÉ ONE. This post covers the technical considerations encountered when a web site / application appears on national television. (more…)
Tags: apache, APC, echolibre, Helgi, mysql, Open Source, performance, PHP, ubuntu
Posted in APC, PHP, echolibre, industry, performance | 7 Comments »
Monday, March 9th, 2009
I wanted to write a post that shows a few different ways to customise Zend Frameworks routing when you’re using their MVC implementation. Most of this is covered in the documentation, but it can be a little difficult to dig out.
The standard routing setup of Zend matches URLs like these:
1
2
| www.example.com/module/controller/action/var1/value1/var2/value2
www.example.com/controller/action/var1/value1/var2/value2 |
You set your controller directories in your bootstrap with something like:
1
2
| $front = Zend_Controller_Front::getInstance();
$front->setControllerDirectory(array('default'=>'../controllers', 'bar'=>'../modules/bar', 'foo'=>'../modules/foo')); |
For the first component of the path Zend will first look for a matching module, if none is found it will look for a matching controller. The module name ‘default’ is important here; it represents (surprisingly) the default controllers. So these are the ones when there’s no matching module in the URL.
(more…)
Tags: PHP, Zend Framework
Posted in PHP, Zend Framework | 1 Comment »