This method uses a special string, <!-- break -->
, to denote a breakpoint in index.html
:
{# Split the post into an array using explode().
Because we provide a length of 2, the "rest"
of the post will be stored in the second array
When you have a giant image and you want to make it easy to pan and zoom without downloading the whole 50MB image into someone's browser, a nice workaround is to cut that image into tiles at different zoom levels and view it as it were a map. An example where I've used this technique is The "Snowpiercer" Scenario.
One way to cut your big image into the requisite tiles is with gdal2tiles.py.
Alternatively, this Node script will do the cutting after you install node-canvas and mkdirp:
const fs = require("fs"),
<?php | |
namespace Beryllium\Whateverthing; | |
use Sculpin\Core\Event\SourceSetEvent; | |
use Sculpin\Core\Output\FilesystemWriter; | |
use Sculpin\Core\Output\OutputInterface; | |
use Sculpin\Core\Permalink\Permalink; | |
use Sculpin\Core\Permalink\PermalinkInterface; | |
use Sculpin\Core\Sculpin; |
You'll need to have:
{# Based on this StackOverflow example: https://stackoverflow.com/a/26311354/1272059 #} | |
{% macro time_ago(timestamp) %} | |
{% set lapse = date().getTimestamp() - timestamp %} | |
{% set units = { | |
'year': 31536000, | |
'month': 2592000, | |
'week': 604800, | |
'day': 86400, | |
'hour': 3600, |
#!/bin/sh | |
# Grab the certificate and parse out some info | |
# Usage: | |
# showcerts whateverthing.com | |
echo | openssl s_client -showcerts -connect "${1}:443" -servername "$1" | openssl x509 -text |
# Updated to work on OS X (convert both "-E" flags to "-r" to run on real server OSes) | |
echo "$STRING" | iconv -t ascii//TRANSLIT | sed -E s/[^a-zA-Z0-9]+/-/g | sed -E s/^-+\|-+$//g | tr A-Z a-z |
... | |
<div> | |
{# Split the post into an array using explode(). | |
Because we provide a length of 2, the remainder | |
of the post will be stored in the second array | |
element, even if there are multiple breakpoints. #} | |
{% set break_array = | |
post.blocks.content|split('<!-- break -->', 2) %} | |
{# Output the first element of the array in raw mode #} |
These components have zero dependencies. They all require PHP > 5.3.3, but they can be integrated into projects without pulling in surprise dependencies. Some of them might not be terribly useful without a good binding component (e.g., DomCrawler and CSSSelector work best when using BrowserKit).
s = { | |
id = "3E89CB4C-C61A-4F25-B40C-37824BF89EA4", | |
internalName = "Night.", | |
title = "Night.", | |
type = "Develop", | |
value = { | |
settings = { | |
AutoLateralCA = 0, | |
Blacks2012 = 0, | |
BlueHue = 0, |