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
# tested on macOS 10.13.4 | |
# file system created time | |
## make sure developer tools are installed with `xcode-select --install` | |
## time format: MM/DD/YYYY HH:MM:SS | |
SetFile -d "12/01/2002 00:00:00" *.jpg | |
# file system modified date | |
## (sometimes recognized by Google Photos as date taken) | |
## time format: [CC]YYMMDDhhmm[ss] |
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
# Fix local permissions to enable ftp/upload operations. | |
# APACHEUSER = user defined in `/private/etc/apache2/httpd.conf` | |
sudo chown -R APACHEUSER wp-content | |
sudo chmod -R g+w wp-content | |
sudo chown -R APACHEUSER wp-admin | |
sudo chmod -R g+w wp-admin | |
sudo apachectl 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
# https://www.virtualmin.com/documentation/developer/cli/create_user | |
virtualmin create-user --domain domain.com --user mail --random-pass --quota "UNLIMITED" --real "Name" --extra [email protected] --extra [email protected] --extra [email protected] --extra [email protected] --extra [email protected] --extra [email protected] | |
virtualmin modify-user --domain hendersontechnologies.com --user mail --add-forward [email protected] | |
# https://www.virtualmin.com/documentation/developer/cli/create_domain | |
virtualmin create-domain --domain domain.com --pass password-for-unix-user |
Creating a new repository:
mkdir /path/to/new/dir
svnadmin create /path/to/new/dir
Starting svnserve:
svnserve --daemon --root /path/to/new/repository
Importing project into svn repo:
Basic module usage — Psycopg 2.6.2.dev0 documentation
>>> import psycopg2
# Connect to an existing database
>>> conn = psycopg2.connect("dbname=test user=postgres")
# Open a cursor to perform database operations
>>> cur = conn.cursor()
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
Options +MultiViews | |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule ^([^\.]+)$ $1.php [NC,L] | |
RewriteRule ^([^\.]+)$ $1.html [NC,L] |
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
# dump | |
mysqldump -h mysql.server.org -u MyUser -pMyPass MyDB > MyDump.sql | |
# restore | |
mysql -h mysql.server.org -u MyUser -pMyPass MyDB < MyDump.sql |
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
/* To target IE 6 and 7 */ | |
@media screen\9 { | |
body { background: red; } | |
} | |
/* To target IE 6, 7 and 8 */ | |
@media \0screen\,screen\9 { | |
body { background: green; } | |
} |
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
/etc/nginx/nginx.conf | |
gzip on; | |
gzip_vary on; | |
gzip_disable "MSIE [1-6]\\.(?!.*SV1)"; | |
gzip_http_version 1.1; | |
gzip_types text/plain text/html text/css application/javascript text/javascript application/x-javascript text/xml application/xml application/xml+rss; |