Skip to content

Instantly share code, notes, and snippets.

View tashik's full-sized avatar

Nataly Andries tashik

View GitHub Profile
@tashik
tashik / example.php
Created May 31, 2016 14:29 — 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"';
@tashik
tashik / config.json
Last active August 29, 2015 14:06 — forked from anonymous/config.json
{
"vars": {
"@gray-darker": "lighten(#000, 13.5%)",
"@gray-dark": "lighten(#000, 20%)",
"@gray": "lighten(#000, 33.5%)",
"@gray-light": "lighten(#000, 46.7%)",
"@gray-lighter": "lighten(#000, 93.5%)",
"@brand-primary": "#19489d",
"@brand-success": "#46a941",
"@brand-info": "#5bc0de",