Files:
- index.html: example of queue (the part that is always shown)
- third-party.js: example of third party javascript (the part no one ever talks about)
Inspiration:
- google analytics
Files:
Inspiration:
The easiest way to "convert" MKV to MP4, is to copy the existing video and audio streams and place them into a new container. This avoids any encoding task and hence no quality will be lost, it is also a fairly quick process and requires very little CPU power. The main factor is disk read/write speed.
With ffmpeg this can be achieved with -c copy. Older examples may use -vcodec copy -acodec copy which does the same thing.
These examples assume ffmpeg is in your PATH. If not just substitute with the full path to your ffmpeg binary.
| (function( $ ){ | |
| 'use strict'; | |
| function auto_fit_soliloquy( parent_selector ){ | |
| // resize the slider container | |
| var $soliloquy = $( parent_selector + ' .soliloquy-container'), | |
| $all_items = $('.soliloquy-slider,.soliloquy-viewport,.soliloquy-item', $soliloquy ), | |
| $container = $('.soliloquy-item', $soliloquy ), | |
| window_height = $(window).height(); |
| #!/bin/sh | |
| # credit from http://stackoverflow.com/questions/6301885/convert-tar-gz-to-zip | |
| for f in *.tar.gz | |
| do | |
| rm -rf ${f%.tar.gz} | |
| mkdir ${f%.tar.gz} | |
| tar xvzf $f -C ${f%.tar.gz} | |
| zip ${f%.tar.gz}.zip -r ${f%.tar.gz} | |
| rm -rf ${f%.tar.gz} |
| <?php | |
| // Make Soliloquy sliders use wp's native responsive images with wp retina | |
| function my_theme_soliloquy_output($slider, $data) { | |
| return wp_make_content_images_responsive($slider); | |
| } | |
| add_filter('soliloquy_output', 'my_theme_soliloquy_output', 10, 2); | |
| // wp_make_content_images_responsive needs the img tags to have a class with their id | |
| function my_theme_soliloquy_image_slide_class($classes, $item, $i, $data, $mobile) { | |
| $classes[] = 'wp-image-' . $item['id']; |
| [submodule "chosen"] | |
| path = chosen | |
| url = git@github.com:harvesthq/chosen.git |
| // Const | |
| const webpack = require('webpack'); //to access built-in plugins | |
| const ExtractTextPlugin = require("extract-text-webpack-plugin"); | |
| const path = require('path'); | |
| // ExtractPlugin - Multiple instances | |
| // Configure individual stylesheet generation to use correctly with wp_enqueue_style | |
| const extractMain = new ExtractTextPlugin('css/main.min.css'); | |
| const extractAdmin = new ExtractTextPlugin('css/admin.min.css'); | |
| const extractEditor = new ExtractTextPlugin('css/editor.min.css'); |
| <?php | |
| /** | |
| * Template Name: ajax | |
| */ | |
| ?> | |
| <?php | |
| $post = get_post($_GET['id']); | |
| ?> | |
| <?php if ($post) : ?> | |
| <?php setup_postdata($post); ?> |
| <?php | |
| // Add new custom font to Font Family selection in icon box module | |
| function zeckart_add_new_icon_set_to_iconbox( ) { | |
| $param = WPBMap::getParam( 'vc_icon', 'type' ); | |
| $param['value'][__( 'IcoMoon', 'total' )] = 'icomoon'; | |
| vc_update_shortcode_param( 'vc_icon', $param ); | |
| } | |
| add_filter( 'init', 'zeckart_add_new_icon_set_to_iconbox', 40 ); |
| " _ _ " | |
| " _ /|| . . ||\ _ " | |
| " ( } \||D ' ' ' C||/ { % " | |
| " | /\__,=_[_] ' . . ' [_]_=,__/\ |" | |
| " |_\_ |----| |----| _/_|" | |
| " | |/ | | | | \| |" | |
| " | /_ | | | | _\ |" | |
| It is all fun and games until someone gets hacked! |