Skip to content

Instantly share code, notes, and snippets.

@leocavalcante
leocavalcante / Brazilis.php
Last active December 17, 2015 21:18
Brazilian states
<?php
class Brazilis {
private $states = array(
array('slug' => 'acre', 'name' => 'Acre', 'abbr' => 'AC'),
array('slug' => 'alagoas', 'name' => 'Alagoas', 'abbr' => 'AL'),
array('slug' => 'amapa', 'name' => 'Amapá', 'abbr' => 'AP'),
array('slug' => 'amazonas', 'name' => 'Amazonas', 'abbr' => 'AM'),
array('slug' => 'bahia', 'name' => 'Bahia', 'abbr' => 'BA'),
@leocavalcante
leocavalcante / api_request_example.php
Last active December 21, 2015 08:59
Exemplo API Leadsolution
<?php
$postdata = http_build_query(
array(
// Nós fornecemos o source que vai identificar o fornecedor, a campanha e o meio
'source' => 'AABBCCC',
// Dados do Lead
'name' => 'Nome Completo',
'email' => '[email protected]',
@leocavalcante
leocavalcante / gist:6390980
Last active December 22, 2015 00:39
REST API Architecture Thought

/resources will handle all itens in collection. /resources/id will handle a specific resource in collection.

How could I have a middle term?

What would be a good approach to handle more than one specific resource in an idempotent operation?

/resources/12,13,14? /resources/12+13+14? /resources/12&amp;13&amp;14?

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="www.intergrall.com.br/site"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:IncluirRegistroCallback>
<Nome xsi:type="xsd:string">NOME</Nome>
<?php
class Html {
public function renderSelect($name, $options) {
//
}
public function renderCampaignsSelect() {
return $this->renderSelect('campaign_id', $repository->listsCampaigns());
}
@leocavalcante
leocavalcante / gist:7075461
Created October 20, 2013 21:17
OOAD (Object-oriented analysis and design)
Taking the Table and Chair example: not all the chairs fits all the tables, but when I create a new chair, I should try associate it with a table. The association is made by two properties of chair, the width and height, for example, so each table accepts a certain value of chairs width and height. Tables can have zero or more chairs and a chair can have zero or one table. How is the best way to write the process of finding tables for chairs?
A method "findTable" in the Chair class?
A method "receiveChair" in a class that handles the list of Tables?
A class "TableFinder" with a method that receives a Chair and does the work?
Where is the best way to put that code? The code that will lookup for a Table using a Chair's properties and sets the Table of this Chair?
@leocavalcante
leocavalcante / README.md
Last active August 29, 2015 13:56
PhoneGap and input sizes
  • Checkbox not a 44px square;
  • Number input not 100% large, there is some extra space;
  • Select not 44px tall;

Result

<?php
$imagem = $_FILES['imagem'];
$logradouro = $_REQUEST['logradouro'];
$preco = $_REQUEST['preco'];
$modo = $_REQUEST['modo'];
$excluir = $_REQUEST['excluir'];
if($modo == "cadastro"){
<?php
interface Support {}
class TechnicalSupport implements Support {}
class FinancialSupport implements Support {}
class AdministrativeSupport implements Support {}
@leocavalcante
leocavalcante / BadWord.php
Created June 20, 2014 19:17
É basicamente um filtro de palavrões e palavras proibidas que incrementa um contador na palavra quando ela é encontrada.
<?php
namespace Models;
class BadWord {
public function __construct(\Models\Adapters\BadWordAdapter $adapter) {
$this->adapter = $adapter;
}