Skip to content

Instantly share code, notes, and snippets.

View alyssontkd's full-sized avatar
🏅
Focusing

Alysson Vicuña alyssontkd

🏅
Focusing
View GitHub Profile
@alyssontkd
alyssontkd / git.md
Created July 19, 2018 11:30 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

#GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

@alyssontkd
alyssontkd / example.php
Created May 7, 2018 00:05 — forked from ralphschindler/example.php
Zend\Db\Sql\Select example usage
<?php
use Zend\Db\Sql\Select;
// basic table
$select0 = new Select;
$select0->from('foo');
// 'SELECT "foo".* FROM "foo"';