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
export const camelCaseToKebabCase = (string) => { | |
return string.replace(/([a-z0-9]|(?=[A-Z]))([A-Z])/g, '$1-$2').toLowerCase(); | |
}; |
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
Pulling docker images... | |
Creating network "tmp_default" with the default driver | |
Creating tmp_main_run ... | |
Creating tmp_main_run ... done | |
Starting the docker image... |
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
Pulling docker images... | |
Creating network "tmp_default" with the default driver | |
Creating tmp_main_run ... | |
Creating tmp_main_run ... done | |
Starting the docker image... |
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
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
const getSrcUrl = (url, width) => `${url}?w=${width}&fm=jpg&auto=format`; | |
const getSrcSet = (url, widths) => widths | |
.map((width) => `${getSrcUrl(url, width)} ${width}w`) | |
.join(', '); |
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
import os, shutil | |
from django.conf import settings | |
from django.core.management.base import BaseCommand, CommandError | |
from wagtail.images.models import Rendition | |
class Command(BaseCommand): | |
def handle(self, *args, **options): | |
renditions = Rendition.objects.all() | |
if renditions: |
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
// Get deep value from object by passing path to it as an array | |
const path = (pathArray, nestedObject) => pathArray.reduce((object, key) => ( | |
object && object[key] !== 'undefined' ? object[key] : undefined | |
), nestedObject); |
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 | |
// http://www.niwa.nu/2013/05/math-behind-colorspace-conversions-rgb-hsl/ | |
// convert hex to hsl | |
$hex = str_split(ltrim('#0099cc', '#'), 2); | |
// convert the rgb values to the range 0-1 | |
$rgb = array_map(function($part) { | |
return hexdec($part) / 255; |
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
<style> | |
.embed { | |
position: relative; | |
} | |
.embed__ratio { | |
display: block | |
} | |
.embed__content { |
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 | |
// negate possible problematic locale decimal_point for inline styles | |
$paddingTop = (float) number_format(4 / 3 * 100, 2, '.', ''); | |
echo "padding-top:{$paddingTop}%;"; |
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 | |
// removes querystrings | |
$path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH); | |
if (file_exists($_SERVER['DOCUMENT_ROOT'] . $path)) return false; | |
// what the .htaccess would normally do | |
if (preg_match('/^\/panel\/(.*)/', $path)) { | |
$_SERVER['SCRIPT_NAME'] = DIRECTORY_SEPARATOR . 'panel' . DIRECTORY_SEPARATOR . 'index.php'; |
NewerOlder