Skip to content

Instantly share code, notes, and snippets.

View pedrofelipe's full-sized avatar

Pedro Menezes pedrofelipe

View GitHub Profile
@pedrofelipe
pedrofelipe / gist:7901937
Created December 10, 2013 22:57
Add this line to your wp-config.php to disable all WordPress automatic updates. Source: http://codex.wordpress.org/Configuring_Automatic_Background_Updates#Disabling_Automatic_Updates
# Disables all WordPress automatic updates
define( 'AUTOMATIC_UPDATER_DISABLED', true );
@pedrofelipe
pedrofelipe / gist:7867762
Created December 9, 2013 05:37
How to improve font rendering on OS X only with CSS
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;