- don't plug in to internet
- chose a country (United Kingdom)
- refuse to share any info with apple or log in to iCloud (to make sure you don't get sucked in early)
- refuse location services
- restart
- still a German computer
- add a new language in Regions preferences
- some dialogues (restarting) still come in German after deleting German
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/php -q | |
<?php | |
// set to true to avoid ' and " converting to HTML special characters | |
@define('skip_glyphs', false); | |
// 3+ uppercase span tag is commented out, as everyone hates it | |
// instruction on how to use it available here: http://foliovision.com/2011/11/08/textile-editing-bbedit | |
// define these before including this file to override the standard glyphs |
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 | |
/* | |
Our Wordpress is located in https://our-site.com/wordpress | |
Here's the relevant part of our wp-config.php | |
define('MULTISITE', true); | |
define('SUBDOMAIN_INSTALL', true); | |
define('DOMAIN_CURRENT_SITE', 'our-site.com'); |
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( is_multisite() && function_exists('switch_to_blog') ) { | |
add_filter( 'get_avatar', 'fv_pb_global_avatar_start', 20, 5 ); | |
add_filter( 'get_avatar', 'fv_pb_global_avatar_end', 22, 5 ); | |
function fv_pb_global_avatar_start( $avatar ) { | |
switch_to_blog(1); | |
return $avatar; | |
} |
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
flowplayer( function(api,root) { | |
var root = jQuery(root); | |
api.bind('progress', function(e,api,current) { | |
fv_track(e,api,current); | |
}).bind('finish ready ', function(e,api) { | |
for( var j in fv_ga_events ) { | |
root.removeData('fv_custom_track_'+fv_ga_events[j]); | |
} | |
}); | |
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 | |
include('wp-load.php'); | |
global $wpdb; | |
$aUsers = $wpdb->get_results("SELECT user_id,meta_value FROM $wpdb->usermeta WHERE meta_key = 'bb_favorites'"); | |
$i = 0; | |
foreach($aUsers as $user){ | |
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 | |
include('bb-load.php'); | |
global $bbdb; | |
$aTopics = $bbdb->get_col( "SELECT topic_id FROM $bbdb->topics" ); | |
foreach( $aTopics AS $iTopic ) { | |
echo $iTopic.'<br />'; | |
bb_update_post_positions($iTopic); | |
} |
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 | |
/* | |
Please read the bbPress 1 conversion article on foliovision.com before using | |
*/ | |
include('wp-load.php'); | |
global $wpdb; | |
$aPosts = $wpdb->get_results( "SELECT * FROM $wpdb->posts AS p JOIN $wpdb->postmeta AS m ON p.ID = m.post_id WHERE post_type IN ('forum','topic','reply') AND ( meta_key = '_bbp_old_topic_id' ) LIMIT 10000 " ); |
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 | |
add_action( 'wp_enqueue_scripts', 'tweak_fv_player_css_enqueue' ); | |
function tweak_fv_player_css_enqueue() { | |
global $fv_fp; | |
if( method_exists( $fv_fp, 'css_enqueue' ) { | |
$fv_fp->css_enqueue(true); | |
} | |
} |
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(document).on('mfpClose', function() { | |
jQuery('.flowplayer').data('flowplayer').unload() | |
} ); |
OlderNewer