G21 ;metric values
G90 ;absolute positioning
M82 ;set extruder to absolute mode
M107 ;start with the fan off
M109 S160 ; Preheat nozzle lower temp
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
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
/* getUrlWithParams() | |
* Add/update or remove url parameters from the provided url. | |
* Example: getUrlWithParams({'tab':tab_name},['remove']); | |
*/ | |
var getUrlWithParams = function(url, add_update, remove = []) { | |
var url = new URL(url); | |
var splita = url.search.substr(1).split('&'); | |
var params = {}; | |
var merged = {}; |
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 | |
function usps_picked_up( $tracking_number ) { | |
if( empty( $tracking_number ) || !ctype_alnum( $tracking_number ) ) { | |
return false; | |
} | |
$user_id = "YOUR_USER_ID"; | |
$usps_api_uri = "http://production.shippingapis.com/shippingAPI.dll"; | |
$xml = rawurlencode("<TrackRequest USERID=\"". $user_id ."\"> |
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 | |
domainid=000000 | |
recordid=0000000 | |
wanip=`dig @resolver4.opendns.com myip.opendns.com +short` | |
oldip=`linode-cli domains records-view $domainid $recordid --text --no-header --format="target"` | |
if [ $oldip != $wanip ] | |
then | |
linode-cli domains records-update $domainid $recordid --target $wanip |
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 | |
function head_fouc_script() { | |
?> | |
<script> | |
document.body.style.setProperty("visibility", "hidden", "important"); | |
</script> | |
<style> | |
#mega-menu-wrap-primary #mega-menu-primary { /* these IDs may differ depending on the name of your menu. */ | |
visibility: inherit; /* mega menu sets visibility visible and shows if you don't set this */ |
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 | |
/* Backup site first before using. This adds a menu to wp-admin so you can run the script. | |
*** Visiting this menu will automatically run the script!! *** | |
*/ | |
add_menu_page( | |
'jbl Find Replace', | |
'jbl Find Replace', | |
'manage_options', | |
'jbl-find-replace', | |
'jbl_find_replace' |
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 | |
// Disables comments and pingbacks settings for all existing sites in a WordPress network | |
$sites = get_sites(); | |
foreach ( $sites as $site ) { | |
switch_to_blog( $site->blog_id ); | |
update_option( 'default_comment_status', 'closed' ); | |
update_option( 'default_ping_status', 'closed' ); | |
restore_current_blog(); | |
} |
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 | |
// Example run: | |
// php -f get_wpengine_installs_status.php > installs.csv | |
// | |
// acquire your username and password from https://my.wpengine.com/profile/api_access | |
define('API_USERNAME',''); | |
define('API_PASSWORD',''); | |
$result_obj = run_query( 'https://api.wpengineapi.com/v1/installs' ); |
Utilizing memcached (with php8.2-memcached) over localhost. We found a 5X improvement in speed from (15s to 3s) when viewing the events default view while logged in after enabling memcached in this way for The Events Ticktes/Calendar plugin when paired with WooCommerce.
Drop in object-cache.php
to /wp-content/object-cache.php
from:
https://github.com/Automattic/wp-memcached
- This script uses php8.2-memcache, not php8.2-memcached, but having both installed does not harm anything. They can both be installed safely.
/etc/mysql/mariadb.conf.d/50-server.cnf
If you find yourself locked out due to no 2FA, but you have access to your WordPress database you can increase your WordFence 2FA grace period by following the instructions below.
Needed items:
- Your user ID (find in the
wp_users
table)
- Go to phpmyadmin, view the
wp_usermeta
table. - Do a search for meta_key =
wfls-grace-period-reset
and user_id =[your user id]
- Update the value of this row to a future unix timestamp like now + 3600 seconds to give you a 1 hour grace period.