Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #Insall Ajenti | |
| apt-get update | |
| wget http://repo.ajenti.org/debian/key -O- | apt-key add - | |
| echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" >> /etc/apt/sources.list | |
| apt-get update | |
| apt-get install ajenti | |
| service ajenti restart | |
| # Uninstall Apache2 | |
| sudo apt-get autoremove && sudo apt-get remove apache2* |
| <?php | |
| $countries = array(); | |
| $countries[] = array("iso_code"=>"AF","country_name"=>"Afghanistan","country_code"=>"93"); | |
| $countries[] = array("iso_code"=>"AL","country_name"=>"Albania","country_code"=>"355"); | |
| $countries[] = array("iso_code"=>"DZ","country_name"=>"Algeria","country_code"=>"213"); | |
| $countries[] = array("iso_code"=>"AS","country_name"=>"American Samoa","country_code"=>"1"); | |
| $countries[] = array("iso_code"=>"AD","country_name"=>"Andorra","country_code"=>"376"); | |
| $countries[] = array("iso_code"=>"AO","country_name"=>"Angola","country_code"=>"244"); | |
| $countries[] = array("iso_code"=>"AI","country_name"=>"Anguilla","country_code"=>"1"); | |
| $countries[] = array("iso_code"=>"AG","country_name"=>"Antigua","country_code"=>"1"); |
| #!/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 |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /* | |
| * jQuery FlexSlider v1.8 | |
| * http://www.woothemes.com/flexslider/ | |
| * | |
| * Copyright 2012 WooThemes | |
| * Free to use under the MIT license. | |
| * http://www.opensource.org/licenses/mit-license.php | |
| */ | |
| /* Browser Resets */ |
| /* | |
| * jQuery FlexSlider v1.8 | |
| * http://www.woothemes.com/flexslider/ | |
| * | |
| * Copyright 2012 WooThemes | |
| * Free to use under the MIT license. | |
| * http://www.opensource.org/licenses/mit-license.php | |
| */ | |
| /* Browser Resets */ |
| /* ============================================================================= | |
| WordPress WYSIWYG Editor Styles | |
| ========================================================================== */ | |
| .entry-content img { | |
| margin: 0 0 1.5em 0; | |
| max-width: 100%; | |
| height: auto; | |
| } | |
| .alignleft, img.alignleft { |