PHP Conference Brasil - 1º Dia

E assim o primeiro dia do PHP Conf passou, e muito foi discutido e apresentado. Alguns problemas de logística e outros de organização, mas mesmo somando-se estes a uma ou outra palestra que não atingiu a meta não tirou o brilho das palestras que se destacaram, e me surpreenderam muito inclusive.

Iniciei as palestras verificando a Palestra de “Como escrever extensões para PHP” Ministrada por Marcelo Araújo. Infelizmente o palestrante teve problemas com seu notebook e não pode apresentar os exemplos, com isso a palestra ficou um pouco teórica demais, sem grande aprofundamento.

Em seguida garanti cedo meu lugar para a palestra de Manuel Lemos, “Mapeando diagramas UML de casos de uso em classes PHP”. Por algum tempo já conheço o palestrante por email, e fiquei muito feliz em poder conhece-lo pessoalmente. Sua palestra rodeou o assunto de RUP, UML e Casos de uso, apresentando uma sólida receita que ele segue para desenvolver seus projetos. A palestra foi excelente, mesmo se esticando muito alem do tempo previsto, não consegui abandonar a sala antes de ouvir tudo.

A tarde mesclei a palestra de Design Patterns de Bruno Lustosa que também foi prejudicada por falta de exemplos com o final da palestra sobre PHPUnit de João Gilberto. Infelizmente não pude capturar todo conhecimento, pois peguei a mesma na metade.

Segui para uma palestra eu me intrigava, pois se intitulava “Trabalhando com AOP (Aspect Oriented Programming)”. Me surpreendi ao assistir o que depois me marcou como a melhor palestra do dia, sobre um assunto que não sabia absolutamente nada. Como esta palestra me chamou muito a atenção devo entrar em detalhes em outro post, parabéns o palestrante Guilherme Blanco.

Terminei o dia com uma palestra dobre APD e técnicas de otimização que me fez revistar alguns traumas do passado quando tive de enfrentar o aumento de carga do ComuniWEB. Mais uma vez João Gilberto apresentou uma ótima palestra muito interativa.

Após o evento aproveitei para conhecer melhor a equipe por trás do evento em uma galeteria, incluindo grandes nomes do PHP no Brasil, como Manuel Lemos e ainda o Derick Rethans do Core do PHP. Uma excelente oportunidade de me aprofundar na comunidade. Voltando ao hotel tive uma agradável conversa com alguns palestrantes do evento, Adler Medrado (DF), Pablo DallOglio (RS) e Igor Fegali (ES), conversa recheada de piadas e reflexões sobre vários aspectos da linguagem.

De quebra, após ver Gilberto Gil no aeroporto fomos surpreendidos por Jon “MadDog” Hall, diretor executivo do Linux International. É um fim de semana e tanto, vamos ver o que nos espera amanha com a palestra do Derick, dentre outras.

comments powered by Disqus

Related Posts

PHP Community: Of Leaders, conferences and Union

PHP Community: Of Leaders, conferences and Union

  • February 24, 2012

Note: This article was originally published on the march/2011 issue of php-architect .

Read More
AJAX e Acentos

AJAX e Acentos

  • July 31, 2006

Surfando pelos blogs procurando um novo tópico para postar acabei caindo no blog do Gustavo Paes em um artigo que falava sobre problemas de acentos no AJAX. Vou aproveitar então e refletir sobre este assunto também.

Read More
PHPT: Writing tests for PHP

PHPT: Writing tests for PHP

  • August 23, 2009

This year the PHP Community promoted the PHPTestFest in various places around the globe and it was a success. I participated in the event promoted by the PHPSP UG which ended up as the team with the most committed tests, after participating in the event I kept on going and have since obtained a SVN account and karma to be a official test commiter to PHP. So if you did not get the chance to learn how to write tests in your local TestFest I will now go over the steps taken so you can be ready for next year.

PHPT is a extremely simple test framework designed to test PHP. Its atomic nature and independent test execution make it perfect for the kind of tests needed, so tests can be really focused and test specific function and/or bugs.

What do I need to know?

The beauty about PHPT is that you need to know very little other than writing PHP code. A little knowledge into the inner workings of PHP will of course help you in finding areas of code that need testing, and how best to test them, but just knowing PHP is enough to start.

I have divided this post into 5 parts so we can get started:

  1. Preparing the Environment
  2. Choosing what to test
  3. Writing a test
  4. Executing a test
  5. Submitting a test to PHP

Read More