-
Open the Terminal
-
Use
mysqldump
to backup your databases -
Check for MySQL processes with:
ps -ax | grep mysql
-
Stop and kill any MySQL processes
-
Analyze MySQL on HomeBrew:
brew remove mysql
Wordpress Theme Development CheatSheet... | |
1. <?php language_attributes(); ?> ---- For Making Language Dynamic. | |
2. <?php bloginfo( 'charset' ); ?> ---- For Making Character Ser Dynamic. | |
3. <title><?php wp_title( '|', true, 'right' ); ?></title> ----- For Dynamic Title, set by user. | |
4. <?php wp_head(); ?> ---- For Adding Functions.php file adn add css and js files. | |
5. <?php wp_Footer(); ?> ---- For Adding Functions.php file adn add css and js files. | |
6. function MY_FUNCTION_NAME (){} , add_ACTION('','MY_FUNCTION_NAME') ---- Function Structure. | |
7. [ wp_register_style('bootstrap_min',get_template_directory_uri().'/css/bootstrap.min.css',array(),'3.1.1','all'); | |
wp_enqueue_style('bootstrap_min'); |
<style> | |
input[type="file"]{ | |
position: absolute; | |
top: -500px; | |
} | |
div.file-listing{ | |
width: 200px; | |
} |
Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.
Prerequisites (for Homebrew at a minimum, lots of other tools need these too):
xcode-select --install
will prompt up a dialog)Install Homebrew:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
#!/bin/bash | |
##################################################### | |
# Name: Bash CheatSheet for Mac OSX | |
# | |
# A little overlook of the Bash basics | |
# | |
# Usage: | |
# | |
# Author: J. Le Coupanec | |
# Date: 2014/11/04 |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
<<APP>> change this variables |