Skip to content

Instantly share code, notes, and snippets.

@lanesgists
lanesgists / .gitignore
Created August 14, 2012 21:22
git: .gitignore boilerplate
#.gitignore
# Numerous always-ignore extensions
*.diff
*.err
*.orig
*.log
*.rej
*.swo
*.swp
*.vi
@lanesgists
lanesgists / hack.sh
Last active October 8, 2015 18:18 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@lanesgists
lanesgists / gist:4027412
Created November 6, 2012 20:47
PHP: WP flush W3TC Object Cache
<?php
if ( defined( 'W3TC_DIR' ) && class_exists( 'W3_ObjectCache' ) ) {
require_once W3TC_DIR . '/lib/W3/ObjectCache.php';
$w3_objectcache = &W3_ObjectCache::instance();
$w3_objectcache->flush();
}
?>