130 bytes, that's what it takes.
"header footer section aside nav article figure figcaption hgroup time main".replace(/\w+/g,function(a){document.createElement(a)})
<?php | |
/** | |
* Class ACF_Terms_Fields | |
* @version 1.1.0 | |
* | |
* Fill all the taxonomy terms with ACF metas | |
*/ | |
class ACF_Terms_Fields { | |
/** |
#Il faut penser à remplacer key par sa clef (moi je ne la montre pas à tout le monde) | |
#je savais pas que pour faire un curl sur une url de plus d'un parametre il fallait des guillemets... | |
#curl -L -v 'http://connect.advancedcustomfields.com/index.php?p=pro&a=download&k=KEY' > acfpro.zip | |
curl -L -v 'http://connect.advancedcustomfields.com/index.php?p=pro&a=download&k=KEY' | tar -xf- -C /path/to/plugins |
<h1>Safari 8 is a no go (iOS & Mac OS)</h1> | |
<p>Desktop version 8.0 (10600.1.25), Mobile v. 8.0.2</p> | |
<h2>Before the svg sprite as symbol</h2> | |
<svg class="icon"> | |
<use xlink:href="#icon-airplane" /> | |
</svg> | |
<svg xmlns="http://www.w3.org/2000/svg" style="display:none; position:absolute; width:0; height:0;"> |
{ | |
// -------------------------------------------------------------------- | |
// JSHint Configuration, Strict Edition | |
// -------------------------------------------------------------------- | |
// | |
// This is a options template for [JSHint][1], using [JSHint example][2] | |
// and [Ory Band's example][3] as basis and setting config values to | |
// be most strict: | |
// | |
// * set all enforcing options to true |
<?php | |
/* | |
Plugin Name: No french punctuation and accents for filename | |
Description: Remove all french punctuation and accents from the filename of upload for client limitation (Safari Mac/IOS) | |
Plugin URI: http://www.beapi.fr | |
Version: 1.0 | |
Author: BeAPI | |
Author URI: http://www.beapi.fr | |
/* |
/** | |
* I converted the SCSS mixin to LESS for the awesome coders like myself in response to a blog post on 37Signals - http://37signals.com/svn/posts/3271-easy-retina-ready-images-using-scss | |
* | |
* Update: 2014-08-04 - Updated a long-standing bug where retina images were shown no matter what in the first background-image property. | |
* - Updated retina media query to be more reliable () | |
* Update: 2013-11-13 - Picked up another technique thanks to reading this post from Tyler Tate, auto-fill in the second filename for the retina image, http://tylertate.com/blog/2013/06/11/retina-images-using-media-queries-and-LESS-CSS.html | |
* Update: 2013-04-16 - Have recently found a few use cases when using a retina pattern from Subtle Patterns on the <body>, this has come in handy | |
* Update: 2013-04-05 - Some research in the Wordpress Core(http://core.trac.wordpress.org/ticket/22238#comment:5) was pointed out that some tests may be redundant (Thanks @kbav) so I've cleaned these up | |
* Update: 2012-12-29 - U |