Skip to content

Instantly share code, notes, and snippets.

View entr's full-sized avatar

Zlatko Zlatev entr

  • Yotpo SMSBump
  • Burgas, Bulgaria
View GitHub Profile
@entr
entr / .bashrc
Created July 15, 2015 11:15
git alias
alias g='git'
# Autocomplete for 'g' as well
complete -o default -o nospace -F _git g
@entr
entr / admin-cleanup.php
Created May 26, 2015 13:21
A number of useful hooks to strip and clean up WordPress admin area.
<?php
/*
Plugin Name: WP Admin Snippets
Plugin URI: http://wptailor.com/
Description: A number of useful hooks to strip and clean up WordPress admin area.
Version: 0.0.1
Author: WPTailor
Author URI: http://wptailor.com/
License: GPLv3
@entr
entr / wp-plugin-include-head.php
Created March 25, 2015 18:35
WP plugin include starter
<?php
/**
* @package [name]
* @subpackage [name]
* @since [version]
*/
defined('ABSPATH') or exit;
@entr
entr / options-5.6.sh
Last active August 29, 2015 14:17
phpfarm php 5.6 compile options on Ubuntu 14.04 x64
configoptions="\
--disable-short-tags \
--with-layout=GNU \
--enable-bcmath \
--enable-calendar \
--enable-exif \
--enable-ftp \
--enable-mbstring \
--enable-pcntl \
--enable-soap \
@entr
entr / admin-locale.php
Last active August 29, 2015 14:17
WP Admin Locale
<?php
/*
Plugin Name: WP Admin locale
Description: Force en_US locale in WP Admin
Plugin URI: https://gist.github.com/f8c2f69b6e9f545696f7.git
Author: WPTailor
Author URI: http://wptailor.com/
Version: 0.1
License: GPL2
*/