Data binding example. Makes a link between items, so changing data in one item changes every linked items' data.
A Pen by Karri Rasinmäki on CodePen.
#!/bin/bash | |
## | |
# Deshake script. | |
# | |
# This script uses vidstab library with ffmpeg. You need a version of ffmpeg with vidstab. | |
# Read more about vid.stab and its params: https://github.com/georgmartius/vid.stab | |
# | |
# author: @karrirasinmaki | |
#### |
#!/bin/bash | |
# helpful resource: http://macilatthefront.blogspot.com/2018/12/tutorial-using-ffmpeg-for-dnxhddnxhr.html | |
# Usage: | |
# proxies.sh -t audio -t video -s ./media-path -p ./proxy-path | |
quality="lb" | |
codec="dnxhr" | |
suffix_video="${SUFFIX_VIDEO:-mxf}" | |
suffix_audio="wav" |
/* ------------------------ */ | |
/* LESS mixin for CSS arrow */ | |
/* ------------------------ */ | |
/* https://github.com/HugoGiraudel/LESS-Mixin-for-CSS-arrows | |
Source: https://gist.github.com/karrirasinmaki/f5b665461e78ef76758cd7007a40cd25 | |
Original source: https://gist.github.com/julienchazal/11044351 | |
//Usage |
<?php | |
class comment_walker extends Walker_Comment { | |
var $tree_type = 'comment'; | |
var $db_fields = array( 'parent' => 'comment_parent', 'id' => 'comment_ID' ); | |
// constructor – wrapper for the comments list | |
function __construct() { ?> | |
<section class="comments-list"> |
Data binding example. Makes a link between items, so changing data in one item changes every linked items' data.
A Pen by Karri Rasinmäki on CodePen.