Skip to content

Instantly share code, notes, and snippets.

View casimiroarruda's full-sized avatar
🖊️
Keep Writing

Anderson Casimiro casimiroarruda

🖊️
Keep Writing
View GitHub Profile
@casimiroarruda
casimiroarruda / build.xml
Created September 9, 2012 03:01
Buildfile básico
<?xml version="1.0"?>
<project name="myChuckProject" basedir="." default="helloworld">
<target name="helloworld">
<echo msg="Hello Phing!"/>
</target>
</project>
@casimiroarruda
casimiroarruda / build.xml
Created February 28, 2012 01:59
Arquivo de configuração para o phing
<?xml version="1.0" encoding="UTF-8"?>
<project name="TheProject" default="build" basedir=".">
<!-- Altere estas propriedades adequando-as ao seu projeto -->
<property name="application.library" value="${project.basedir}/library"/>
<property name="application.tests" value="${project.basedir}/tests"/>
<property name="application.builddir" value="${project.basedir}/build"/>
<target name="build"
@casimiroarruda
casimiroarruda / HtmlHandler.php
Created February 12, 2012 17:20 — forked from thiagophx/HtmlHandler.php
ViewHandler
<?php
namespace MyApp;
class HtmlHandler implements ViewHandler
{
public function __invoke(Response $response)
{
foreach ($response->getHeaders() as $header)
header($header);
@casimiroarruda
casimiroarruda / HtmlHandler.php
Created February 12, 2012 17:19 — forked from thiagophx/HtmlHandler.php
ViewHandler
<?php
namespace MyApp;
class HtmlHandler implements ViewHandler
{
public function __invoke(Response $response)
{
foreach ($response->getHeaders() as $header)
header($header);
<?php echo <<<VIRUS
Os dados do seu HD estão sendo apagados<br/><hr/>
Para evitar que este vírus destrua seus dados, clique com o botão direito do mouse no seu drive C:\ e clique em formatar. Isso reverterá o processo
VIRUS;