This file contains hidden or 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
jQuery('#bottom-bar').remove(); | |
jQuery('#contact-list').remove(); | |
jQuery('html').css('overflow', 'auto'); | |
jQuery('#chat-room').css({ 'height': 'auto', 'width': '100%', 'overflow-y': 'auto' }); |
This file contains hidden or 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
// Browse to https://my.slack.com/team#active and open the developer console | |
x=[]; | |
jQuery('#active_members_list .team_list_item.member_item.active').each( function(ix, el) { | |
el = jQuery(el); | |
if( el.find('.member_image.bot').length ) { | |
return; // skip bots | |
} | |
var details = { | |
name: el.find('.member_name').text(), | |
tel: el.find('.member_data_table a[href^=tel]').text(), |
This file contains hidden or 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
#!/usr/bin/env bash | |
# Copyright (c) 2011 Float Mobile Learning | |
# http://www.floatlearning.com/ | |
# Extension Copyright (c) 2013 Weptun Gmbh | |
# http://www.weptun.de | |
# | |
# Extended by Ronan O Ciosoig January 2012 | |
# | |
# Extended by Patrick Blitz, April 2013 |
This file contains hidden or 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
#!/usr/bin/env bash | |
HOST="$1" | |
[[ -z "$HOST" ]] && (>&2 echo "Usage: $0 [user@]hostname") && exit 1 | |
OUT="$(ssh -o ConnectionAttempts=1 -o ConnectTimeout=2 -o StrictHostKeyChecking=no -o "PreferredAuthentications=publickey" -T "$HOST" -v true 2>&1 | grep -B3 "Authentication succeeded (publickey)" )" | |
RET="$?" | |
if [[ "$RET" -ne "0" ]] ; then | |
(>&2 echo "ERROR (errno: $RET): Unable to connect or authenticate to $HOST") |
This file contains hidden or 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
#!/usr/bin/env bash | |
VP_DB="set_to_your_dbname" | |
[[ ! -d "done" ]] && mkdir done | |
[[ ! -d "error" ]] && mkdir error | |
echo "To prevent any writes to the database during the import, you should disable the site. Add this to your wp-config.php:" | |
echo "if( DB_NAME == '$VP_DB' ) die( 'This site is is disabled during import.' );" | |
read -p "Press Enter to continue. " | |
time for VP_SQL_FILE in *.sql ; do |
This file contains hidden or 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
=FLOOR(A1/12,1) & """ " & ROUND( 12*((A1/12)-FLOOR(A1/12,1)), 1) & "'" |
This file contains hidden or 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
// Based on http://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript | |
var guidv4=(function(_w, lut, i){ | |
lut = []; for (i=0; i<256; i++) { lut[i] = (i<16?'0':'')+(i).toString(16); } | |
var r = Math.random, ui32=0x100000000, _crypto = _w.crypto || _w.msCrypto; | |
return function(d) { | |
if( _crypto && _crypto.getRandomValues ) { | |
try { | |
d = new Uint32Array(4); | |
_crypto.getRandomValues(d); | |
} catch(e) { |
This file contains hidden or 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
jQuery('div.permissionsType select[name$="permissions.type"]').val('some'); // some types | |
jQuery('div.permissionsType > ul li > select').val('some'); // set access for all types to to 'some' | |
jQuery('div.permissionsType > ul li').find('input[type=checkbox][value$="/write"]').prop('checked', 0); // uncheck all "Write" boxes | |
jQuery('div.permissionsType > ul li').find('input[type=checkbox][value$="/publish"]').prop('checked', 0); // uncheck all "Publish" boxes |
This file contains hidden or 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 | |
if ( defined( 'WPCOM_IS_VIP_ENV' ) && true === WPCOM_IS_VIP_ENV ) { | |
wpcom_vip_load_plugin( 'disable-comments-query' ); | |
// Kill wp_count_comments lookups because they happen too frequently and are super slow. | |
if ( is_admin() ) { | |
add_filter( 'wp_count_comments', function( $counts, $post_id ) { | |
if ( $post_id ) | |
return $counts; |