Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View mrflix's full-sized avatar

Felix Niklas mrflix

View GitHub Profile
@medienbaecker
medienbaecker / thumbs.php
Last active March 15, 2024 10:00
Generate all thumbnails with Kirby CLI
<?php
declare(strict_types = 1);
set_time_limit(0);
use Kirby\CLI\CLI;
use Kirby\Toolkit\Dir;
use Kirby\Toolkit\Str;
use Kirby\Cms\Media;
@gre
gre / easing.js
Last active April 23, 2024 04:20
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the COPYING file for more details.
*/
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {