Use to set 755 for all the folders recursively
sudo find . -type d -exec chmod 0755 {} \;
Use to set 644 for all the files recursively
sudo find . -type f -exec chmod 0644 {} \;
#Install PHP CodeSniffer | |
brew install homebrew/php/php-code-sniffer #if using Homebrew | |
git clone https://github.com/squizlabs/PHP_CodeSniffer.git phpcs #if you want to do it directly | |
#Install WordPress Coding Standards | |
git clone -b master https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git wpcs | |
#Add WordPress standards to PHPCS config | |
phpcs -i #shows the libraries installed | |
phpcs --config-set installed_paths <path to dir that you cloned>/wpcs |
Base | |
Install atom here https://atom.io/ | |
Install atom-ide-ui and ide-php packages to make atom to Atom PHP IDE | |
Theme | |
I love Monokai theme its really good in both sublime and atom | |
Go to install themes -> monokai -> install | |
Go to installed themes -> UI theme -> One Dark -> Syntax theme -> Monokai |
Use to set 755 for all the folders recursively
sudo find . -type d -exec chmod 0755 {} \;
Use to set 644 for all the files recursively
sudo find . -type f -exec chmod 0644 {} \;
We rule the world. … | |
Nothing happens in our society without software. Nothing…. | |
Without software: Phones don't ring. Cars don't start. Planes don't fly. Bombs don't explode. Ships don't sail. Ovens don't bake. Garage doors don't open. Money doesn't change hands. Electricity doesn't get generated. And we can't find our way to the store. … | |
I will not produce harmful code. | |
The code that I produce will always be my best work. I will not knowingly release code that is defective either in behavior or structure. |
#!/bin/bash | |
# | |
# This script configures WordPress file permissions based on recommendations | |
# from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
# | |
# Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
# | |
WP_OWNER=www-data # <-- wordpress owner | |
WP_GROUP=www-data # <-- wordpress group | |
WP_ROOT=$1 # <-- wordpress root directory |
git filter-branch --env-filter ' | |
WRONG_EMAIL="[email protected]" | |
NEW_NAME="New Name Value" | |
NEW_EMAIL="[email protected]" | |
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ] | |
then | |
export GIT_COMMITTER_NAME="$NEW_NAME" | |
export GIT_COMMITTER_EMAIL="$NEW_EMAIL" | |
fi |
server { | |
##DM - uncomment following line for domain mapping | |
#listen 80 default_server; | |
server_name dev.multisite.com; | |
##DM - uncomment following line for domain mapping | |
#server_name_in_redirect off; |
{ | |
"Version":"2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:PutObject", | |
"s3:GetObjectAcl", | |
"s3:GetObject", |
MongoDB Design patterns based on application usage perspective: | |
The scheme depends on your application use case | |
Data Access Patterns | |
Number of reading vs update | |
what is the size of expected documents | |
Performance issues in MongoDB: | |
Schema Design: | |
{ |
Pair programming | |
- State what you know | |
- Ask questions | |
- Start Simple | |
- Should be extendable | |
- Write tests | |
Data structure | |
------------------- | |
tree ( Eg: Filesystem tree, PATH /usr/home/tom) |