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
/* | |
-- Executed querie(s) at 2020-03-12 16:48:02 took 0.078 s -- | |
------------------------------------------------------------ | |
EXPLAIN SELECT JSON_EXTRACT(j.acts, CONCAT('$[', i.n - 1, ']')) AS act, | |
j.len, | |
i.n | |
FROM | |
(SELECT scores.actions AS acts, | |
JSON_LENGTH(subs.actions) AS len | |
FROM `table_scores` AS scores) AS j |
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
10-Bit H.264 | |
For all those who haven’t heard of it already, here’s a quick rundown about the | |
newest trend in making our encodes unplayable on even more systems: So-called | |
high-bit-depth H.264. So, why another format, and what makes this stuff | |
different from what you know already? | |
First off: What is bit depth? | |
In short, bit depth is the level of precision that’s available for storing color | |
information. The encodes you’re used to have a precision of 8 bits (256 levels) |
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 error handling for production servers | |
## source: https://perishablepress.com/advanced-php-error-handling-via-htaccess/ | |
# | |
# disable display of startup errors | |
php_flag display_startup_errors off | |
# disable display of all other errors |