Install git:
sudo apt-get install git
Configure Git:
touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"
git config --global user.email "Your Email"
| Copyright 2011 Mike Tigas. All rights reserved. | |
| Redistribution and use in source and binary forms, with or without modification, are | |
| permitted provided that the following conditions are met: | |
| 1. Redistributions of source code must retain the above copyright notice, this list of | |
| conditions and the following disclaimer. | |
| 2. Redistributions in binary form must reproduce the above copyright notice, this list | |
| of conditions and the following disclaimer in the documentation and/or other materials |
Install git:
sudo apt-get install git
Configure Git:
touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"
git config --global user.email "Your Email"
| <?php | |
| !defined( 'ABSPATH' ) AND exit; | |
| /* | |
| Plugin Name: Custom Installation Script | |
| Plugin URI: http://wordpress.stackexchange.com/q/75420/12615 | |
| Description: Create our own content on WP install | |
| License: GPL | |
| */ |

Author: Josef Jezek
Install LAMP Server
| ## Block by user agent | |
| if ($http_user_agent ~ (Purebot|Lipperhey|MaMa CaSpEr|libwww-perl|Mail.Ru|gold crawler)) { | |
| return 403; | |
| } | |
| ## Block by referrer keywords | |
| if ($http_referer ~* (viagra|cialis|levitra) ) { | |
| return 403; | |
| } |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 14, | |
| // font family with optional fallbacks |
| #!/bin/bash | |
| # CONF | |
| DBG=true | |
| RELOG_UNAME=your@email.com | |
| RELOG_PASSW=xxxxxxxxxxxxxxx | |
| # END CONF |