###Force trush on Mac From terminal Command
sudo rm -rf ~/.Trash
sudo rm -rf /Volumes/*/.Trashes
###Copy File from server to local pc
scp (remote computer):path/to/remote/file (location on my local computer)
rsync -av /path/to/source /path/to/destination
rsync -av /path/to/source/ /path/to/destination/source
####example copy from server to my pc
scp [email protected]:/var/www/css/wordpress/release/unship_data.zip /Volumes/Storage/tuhin.dev/web/css/products/themeforest/wordpress/unship/package/
###Move or Rename
###Job Summary
###Name of Position: Senior Web Developer ( Virtual )
Number of Open Position: 04
Job Type: Virtual
Weekly Limit : 25 Hour/ Week
Salary : Negotiable
Deadline : 15 Jun 2018
###Job Description / Responsibility :
###Job Summary
###Name of Position: Web UI Designer
Number of Open Position: 02
Job Type: Full Time ( 5 days a week )
Salary Range: BDT 20,000 - 45,000
Deadline : 30th May 2015
###Job Description / Responsibility
- Must have extensive work experience in Adobe Photoshop & Illustrator CS 5 or 6.
- Excellent visual design skills and knowledge of current web industry trends
###Job Summary
###Name of Position: Junior Web Developer
Number of Open Position: 04
Job Type: Full Time
Salary Range: Negotiable
Deadline : 30 April 2015
###Job Description / Responsibility :
- We require a Junior Web Developer who have very strong knowledge in Html5 , Css3 , Boosttrap3 and Javascript
- Less css coding knowledge
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
/*================================================== | |
= Bootstrap 3 Media Queries = | |
==================================================*/ | |
/*========== Mobile First Method ==========*/ | |
/* Custom, iPhone Retina */ | |
@media only screen and (min-width : 320px) { | |
} |
# For more details, refer - https://easydigitaldownloads.com/support/topic/download-files-not-protected-nginx-under-easyengine/ | |
# NOT tested (yet) | |
location /wp-content/uploads/ { | |
location ~ ^/wp-content/uploads/edd/(.*?)\.zip$ { | |
rewrite / permanent; | |
} | |
location ~ \.php$ { | |
#Prevent Direct Access Of PHP Files From Web Browsers |
This document details how I setup LE on my server. Firstly, install the client as described on http://letsencrypt.readthedocs.org/en/latest/using.html and make sure you can execute it. I put it in /root/letsencrypt
.
As it is not possible to change the ports used for the standalone
authenticator and I already have a nginx running on port 80/443, I opted to use the webroot
method for each of my domains (note that LE does not issue wildcard certificates by design, so you probably want to get a cert for www.example.com
and example.com
).
For this, I placed config files into etc/letsencrypt/configs
, named after <domain>.conf
. The files are simple:
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* | |
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
*/ | |
$args = array( |
https://code.tutsplus.com/articles/the-ins-and-outs-of-the-enqueue-script-for-wordpress-themes-and-plugins--wp-22509 |