See x11vnc stack smashing detected solution
Recommended version: x11vnc: 0.9.14 lastmod: 2013-11-21
Set desktop to auto login and prevent screen locking .. else you will need to deal with Xauth
| <?php | |
| function combos($data, &$all = array(), $group = array(), $val = null, $i = 0) { | |
| if (isset($val)) { | |
| array_push($group, $val); | |
| } | |
| if ($i >= count($data)) { | |
| array_push($all, $group); | |
| } else { | |
| foreach ($data[$i] as $v) { |
See x11vnc stack smashing detected solution
Recommended version: x11vnc: 0.9.14 lastmod: 2013-11-21
Set desktop to auto login and prevent screen locking .. else you will need to deal with Xauth
| <?php | |
| add_action( 'add_meta_boxes', 'my_register_meta_boxes' ); | |
| /** | |
| * Register meta boxes. | |
| */ | |
| function my_register_meta_boxes() { | |
| // id, title, callback, screen, context, priority, callback_args | |
| add_meta_box( 'nooz-meta-box__coverage-source', 'Source', 'my_get_source_meta_box', 'nooz_coverage', 'normal', 'high', NULL ); |
| /** | |
| * Element.closest(selector) polyfill | |
| * | |
| * https://developer.mozilla.org/en-US/docs/Web/API/Element/closest#Polyfill | |
| */ | |
| (function(){ | |
| if (!Element.prototype.matches) { | |
| Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; | |
| } | |
| if (!Element.prototype.closest) { |
| /** | |
| * CustomEvent() polyfill | |
| * | |
| * https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent#Polyfill | |
| * https://caniuse.com/#feat=customevent | |
| * https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_events | |
| */ | |
| (function(){ | |
| if (typeof window.CustomEvent === "function") return false; | |
| function CustomEvent(event, params) { |
| <?php | |
| /** | |
| * The solution below allows you to filter Nooz posts by custom-field values. | |
| * | |
| * 1. Enable support for "custom-fields" | |
| * 2. Add a custom field variable to a press release post, in the example below, the variable is "lang_type" | |
| * 3. Use the "class" attribute to determine which shortcode instance gets filtered, in the example below, shortcodes using "class='lang-es'" | |
| */ |
| <?php | |
| /** | |
| * Alter "posts_per_rss" option with querystring param to limit the number of posts returned for an RSS Feed. | |
| */ | |
| add_filter( 'option_posts_per_rss', 'my_posts_per_rss' ); | |
| function my_posts_per_rss( $option ) { | |
| if( isset( $_GET['limit'] ) ) { | |
| return (int) $_GET['limit'] ?: $option; | |
| } |
| function clean(&$arr) | |
| { | |
| if (is_array($arr)) | |
| { | |
| foreach ($arr as $i => $v) | |
| { | |
| if (is_array($arr[$i])) | |
| { | |
| clean($arr[$i]); | |
| # NGINX CodeIgniter Config | |
| server | |
| { | |
| server_name .organizetheweb.com; | |
| access_log /var/log/nginx/organizetheweb.com.access.log; | |
| root /var/www/organizetheweb.com/trunk; |
| <?php | |
| function trim_non_alphanum( $str ) { | |
| $str = preg_replace( '/^[^[:alnum:]]+/u', '', $str ); // beginning | |
| return preg_replace( '/[^[:alnum:]]+$/u', '', $str ); // end | |
| } |