dataLayer.push({
"siteType": "desktop",
"event": "contact",
"language": "en",
"currency": "GBP"
This file contains 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 (!extension_loaded('gd') || !function_exists('gd_info')) { | |
die("Missing gd!\n"); | |
} | |
$gd = gd_info(); | |
if (!$gd["WebP Support"]){ | |
die("webp not supported"); | |
} |
This file contains 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 util = {}; | |
util.post = function(url, target, fields) { | |
var $form = $('<form>', { | |
action: url, | |
target : target, | |
method: 'post' | |
}); | |
$.each(fields, function(key, val) { | |
$('<input>').attr({ | |
type: "hidden", |
This file contains 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
POST /ps1616/api/manufacturers/1?ps_method=DELETE HTTP/1.1 | |
Host: localhost | |
Authorization: Basic WFhKQlZZWkQyTkQ1REs1M1NaNlVUWEE3SFk3SFFVOEI6 | |
Content-Type: application/json | |
Cache-Control: no-cache | |
Postman-Token: b762ee57-682a-e228-7331-00c863f661d9 | |
This file contains 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
# TODO: pin versions | |
FROM alpine | |
MAINTAINER Tomasz Wesolowski "[email protected]" | |
RUN set -ex \ | |
&& apk add --update --no-cache ruby \ | |
&& apk add --update --no-cache --virtual build-dependencies \ | |
build-base \ | |
ruby-dev \ | |
libffi-dev \ |
This file contains 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
<IfModule mod_security.c> | |
SecFilterEngine Off | |
SecFilterScanPOST Off | |
</IfModule> |
This file contains 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
<!DOCTYPE html> | |
<html prefix="og: http://ogp.me/ns#"> | |
<head> | |
<!-- content-type, which overrides http equivalent header. Because of charset, this meta should be set at first. --> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<!-- Overrides http equivalent header. This tells IE to use the most updated engine. --> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
<!-- Tells crawlers how to crawl this page, and the role of this page. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta --> | |
<meta name="robots" content="index, follow"> |
This file contains 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
<phpunit | |
bootstrap="../../config/config.inc.php" | |
colors="true"> | |
<testsuites> | |
<testsuite name="module"> | |
<directory>tests</directory> | |
</testsuite> | |
</testsuites> | |
</phpunit> |
This file contains 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 | |
use PHPUnit\Framework\TestCase; | |
class TemplateMethodsTest extends TestCase | |
{ | |
public static function setUpBeforeClass() | |
{ | |
fwrite(STDOUT, __METHOD__ . "\n"); | |
} |
NewerOlder