This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li id="customize-control-wpglobus_xcel-setting-blog-cats" class="customize-control customize-control-text" style="display: block;"> | |
<label> | |
<span class="customize-control-title">Exclude Blog Categories</span> | |
<input type="text" class="wpglobus-customize-control" value="" data-customize-setting-link="wpglobus_xcel-setting-blog-cats" id="wpglobus_xcel-setting-blog-cats"> | |
</label> | |
</li><li id="customize-control-xcel-setting-blog-cats" class="customize-control customize-control-text" style="display: none;"> | |
<label style="display: none;"> | |
<span class="customize-control-title">Exclude Blog Categories</span> | |
<span class="description customize-control-description">Enter the ID's of the post categories you'd like to EXCLUDE from the Blog, enter only the ID's with a minus sign (-) before them, separated by a comma (,)<br>Eg: "-13, -17, -19"<br>If you enter the ID's without the minus then it'll show ONLY posts in those categories.</span> | |
<inpu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
check host redis.host with address 127.0.0.1 | |
if failed port 6379 protocol redis then alert | |
check process redis-server with pidfile "/var/run/redis/redis-server.pid" | |
start program = "/etc/init.d/redis-server start" | |
stop program = "/etc/init.d/redis-server stop" | |
if failed host 127.0.0.1 port 6379 then restart | |
if 5 restarts within 5 cycles then timeout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Demonstration of debug_backtrace change in PHP 7. | |
* | |
* `call_user_func` and `call_user_func_array` do not appear as separate calls in the trace. | |
* | |
* @author Gregory Karpinsky (@tivnet) | |
*/ | |
main(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// class WC_Api_Manager_Helpers | |
// Status can be lowercase. | |
public function is_user_subscription_active( $status ) { | |
// Wrong: | |
// return $status == 'Active' || $status == 'Pending Cancellation' ? true : false; | |
// Correct: | |
return ( strtolower( $status ) === 'active' || $status === 'Pending Cancellation' ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// plugins/woocommerce-api-manager/includes/class-wc-am-update-api.php | |
// Add `$response->tested` to show "100% compatible" on the Updates page. | |
case 'pluginupdatecheck': | |
$response->id = $post_id; | |
$response->slug = ! empty( $this->slug ) ? $this->slug : $slug; | |
$response->plugin = $plugin_name; | |
$response->new_version = $api_data[ '_api_new_version' ]; | |
$response->url = $api_data[ '_api_plugin_url' ]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for f in `find . -name "*.jpg"`; do dd=`exif -t "Date and Time (Original)" --machine-readable $f | cut -f1 -d" " | sed s/:/-/g`; mkdir -p $dd && mv $f $dd/; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* File: apigen-hooks.php | |
* | |
* NOTE: this code is used internally in WPGlobus project. | |
* It's a W.I.P. - please use it, but do not forget to adapt for your project. | |
* | |
* @package WPGlobus\APIGen | |
* @author Gregory Karpinsky (@tivnet) | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# A simplified version of a2ensite/a2dissite. Works under Windows with no symlinking. | |
# Author: Gregory Karpinsky (@tivnet) | |
if [ ! -d sites-available ] | |
then | |
echo "Wrong folder!" | |
exit 2; | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if test -z ${1}; then | |
echo "Syntax: ${0} folder-name-same-as-zip-file"; | |
exit 2; | |
fi | |
mv ${1} ${1}.S && \ | |
unzip -q ${1}.zip && \ | |
rm ${1}.zip && \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>ACE Editor: submit, beautify and minify</title> | |
<style type="text/css" media="screen"> | |
#ace_js, #ace_css { | |
width: 95%; | |
height: 15em; | |
border: 1px solid silver; |