Skip to content

Instantly share code, notes, and snippets.

View avalanche123's full-sized avatar

Bulat Shakirzyanov avalanche123

View GitHub Profile
@avalanche123
avalanche123 / example.php
Created April 29, 2011 16:03
self-referencing function for printing errors from the form
<?php
$errors = function($field) use (&$errors) {
$result = array(
'errors' => $field->getErrors(),
'children' => array()
);
foreach ($field as $name => $child) {
$result['children'][$name] = $errors($child);
}
@avalanche123
avalanche123 / example.js
Created April 28, 2011 20:10
module for "longening" short urls
var resolve = require('./url_resolver');
resolve('http://bit.ly/foo', function(e, url) {
if(e) {
console.log(e);
}
console.log(url);
});
@avalanche123
avalanche123 / gist:923426
Created April 16, 2011 19:45
arrays with __get
<?php
class Object
{
private $data = array();
public function __set($property, $value)
{
$this->data[$property] = $value;
}
<?php
class MyClass
{
private $condition1;
private $condition2;
public function __construct($condition1, $condition2)
{
$this->condition1 = $condition1;
@avalanche123
avalanche123 / app.php
Created March 24, 2011 21:15 — forked from igorw/app.php
<?php
require_once __DIR__.'/silex.phar';
use Silex\Application;
$app = new Application();
$app->get('/hello', function() {
return 'get hello';
@avalanche123
avalanche123 / gist:839753
Created February 23, 2011 00:34
product.php
<?php
/**
* @mongodb:Document(
* collection="products",
* indexes={
* @mongodb:Index(keys={"sku"=1}, options={"unique"=1}),
* }
* )
*/
<?php
$width = 400;
$height = 300;
$canvas = imagecreatetruecolor($width, $height);
imagefilledrectangle($canvas, 0, 0, $width, $height, imagecolorallocatealpha($canvas, 0, 0, 0, 0));
imagefilledarc($canvas, 200, 150, $width / 2, $height / 2, 45, 135, imagecolorallocatealpha($canvas, 255, 255, 255, 0), IMG_ARC_CHORD /* | IMG_ARC_NOFILL */);
<?php
$width = 400;
$height = 300;
$canvas = imagecreatetruecolor($width, $height);
imagecolorallocatealpha($canvas, 0, 0, 0, 0));
imagefilledrectangle($canvas, 0, 0, $width, $height, $color);
<?php
class DateTimeField
{
public function __construct(DateField $dateWidget = null, TimeField $timeWidget = null, BaseDateTimeTransformer $transformer = null)
{
$this->dateWidget = isset($dateWidget) ? $dateWidget : new DateField();
$this->timeWidget = isset($timeWidget) ? $timeWidget : new TimeField();
$this->valueTransformer = isset($transformer) ? $transformer : new DateTimeToArrayTransformer();
}
<?php
class DocumentManagerFactory
{
private $class;
private $options;
public function __construct($class, $options)
{
$this->class = $class;