Skip to content

Instantly share code, notes, and snippets.

View piotrw's full-sized avatar
🎯
Focusing

Piotr Wysocki (Garry) piotrw

🎯
Focusing
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@miwahall
miwahall / jquery-bootstrap-datepicker.css
Created October 17, 2013 17:10
jQuery UI Datepicker Bootstrap 3 Style
.ui-datepicker {
background-color: #fff;
border: 1px solid #66AFE9;
border-radius: 4px;
box-shadow: 0 0 8px rgba(102,175,233,.6);
display: none;
margin-top: 4px;
padding: 10px;
width: 240px;
}
@ralphschindler
ralphschindler / example.php
Created October 24, 2012 23:18
Zend\Db\Sql\Select example usage
<?php
use Zend\Db\Sql\Select;
// basic table
$select0 = new Select;
$select0->from('foo');
// 'SELECT "foo".* FROM "foo"';
@bjyoungblood
bjyoungblood / ModelBuilder.php
Created May 14, 2012 21:39
ZF2 Database-to-PHP-Model Generator
<?php
use Zend\Loader\StandardAutoloader as Autoloader,
Zend\Db\Metadata\Metadata,
Zend\Db\Adapter\Adapter as DbAdapter;
/////////////////////////////////////
// START CONFIGURATION
/////////////////////////////////////
//