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
[ | |
{ | |
"userId": 1, | |
"id": 1, | |
"title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit", | |
"body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto" | |
}, | |
{ | |
"userId": 1, | |
"id": 2, |
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
[{ | |
"name": "Jane", | |
"data": [1, 0, 4] | |
}, { | |
"name": "John", | |
"data": [5, 7, 3] | |
}, { | |
"name": "Peter", | |
"data": [5, 7, 3] | |
}, { |
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
[{ | |
"name": "Installation", | |
"data": [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175] | |
}, { | |
"name": "Manufacturing", | |
"data": [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434] | |
}, { | |
"name": "Sales & Distribution", | |
"data": [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387] | |
}, { |
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
/* | |
SQLyog Ultimate v13.1.1 (64 bit) | |
MySQL - 8.0.17 : Database - weather | |
********************************************************************* | |
*/ | |
/*!40101 SET NAMES utf8 */; | |
/*!40101 SET SQL_MODE=''*/; |
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
/* | |
SQLyog Ultimate v13.1.1 (64 bit) | |
MySQL - 8.0.17 : Database - weather | |
********************************************************************* | |
*/ | |
/*!40101 SET NAMES utf8 */; | |
/*!40101 SET SQL_MODE=''*/; |
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> | |
<title>jQuery Grid Inline Editing</title> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> | |
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> | |
<script src="https://unpkg.com/[email protected]/js/gijgo.js" type="text/javascript"></script> | |
<link href="https://unpkg.com/[email protected]/css/gijgo.css" rel="stylesheet" type="text/css" /> | |
</head> |
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 /** @noinspection ForgottenDebugOutputInspection */ | |
use eftec\PdoOne; | |
header('Content-Type: application/json'); | |
include '../vendor/autoload.php'; | |
include '../repo/CountryRepo.php'; | |
include '../repo/PlayersRepo.php'; |
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
First Time Time | First Time Memory | Overhead First Time | Second Time | Second Time Memory | ||
---|---|---|---|---|---|---|
BladeOne | 1962ms | 2024kb | 263 | 1917ms | 2024kb | |
Twig | 3734ms | 2564kb | 123 | 3604ms | 2327kb |
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 | |
use Twig\Environment; | |
use Twig\Error\LoaderError; | |
use Twig\Error\RuntimeError; | |
use Twig\Extension\SandboxExtension; | |
use Twig\Markup; | |
use Twig\Sandbox\SecurityError; | |
use Twig\Sandbox\SecurityNotAllowedTagError; | |
use Twig\Sandbox\SecurityNotAllowedFilterError; | |
use Twig\Sandbox\SecurityNotAllowedFunctionError; |
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
<ul> | |
<?php $__currentLoopData = $categories; $this->addLoop($__currentLoopData);$this->getFirstLoop(); | |
foreach($__currentLoopData as $category): $loop = $this->incrementLoopIndices(); ?> | |
<li><?php echo \htmlentities($category, ENT_QUOTES, 'UTF-8', false); ?></li> | |
<?php endforeach; $this->popLoop(); $loop = $this->getFirstLoop(); ?> | |
</ul> |