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
notepad++ issue where NppFTP disappears | |
http://tckidd.wordpress.com/2013/04/16/notepad-and-nppftp-plugin-issues/ | |
go to \Users\MyName\AppData\Romaing\Notepad++\plugins\ etc... | |
C:\Users\MyName\AppData\Roaming\Notepad++\plugins\Config\NppFTP |
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 | |
//FROM | |
//http://digwp.com/2010/03/wordpress-functions-php-template-custom-functions/ | |
//http://webstractions.com/wordpress/remove-recent-comments-inline-styl/ | |
//http://wpengineer.com/1438/wordpress-header/ | |
//https://github.com/boldperspective/Whiteboard-Framework | |
//REMOVE ADMIN BAR | |
add_filter( 'show_admin_bar', '__return_false' ); |
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
/* | |
$(document).ready(function(){ | |
if($(window).width() < 500){ | |
$('head').append('<meta name="viewport" content="width=device-width, initial-scale=.33, maximum-scale=1">'); | |
} else { | |
$('head').append(' <meta name="viewport" content="width=device-width, initial-scale=.66, maximum-scale=1">'); | |
} | |
});*/ | |
//VARS |
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
c:\Users\{Name}\AppData\Roaming\Notepad++\plugins\Config\NppFTP\ | |
http://www.seangw.com/wordpress/2011/01/notepad-unknown-exception-on-launch-with-nppftp/ |
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 | |
print_r(debug_backtrace()); | |
?> |
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 | |
** | |
* Register Field Groups | |
* | |
* The register_field_group function accepts 1 array which holds the relevant data to register a field group | |
* You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF | |
*/ | |
if(function_exists("register_field_group")) |
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
sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop | |
sudo /Library/StartupItems/MySQLCOM/MySQLCOM start | |
sudo /Library/StartupItems/MySQLCOM/MySQLCOM restart |
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
http://padolsey.github.com/SIML/?utm_source=html5weekly&utm_medium=email | |
http://grids.heroku.com/ | |
http://compass-style.org/ | |
http://www.cssportal.com/css-hacks/#in_css-important | |
http://mhs.github.com/scout-app/ | |
http://compass.handlino.com/ | |
http://fireapp.handlino.com/ | |
http://sass-lang.com/ | |
http://compass-style.org/help/tutorials/command-line/ | |
http://wynnnetherland.com/journal/font-face-made-easy-with-font-squirrel |
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 | |
/* | |
Plugin Name: Demo | |
Plugin URI: http://demo.com | |
Description: Demo Plugin | |
Version: 1.0 | |
Author: Demo LLC | |
Author URI: http://demo.com | |
License: GPL2 | |
*/ |