Skip to content

Instantly share code, notes, and snippets.

<?php
namespace AppBundle\Form\DataTransformer;
use AppBundle\Entity\Entity;
use AppBundle\Entity\EntityRepository;
use Symfony\Component\Form\DataTransformerInterface;
use Symfony\Component\Form\Exception\TransformationFailedException;
class EntitiesToIdsDataTransformer implements DataTransformerInterface
/*
author: jbenet
os x, compile with: gcc -o testo test.c
linux, compile with: gcc -o testo test.c -lrt
*/
#include <time.h>
#include <sys/time.h>
#include <stdio.h>
<?php
if (!class_exists('Imagick')) {
class Imagick
{
const FILTER_LANCZOS = 1;
private $path;
public function __construct($path)
{% extends 'MyBundle::layout.html.twig' %}
{% form_theme edit_form _self %}
{% set someVariable = 'abc' %}
{% block _myformname_myfield_widget %}
{{ block('form_widget') }}
{{ someVariable }}
{% endblock %}
ko.bindingHandlers.canvasContext = {
init: function(element, valueAccessor, allBindingsAccessor, viewModel) {
if ("undefined" === typeof viewModel.__canvasContexts__) {
viewModel.__canvasContexts__ = [];
}
// works now :)
if ("function" !== typeof element.getContext && FlashCanvas) {
FlashCanvas.initElement(element);
}
$('#form').submit(function() {
/* This is a callback that some lib file is doing before the form is submitted.
* My goal is not to modify it */
});
(function(window) {
// is calling a function on this "local" window faster
window.parseInt("17");
// then calling it as a global function?
parseInt("17");
})(window);
/**
* should behave like LocalStorage
*/
var inMemoryStorage = (function () {
var items = {};
return {
length: 0, // todo: read only
getItem: function (key) {
return 'undefined' !== typeof items[key] ? items[key] : null;
@MacDada
MacDada / build.xml
Created October 18, 2015 15:32
Ant: build.xml: php lint
<?xml version="1.0" encoding="UTF-8"?>
<project name="NazwaProjektu" default="lint">
<target name="lint" description="Sprawdzamy poprawność składni PHP (syntax check)">
<apply executable="php" failonerror="true">
<arg value="--syntax-check" />
<fileset dir="${basedir}">
<include name="**/*.php" /><!-- sprawdzaj wszystkie pliki php -->
<exclude name="PominTenFolder/**/*" />
<?php
class Updatable
{
private $field1;
private $field2;
public function __construct($field1, $field2)
{
$this->field1 = $field1;