Skip to content

Instantly share code, notes, and snippets.

<?php
function run()
{
try {
if ('POST' === $_SERVER['REQUEST_METHOD']) {
echo template_action();
} else {
echo form_action();
}
/*
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);
var isFinished = old < button.value ? function() {
return i <= button.value;
} : function() {
return i >= button.value;
};
<span data-bind="foreach: textVerticalTrimOptions">
<button data-bind="
text: name,
value: value,
click: $parent.setTextVerticalTrim
"></button>
</span>
<script>
VM = function() {
/**
* Mierzy wysokość tekstu na podstawie specyfikacji css: font.
* Przykład: MMG.getTextHeight("italic bold 13em Arial");
*
* @param string font CSSowa specyfikacja czcionki
* @return integer Wysokość linii tekstu w pikselach
*/
MMG.getTextHeight = function(font) {
var text = $('<span style="font: ' + font + '">Hg</span>');
var block = $('<div style="display: inline-block; width: 1px; height: 0px;"></div>');