Animation created with wheelSpy.js https://github.com/idiotWu/wheelSpy
Forked from Dolphin Wood's Pen Chrome Browser .
| // ---------------------------------------------------------- | |
| // A short snippet for detecting versions of IE in JavaScript | |
| // without resorting to user-agent sniffing | |
| // ---------------------------------------------------------- | |
| // If you're not in IE (or IE version is less than 5) then: | |
| // ie === undefined | |
| // If you're in IE (>=5) then you can determine which version: | |
| // ie === 7; // IE7 | |
| // Thus, to detect IE: | |
| // if (ie) {} |
| { | |
| "color_scheme": "Packages/User/textmate-solarized/Solarized (Dark).tmTheme", | |
| "default_line_ending": "unix", | |
| "dictionary": "Packages/Language - English/en_GB.dic", | |
| "draw_white_space": "selection", | |
| "find_selected_text": true, | |
| "font_face": "menlo", | |
| "font_size": 12, | |
| "highlight_line": true, |
| <div class="container"> | |
| <div class="box"> | |
| </div> | |
| </div> |
| <?php | |
| /** | |
| * Change text strings | |
| * | |
| * @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext | |
| */ | |
| function my_text_strings( $translated_text, $text, $domain ) { | |
| switch ( $translated_text ) { | |
| case 'Sale!' : | |
| $translated_text = __( 'Clearance!', 'woocommerce' ); |
| $coupon_code = 'UNIQUECODE'; // Code | |
| $amount = '10'; // Amount | |
| $discount_type = 'fixed_cart'; // Type: fixed_cart, percent, fixed_product, percent_product | |
| $coupon = array( | |
| 'post_title' => $coupon_code, | |
| 'post_content' => '', | |
| 'post_status' => 'publish', | |
| 'post_author' => 1, | |
| 'post_type' => 'shop_coupon' |
| #!/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 |
| app/etc/local.xml | |
| downloader/.cache | |
| downloader/cache.cfg | |
| downloader/connect.cfg | |
| var/cache | |
| var/session | |
| var/locks | |
| var/package | |
| var/importexport | |
| var/log |
Animation created with wheelSpy.js https://github.com/idiotWu/wheelSpy
Forked from Dolphin Wood's Pen Chrome Browser .
| <script type="text/javascript"> | |
| (function () { | |
| "use strict"; | |
| // once cached, the css file is stored on the client forever unless | |
| // the URL below is changed. Any change will invalidate the cache | |
| var css_href = './index_files/web-fonts.css'; | |
| // a simple event handler wrapper | |
| function on(el, ev, callback) { | |
| if (el.addEventListener) { | |
| el.addEventListener(ev, callback, false); |
| /*------------------------------------------------------------------------------------------ | |
| * WORPDRESS MULTIPLE ENVIRONMENT | |
| *-----------------------------------------------------------------------------------------*/ | |
| //GET HOSTNAME INFO | |
| $hostname = $_SERVER['SERVER_NAME']; | |
| //VERIFY WHICH ENVIRONMENT THE APP IS RUNNING | |
| switch ($hostname) { | |
| case 'development.dev': |