This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| // Utilisable dans le CMS Drupal | |
| $wrapper = entity_metadata_wrapper('node', $node); | |
| dsm($wrapper->book->author->mail->value()); | |
| dsm($wrapper->book->title->value()); | |
| dsm($wrapper->book->label(),'Titre de book'); | |
| dsm($wrapper->label(),'Titre du noeud'); | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # 1ere règle | |
| tell application "Adium" | |
| go away with message "Podomoro en cours | back at " & (time string of ((current date) + 25 * minutes)) | |
| end tell | |
| # 2eme règle | |
| tell application "Adium" | |
| go available | |
| end tell | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | async.parallel([ | |
| function(callback){ | |
| setTimeout(function(){ | |
| console.log('flag1'); | |
| callback(null,{"flag1":new Date()}); | |
| }, 2000); | |
| }, | |
| function(callback){ | |
| setTimeout(function(){ | |
| console.log('flag2'); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var fct_one = function (callback){ | |
| callback(null,Math.random()*10000); | |
| }; | |
| async.parallel({ | |
| one: fct_one, | |
| two: function(callback){ | |
| callback(null,2); | |
| }, | |
| three:fct_one | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ## Liste de patches Drupal/Module | |
| Avoir la jquery 1.4 (drupal default) dans le module jQuery Update | |
| https://drupal.org/node/1548028 | |
| (la rajouter dans le drush make de ZeeAgency | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="[add your bin description]" /> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <select id="select1" multiple> | |
| <option value="1">valeur 1</option> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              Show hidden characters
| { | |
| "bootstrapped": true, | |
| "in_process_packages": | |
| [ | |
| ], | |
| "installed_packages": | |
| [ | |
| "A File Icon", | |
| "AdvancedNewFile", | |
| "AngularJS", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| h5{ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| $content = array(); | |
| $content['container'] = ['#type'=>'fieldset','#title'=>'4ème bloc']; | |
| $header = array('Cell 1', 'Cell 2'); | |
| $data = array( | |
| array('A', 'B'), | |
| array('C', 'D'), | |
| array('E', 'F') | |
| ); | |
| $content['container'][] = [ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | {# | |
| @link https://www.drupal.org/node/2047135 | |
| This syntax is extremely complex to scan. This also requires the front-end developer to know about the @ ! % "Drupalism" prefix of placeholders and what each of them do. | |
| #} | |
| <p class="submitted">{{ "Submitted by !author on @date"|t({ '!author': author, '@date': date }) }}</p> | 
OlderNewer