/usr/local/php5.3/bin/php => PHP 5.3.29 (cli) (built: Dec 10 2014 16:59:41)
/usr/local/php5.4/bin/php => PHP 5.4.38 (cli) (built: Feb 26 2015 09:53:00)
/usr/local/php5.5/bin/php => PHP 5.5.22 (cli) (built: Feb 23 2015 13:12:45)
/usr/local/php5.6/bin/php => PHP 5.6.6 (cli) (built: Feb 23 2015 13:13:02)
/usr/local/php7.0/bin/php => PHP 7.0.0 (cli) (built: Dec 4 2015 11:04:38) ( NTS )
This file contains 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 declare(strict_types=1); | |
namespace App\Tests\Features\SynchronousJob; | |
use App\Tests\Features\SynchronousTestCase; | |
use App\Tests\Features\SynchronousTestKernel; | |
class PushJobWithRetryOnTaskFailTest extends SynchronousTestCase | |
{ | |
protected static function createKernel(array $options = []) |
This file contains 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 callback = function(event) { | |
//Protection contre le hack, on n'autorise que les event venant de la frame cible | |
var origin = event.origin || event.originalEvent.origin; | |
if (origin !== 'http://domaine.de.ton.iframe.com') { | |
return; | |
} | |
if (event.data === 'tonmessage') { | |
//Ici tu peux déclencher ton tracker | |
} |
This file contains 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
/vendor/ | |
/ua-detector.phar | |
composer.lock |
This file contains 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 | |
global $wpdb; | |
$myid = 157; | |
$views = $wpdb->get_results($wpdb->prepare( | |
'SELECT p.ID | |
FROM `wp_posts` as p | |
LEFT JOIN `wp_postmeta` as m ON p.ID=m.post_id | |
WHERE m.meta_id IN ( | |
SELECT meta_id FROM wp_postmeta |
This file contains 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
<?xml version='1.0'?> | |
<disclaimer> | |
<p>The opinions represented herein represent those of the individual | |
and should not be interpreted as official policy endorsed by this | |
organization.</p> | |
</disclaimer> |
This file contains 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
#Installation avec Homebrew | |
brew update | |
brew install dnsmasq | |
#Mise en place de la configuration et ajout des règle | |
cp $(brew list dnsmasq | grep /dnsmasq.conf.example$) /usr/local/etc/dnsmasq.conf | |
sed -i '' -e "/\#address=\/double-click\.net\/127\.0\.0\.1/a\\ | |
address=/.localhost/127.0.0.1" /usr/local/etc/dnsmasq.conf | |
#Démarrage du daemon |
This file contains 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 | |
$script->setBootstrapFile(__DIR__.'/mon/fichier/bootstrap.php'); |
This file contains 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
Verifying that +shulard is my blockchain ID. https://onename.com/shulard |
This file contains 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
Feature: Login | |
In order to use my application | |
As a website user | |
I need to be logged | |
Scenario: Try to log as a valid user | |
Given I am authenticated as "admin" | |
Then I should be on "/sites" | |
Scenario: Try to log with invalid credentials |
NewerOlder