Create a flex container
/*on the flex container*/
.flexcontainer {
display: -webkit-flex;
}
| PAGESPEED_VERSION=v1.12.34.2-stable | |
| apt-get remove nginx nginx-full -y | |
| apt-get install dpkg-dev build-essential zlib1g-dev libpcre3 libpcre3-dev -y | |
| sed -i "s/# deb-src/deb-src/" /etc/apt/sources.list.d/nginx-ubuntu-development-xenial.list | |
| apt-get update | |
| apt-get build-dep nginx -y | |
| cd /tmp | |
| apt-get source nginx |
| var gulp = require('gulp'); | |
| var phpspec = require('gulp-phpspec'); | |
| var run = require('gulp-run'); | |
| var notify = require('gulp-notify'); | |
| gulp.task('test', function() { | |
| gulp.src('spec/**/*.php') | |
| .pipe(run('clear')) | |
| .pipe(phpspec('', { notify: true })) | |
| .on('error', notify.onError({ |
We have moved: https://github.com/magnetikonline/linuxmicrosoftievirtualmachines
Due to the popularity of this Gist, and the work in keeping it updated via a Gist, all future updates will take place at the above location. Thanks!
| sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app /Applications/iOS\ Simulator.app |
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |
| // http://tinymce.moxiecode.com/wiki.php/API3:class.tinymce.Plugin | |
| (function() { | |
| tinymce.create('tinymce.plugins.WRAP', { | |
| /** | |
| * Initializes the plugin, this will be executed after the plugin has been created. | |
| * This call is done before the editor instance has finished its initialization so use the onInit event | |
| * of the editor instance to intercept that event. | |
| * |