wget -mpck --html-extension --user-agent="" -e robots=off --wait 1 -P . www.foo.com- -m (Mirror) Turns on mirror-friendly settings like infinite recursion depth, timestamps, etc.
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |
| /** | |
| * Replace jQuery's $.fn.ready() function with a mod exec | |
| * | |
| * Sites that make heavy use of the $(document).ready function | |
| * are generally incompatable with asynchrounous content. The | |
| * the $.fn.ready function only runs once. This script replaces | |
| * the ready function with a module execution controller that | |
| * let's us register functions and execute all of the functions | |
| * as we need them. This is useful after HTML gets injected on the | |
| * page and we want to rebind functionally to the new content. |
| <?php | |
| add_action( 'init', 'register_my_taxo' ); | |
| function register_my_taxo() { | |
| register_taxonomy( 'immo_cat', 'immobilier', array( | |
| 'hierarchical' => false, | |
| 'label' => 'Type de biens', | |
| // je déclare le slug de taxo de manière à pouvoir le traduire | |
| 'rewrite' => array( 'slug' => icl_t('nebula', 'property-type-slug', 'type-bien-immobilier' ) ), | |
| ) ); | |
| } |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteRule ^static/(.*)$ /subfolder/static/$1 [R=301,NC,L] # magic line, rewrite requests to domain.com/static to domain.com/subfolder/static. Quite useful on locked webhosts. | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| </IfModule> |
| /* | |
| * Copyright (c) 2016 David Wicks, sansumbrella.com | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or | |
| * without modification, are permitted provided that the following | |
| * conditions are met: | |
| * | |
| * Redistributions of source code must retain the above copyright | |
| * notice, this list of conditions and the following disclaimer. |
| <?php | |
| // Create an empty array for storage | |
| $post_data = array(); | |
| // Set arguments for your query | |
| $args = array( | |
| 'post_type' => 'trips', | |
| 'posts_per_page' => 999 | |
| ); |