jQuery Match Height's files and documentation can be found here.
jQuery(document).ready(function($) {
$(function() {
$('.match').matchHeight({
byRow: true,
`=filter( A2:I, search("Yes", I2:I) )` | |
### Determins where you start and end. This example starts in cell A2 and ends before column I begins ### | |
`A2:I` | |
### Term to search for ### | |
`"Yes"` | |
### Determins where you return the results. This example returns the results in column I starting at cell I2 ### | |
`I2:I` |
Plesk email users often get their passwords lost. | |
Fortunately Parallels has implemented a command to see all passwords for all users in all domains: | |
`/usr/local/psa/admin/bin/mail_auth_view` | |
You can filter the output to see one account password (quotes must exist): | |
`/usr/local/psa/admin/bin/mail_auth_view | grep "[email protected]"` |
<script> | |
var url = window.location.href; | |
if (url.search("country=") >= 0) { | |
window.location.hash = "#locator"; | |
} | |
</script> | |
<a name="locator"></a> |
<?php | |
/* | |
Plugin Name: Plugin Opener | |
Plugin URI: | |
Description: | |
Version: 1.0 | |
Author: landbryo | |
Author URI: https://scree.it | |
License: GPLv2 | |
*/ |
# CUSTOMIZED | |
CREATE TABLE `aircraft` ( | |
`id` tinyint(3) UNSIGNED NOT NULL auto_increment, | |
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', | |
`slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | |
`content` text COLLATE utf8_unicode_ci NOT NULL, | |
`image` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | |
`thumbnail_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | |
`precedence` int(11) NOT NULL DEFAULT '0', |
<?php /* FUNCTIONS */ ?> | |
<?php | |
/////////////////// | |
// ENQUEUE SLICK // | |
/////////////////// | |
function enqueue_slick() { | |
wp_enqueue_script( 'slick-js', '//cdn.jsdelivr.net/jquery.slick/1.4.1/slick.min.js', 'jquery', '1.4.1' ); | |
wp_enqueue_script( 'slick-init-js', trailingslashit( get_stylesheet_directory_uri() ) . 'js/slick-init.js', 'jquery', 1.0 ); |
#!/bin/sh | |
rm -rf /tmp/dbbackup/ | |
MYSQL_USER="root" | |
MYSQL_PASS="password" | |
NOW=$(date +"%Y-%m-%dT%H_%M_%S") | |
BACKUP_DIR=/tmp/dbbackup/$NOW | |
test -d "$BACKUP_DIR" || mkdir -p "$BACKUP_DIR" | |
# Get the database list, exclude information_schema | |
for db in $(mysql -B -s -u $MYSQL_USER --password=$MYSQL_PASS -e 'show databases' | grep -v information_schema | grep -v performance_schema) | |
do |
jQuery Match Height's files and documentation can be found here.
jQuery(document).ready(function($) {
$(function() {
$('.match').matchHeight({
byRow: true,
<style> | |
.scree_grid:after { | |
content: ''; | |
display: block; | |
clear: both; | |
} | |
.grid_sizer, | |
.grid_item { | |
width: calc(33.333% - 20px); |