Skip to content

Instantly share code, notes, and snippets.

@emzo
emzo / wp_link_query_term_linking.php
Created June 14, 2016 21:57
Allow linking to taxonomy terms as well as posts when performing internal linking
@emzo
emzo / gist:cda9cfc61031395c570373d165773241
Last active October 30, 2022 18:18
Make Offline Mirror of a Site using `wget`
https://www.guyrutenberg.com/2014/05/02/make-offline-mirror-of-a-site-using-wget/
Sometimes you want to create an offline copy of a site that you can take and view even without internet access. Using wget you can make such copy easily:
wget --mirror --convert-links --adjust-extension --page-requisites --no-parent http://example.org
Explanation of the various flags:
--mirror – Makes (among other things) the download recursive.
--convert-links – convert all the links (also to stuff like CSS stylesheets) to relative, so it will be suitable for offline viewing.
@emzo
emzo / pythonUtf8.md
Created October 7, 2019 08:56 — forked from embayer/pythonUtf8.md
set python default encoding to utf-8

change default encoding

cd ~/.virtualenvs/myvirtualenv/lib/python2.x/site-packages
echo 'import sys;sys.setdefaultencoding("utf-8")' > sitecustomize.py

set default encoding for each new virtualenv

to automatically create a sitecustomize.py every time you create a virtualenv, edit your

@emzo
emzo / s3undelete.sh
Created July 29, 2019 15:26
Undelete files form Amazon S3 (versioned buckets only)
#!/bin/bash
BUCKET=$1
PREFIX=$2
aws s3api list-object-versions --bucket $BUCKET --prefix $PREFIX --output text |
grep "DELETEMARKERS" | while read OBJECTS
do
KEY=$( echo $OBJECTS| awk '{print $3}')
VERSION_ID=$( echo $OBJECTS | awk '{print $5}')
@emzo
emzo / gist:81acf12356e66cf4e4420b26e29e950d
Created April 24, 2019 08:26
Restart Bluetooth via terminal on macOS Mojave 10.14
sudo launchctl stop com.apple.bluetoothd
@emzo
emzo / wp_mail_smtp_custom_options.php
Created June 14, 2016 21:59
Alow SSL conections to sites with self-signed or problematic certificates
<?php
add_filter('wp_mail_smtp_custom_options', function( $phpmailer ) {
$phpmailer->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
@emzo
emzo / keybase.md
Created September 27, 2017 18:17
keybase.md

Keybase proof

I hereby claim:

  • I am emzo on github.
  • I am emzo (https://keybase.io/emzo) on keybase.
  • I have a public key ASAroVczH5_U9AmuvtuCcsIxVrvPCXQlB70lXJTFP0d-uwo

To claim this, I am signing this object:

<?php
add_action( 'phpmailer_init', function( $phpmailer ) {
$phpmailer->addCustomHeader("X-Mailgun-Drop-Message: yes");
});
<?php
function darpar_body_class( $classes ) {
if ( is_singular() && has_post_thumbnail() ) {
array_push( $classes, 'has-thumbnail' );
}
if ( is_product_category() && get_woocommerce_term_meta( get_queried_object_id(), 'thumbnail_id', true ) ) {
array_push( $classes, 'emyr' );
};
@emzo
emzo / soliloquy-slug.php
Created February 4, 2013 19:31
Add slider slug name to css attributes of soliloquy container div
<?php
// Add slug in CSS class of all sliders
add_filter( 'tgmsp_slider_classes', 'clinicoftcm_slider_classes', 10, 2 );
function clinicoftcm_slider_classes( $classes, $id ) {
$slider = get_post( $id, ARRAY_A );
if( $slider['post_name'] )
$classes[] = 'soliloquy-' . $slider['post_name'];
return $classes;
}