Skip to content

Instantly share code, notes, and snippets.

num = # 187.02000427246094;
puts num # 187.02000427246094
puts num.to_s # '187.02000427246094'
@mjacobus
mjacobus / Anuncio.md
Created August 10, 2015 19:47
Anuncio.md

Profissional pleno com conhecimento em desenvolvimento e análise de sistemas, com experiência em Oracle e PHP.

  • Desejável vivência no levantamento de requisitos junto ao cliente, especificação, codificação, testes e implementação de sistemas.
  • Conhecimento em Modelagem de Dados.
  • Desejável conhecimento em análise de Processos, WebServices, Java e Android.
  • Desejável vivência na área de Supply-Chain (compras, recebimento, estoque, vendas, fiscal, marketing, logística).

Pretensão salarial

A combinar

<?php
// vulnerável a sql injection
function DBInsert($tabela, array $data)
{
$insert = Koine\QueryBuilder::insert()
->into($tabela)->values($data);
return DBQuery($insert);
}
<?php
echo"\n", "start\n";
for ($i = 1; false; $i++) {
throw new \Exception('Not executed, ever');
}
echo "end\n";
<?php
// http://ocramius.github.io/blog/fluent-interfaces-are-evil/
$counter = new ImmutableCounter();
$counter->count();
$counter->count();
$counter->count();
$counter->count();
{
"name": "koine/delayed-cache",
"description": "Delayed cache for php",
"license": "MIT",
"authors": [
{
"name": "Marcelo Jacobus",
"email": "[email protected]"
}
],

The quiz

  • As an user I want to create quizzes
  • A quiz can be public or private
  • For every quiz I want to create items
  • A quiz item has
    • hint [optional]
    • question
  • answer

Career development

Short term

  • GGS Seniority
  • Learn a new language
    • Pick a language
    • Learn it building something useful with that
  • Learn metasploit
  • Inspect ggs apps
<?php
$query->set(array(
'coluna' => array('value' => 'coluna +1'),
));