This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function run() | |
| { | |
| try { | |
| if ('POST' === $_SERVER['REQUEST_METHOD']) { | |
| echo template_action(); | |
| } else { | |
| echo form_action(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if (!class_exists('Imagick')) { | |
| class Imagick | |
| { | |
| const FILTER_LANCZOS = 1; | |
| private $path; | |
| public function __construct($path) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% extends 'MyBundle::layout.html.twig' %} | |
| {% form_theme edit_form _self %} | |
| {% set someVariable = 'abc' %} | |
| {% block _myformname_myfield_widget %} | |
| {{ block('form_widget') }} | |
| {{ someVariable }} | |
| {% endblock %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('#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 */ | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(window) { | |
| // is calling a function on this "local" window faster | |
| window.parseInt("17"); | |
| // then calling it as a global function? | |
| parseInt("17"); | |
| })(window); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var isFinished = old < button.value ? function() { | |
| return i <= button.value; | |
| } : function() { | |
| return i >= button.value; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <span data-bind="foreach: textVerticalTrimOptions"> | |
| <button data-bind=" | |
| text: name, | |
| value: value, | |
| click: $parent.setTextVerticalTrim | |
| "></button> | |
| </span> | |
| <script> | |
| VM = function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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>'); |