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 | |
| /** Adminer - Compact database management | |
| * @link https://www.adminer.org/ | |
| * @author Jakub Vrana, https://www.vrana.cz/ | |
| * @copyright 2007 Jakub Vrana | |
| * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 | |
| * @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) | |
| * @version 4.6.2 | |
| */error_reporting(6135);$Uc=!preg_match('~^(unsafe_raw)?$~',ini_get("filter.default"));if($Uc||ini_get("filter.default_flags")){foreach(array('_GET','_POST','_COOKIE','_SERVER')as$X){$xi=filter_input_array(constant("INPUT$X"),FILTER_UNSAFE_RAW);if($xi)$$X=$xi;}}if(function_exists("mb_internal_encoding"))mb_internal_encoding("8bit");function | |
| connection(){global$f;return$f;}function |
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
| └─[$]> hdfs dfs -cat /user/rkv/output_average/part-r-00000 | |
| average 107.26161 |
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
| for i in {0..16}; do ./eshell < "inp$i.txt" > "out$i.txt" ; done; |
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
| const session_storage_data = {}; | |
| const local_storage_data = {}; | |
| const cookie_data = ""; | |
| function setSessionStorage(session_storage_data) { | |
| try { | |
| for (const [key, value] of Object.entries(session_storage_data)) { | |
| sessionStorage.setItem(key, JSON.stringify(value)); | |
| } | |
| console.log('Session storage data applied successfully'); |
OlderNewer