Skip to content

Instantly share code, notes, and snippets.

View atannus's full-sized avatar

André Tannús atannus

  • Epungo
  • São Paulo - Brasil
View GitHub Profile
@atannus
atannus / sprintf-mem-hungry-strings.php
Last active December 19, 2015 09:49
Which means generating a string as per make_word takes more memory than it should.
<?php
/**
*
* When using sprintf and mt_rand to generate a random hex-like string, the
* output seems to take more memory than it should.
*
* Changing the output to a string via a (string) cast or by any other mean,
* such as concatenating a string to it seems to fix the memory usage.
*
@atannus
atannus / README.md
Last active August 29, 2015 14:26
Remarketing AdWords

Remarketring AdWords

Exemplo de como implantar Remarketing para AdWords.

ATENÇÃO:

Não copie-e-cole este código, use-o apenas como referência. Obtenha seu código diretamente da sua conta no AdWords. Basta configurar uma campanha de Remarketing e o sistema gerará um código específico para você. Se insistir em copiar daqui, façao sob sua responsabilidade, e não esqueça de alterar o CONVERSION_ID nos dois lugares onde ele aparece.

Como implantar

Este exemplo é concebido exclusivamente para o mercado imobiliário.

// a.js
//goog.provide('myapp.A');
myapp.A = function() {}
myapp.A.prototype.move = function() {
console.log('moveA');
}
// b.js
//goog.provide('myapp.B');
//goog.require('myapp.A');