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
public function get($id) | |
{ | |
$es = ConnectionManager::get(self::defaultConnectionName()); | |
$search = new Search($es); | |
$search->addIndex('indications'); | |
$result = $search->search($id); | |
return new Indication($result->getResults()[0]->getSource()); |
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 | |
$baseDir = dirname(dirname(__FILE__)); | |
return array ( | |
'plugins' => | |
array ( | |
'Migrations' => $baseDir . '/vendor/cakephp/migrations/', | |
'Bake' => $baseDir . '/vendor/cakephp/bake/', | |
'DebugKit' => $baseDir . '/vendor/cakephp/debug_kit/', | |
), | |
); |
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
{ | |
"title": "Apache errors", | |
"services": { | |
"query": { | |
"list": { | |
"0": { | |
"query": "type:apache_error", | |
"alias": "", | |
"color": "#7EB26D", | |
"id": 0, |
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
{"initialState":{"stores":{"EventStore":{"events":[{"name":"CONTENT_CHANGED","payload":{"content":"C"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ce"}},{"name":"CONTENT_CHANGED","payload":{"content":"Cec"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci "}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci e"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci es"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est "}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est u"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est un"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est un "}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est un m"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est un me"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est un mes"}},{"name":"CONTENT_CHANGED","payload":{"content":"Ceci est un mess"}},{"nam |
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 | |
require_once __DIR__ . '/vendor/autoload.php'; | |
$faker = Faker\Factory::create('fr_FR'); | |
$output = fopen('php://output', 'w+'); | |
$headers = [ | |
'storelocator_id', | |
'name', | |
'status', |
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 | |
function fixFilenameEncoding($filename) { | |
return mb_convert_encoding($filename, 'ISO-8859-2', 'UTF-8'); | |
} | |
$zip = new ZipArchive; | |
$res = $zip->open('./elephant.zip', ZipArchive::CREATE); | |
if ($res === true) { | |
$filename = 'éléphant-man2.txt'; |
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
Plugin::load('Croogo', ['bootstrap' => true]); |
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 | |
$dir = __DIR__; | |
function isValid($product) { | |
return !empty($product[2]); | |
} | |
if (($productsFile = fopen($dir . '/products2.csv', "r")) !== FALSE) { | |
$missingSkus = array_map('trim', file($dir . '/missing-images-sku.csv')); |
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 | |
$initial = array( | |
array( | |
'idcom' => 2, | |
'idcatalog' => 1, | |
'pseudo_com' => 'babar' | |
), | |
array( | |
'idcom' => 1, | |
'idcatalog' => 1, |
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
# encoding: UTF-8 | |
defmodule Score do | |
@missed "-" | |
@spare "/" | |
@strike "X" | |
def total(rolls) when is_bitstring(rolls) do | |
rolls |> String.codepoints |> total |