http://codepen.io/collection/IDwnG/
Found the wild: http://apple.com http://www.google.com/design/spec/animation/delightful-details.html http://starbucks.com http://starwars.com http://www.jam3.com
#Simply change '%username%' to be the username for you account | |
<Directory "/www"> | |
Options Indexes MultiViews FollowSymLinks | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> | |
<Virtualhost *:80> |
@mixin opacity($opacity) { | |
opacity: $opacity; | |
$opacity-ie: $opacity * 100; | |
filter: alpha(opacity=$opacity-ie); //IE8 | |
} |
div { | |
position:fixed !important; | |
position:absolute; | |
top:0; | |
right:0; | |
bottom:0; | |
left:0; | |
} |
user www-data; | |
worker_processes auto; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
# multi_accept on; | |
} | |
http { |
error_page 404 = @wordpress; | |
log_not_found off; | |
location / { | |
try_files $uri $uri/ /index.php?$args; | |
} | |
rewrite /wp-admin$ $scheme://$host$uri/ permanent; | |
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ { |
server { | |
listen 80; | |
server_name example.com *.example.com; | |
root /path-to-site-directory/; | |
index index.php index.html; | |
error_log /path-to-log-directory/error.log; | |
access_log /path-to-log-directory/access.log; |
Recently I had lovely experience of moving several large wordpress installations into a single multisite installation. Even with tweaking php/server timeout settings beyond anything safe or realistic my servers were either completely choking when doing an import/export or the process was unbearably slow to the point it just wasn't feasible. I figured rather than relying on the wordpress import/export plugin & php it would probably be orders of magnitude faster to do it manually using some SQL queuries and a little bit of rsync to get everything moved over.
This document describes the steps taken to migrate content from a wordpress standalone site into a multisite installation. In this document the multisite installation will be referred to as site A and the standalone site will be referred to as site B. This assumes that themes and plugins have been manually copied from the source server to their destination, a pass
This is intended as a quick reference and showcase. For more complete info, see John Gruber's original spec and the Github-flavored Markdown info page.
Note that there is also a Cheatsheet specific to Markdown Here if that's what you're looking for.
PLEASE DO NOT EDIT THIS PAGE! You can play around with Markdown on our live demo page.
curl -d "<?xml version=\"1.0\"?> <methodCall> | |
<methodName>metaWeblog.newPost</methodName> | |
<params> | |
<param><value>1</value></param> | |
<param> <value>%username%</value> </param> | |
<param> <value>%password%</value> </param> | |
<struct> | |
<member> | |
<name>title</name> | |
<value><string>Curl Test Post</string></value> |